reach-api-sdk 1.0.211 → 1.0.212

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.
@@ -117,6 +117,10 @@ type Activity = {
117
117
  * Gets or sets the activities Icon url.
118
118
  */
119
119
  iconUrl?: string | null;
120
+ /**
121
+ * Gets or sets the activities type category id.
122
+ */
123
+ activityTypeCategoryId?: number | null;
120
124
  /**
121
125
  * Gets or sets the activities referenced surfaces.
122
126
  */
@@ -923,6 +927,91 @@ declare class ActivityPerformanceService {
923
927
  }): CancelablePromise<Array<ActivityPerformance>>;
924
928
  }
925
929
 
930
+ /**
931
+ * Represents an activity type category within the Reach application.
932
+ */
933
+ type ActivityTypeCategory = {
934
+ /**
935
+ * Gets or sets the activities Id.
936
+ */
937
+ id?: number;
938
+ /**
939
+ * Gets or sets the activities type category Name.
940
+ */
941
+ name?: string | null;
942
+ };
943
+
944
+ declare class ActivityTypeCategoryService {
945
+ readonly httpRequest: BaseHttpRequest;
946
+ constructor(httpRequest: BaseHttpRequest);
947
+ /**
948
+ * Gets a Reach.Models.ActivityTypeCategory by its Id.
949
+ * @returns ActivityTypeCategory OK
950
+ * @throws ApiError
951
+ */
952
+ getObject({ id, }: {
953
+ /**
954
+ * The Reach.Models.ActivityTypeCategory id.
955
+ */
956
+ id: number;
957
+ }): CancelablePromise<ActivityTypeCategory>;
958
+ /**
959
+ * Gets a list of Reach.Models.Activity.
960
+ * @returns ActivityTypeCategory OK
961
+ * @throws ApiError
962
+ */
963
+ getList({ name, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
964
+ /**
965
+ * Gets or sets the queryable name.
966
+ */
967
+ name?: string;
968
+ /**
969
+ * Gets or sets the page number for paged queries.
970
+ */
971
+ pageNumber?: number;
972
+ /**
973
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
974
+ */
975
+ take?: number;
976
+ /**
977
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
978
+ */
979
+ skip?: number;
980
+ /**
981
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
982
+ */
983
+ limitListRequests?: boolean;
984
+ /**
985
+ * Gets or sets the Tenant Id.
986
+ */
987
+ tenantId?: string;
988
+ /**
989
+ * Gets or sets the Modifed By Id.
990
+ */
991
+ modifiedById?: string;
992
+ /**
993
+ * Gets or sets the Modifed By Ids.
994
+ */
995
+ modifiedByIds?: Array<string>;
996
+ /**
997
+ * Gets or sets the Date Created greater than equal to.
998
+ */
999
+ dateCreatedGte?: string;
1000
+ /**
1001
+ * Gets or sets the Date Created less than equal to.
1002
+ */
1003
+ dateCreatedLte?: string;
1004
+ /**
1005
+ * Gets or sets the queryable only is live status.
1006
+ */
1007
+ isLive?: boolean;
1008
+ /**
1009
+ * Gets or sets the sort order direction.
1010
+ */
1011
+ sortOrderDirection?: SearchSortOrderDirection;
1012
+ }): CancelablePromise<Array<ActivityTypeCategory>>;
1013
+ }
1014
+
926
1015
  /**
927
1016
  * Controls the DealType.
928
1017
  */
@@ -1583,6 +1672,14 @@ declare enum UpcomingLayout {
1583
1672
  CALENDAR = "Calendar"
1584
1673
  }
1585
1674
 
1675
+ /**
1676
+ * Determines the website homepage display.
1677
+ */
1678
+ declare enum WebsiteHomepage {
1679
+ DEFAULT = "Default",
1680
+ MAP = "Map"
1681
+ }
1682
+
1586
1683
  /**
1587
1684
  * Represents an organisation within the Reach application.
1588
1685
  */
@@ -1676,6 +1773,18 @@ type TenantWebsiteSetting = {
1676
1773
  */
1677
1774
  tenantMarketingOptinText?: string | null;
1678
1775
  upcomingLayout?: UpcomingLayout;
1776
+ defaultUpcomingLayoutForVenues?: UpcomingLayout;
1777
+ defaultUpcomingLayoutForProviders?: UpcomingLayout;
1778
+ defaultUpcomingLayoutForProgrammes?: UpcomingLayout;
1779
+ /**
1780
+ * Gets or sets the default map distance in kilometres. Used when displaying the map on the website.
1781
+ */
1782
+ defaultMapDistance?: number | null;
1783
+ /**
1784
+ * Gets or sets the default map center Google Place ID. Used when displaying the map on the website.
1785
+ */
1786
+ defaultMapCenterPlaceId?: string | null;
1787
+ websiteHomepage?: WebsiteHomepage;
1679
1788
  };
1680
1789
 
1681
1790
  /**
@@ -2017,6 +2126,20 @@ type Programme = {
2017
2126
  images?: Array<Image> | null;
2018
2127
  };
2019
2128
 
2129
+ /**
2130
+ * Represents a location (venue) where a provider offers activities.
2131
+ */
2132
+ type ProviderActivityLocation = {
2133
+ /**
2134
+ * Gets or sets the full formatted address.
2135
+ */
2136
+ formattedAddress?: string | null;
2137
+ /**
2138
+ * Gets or sets the shortened formatted address (locality, region, postal code).
2139
+ */
2140
+ formattedAddressShortened?: string | null;
2141
+ };
2142
+
2020
2143
  /**
2021
2144
  * Represents a provider type category within the Reach application.
2022
2145
  */
@@ -2213,6 +2336,7 @@ type Provider = {
2213
2336
  * Gets or sets the contact website.
2214
2337
  */
2215
2338
  contactWebsite?: string | null;
2339
+ upcomingLayout?: UpcomingLayout;
2216
2340
  /**
2217
2341
  * Gets or sets the facebook url.
2218
2342
  */
@@ -2244,6 +2368,10 @@ type Provider = {
2244
2368
  * Gets or sets the providers assigned users.
2245
2369
  */
2246
2370
  users?: Array<User> | null;
2371
+ /**
2372
+ * Gets or sets the distinct locations/venues where the provider offers activities.
2373
+ */
2374
+ activityLocations?: Array<ProviderActivityLocation> | null;
2247
2375
  country?: Country;
2248
2376
  };
2249
2377
 
@@ -9148,7 +9276,7 @@ declare class CoursesService {
9148
9276
  * @returns CoursePage OK
9149
9277
  * @throws ApiError
9150
9278
  */
9151
- 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, }: {
9279
+ getPage({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9152
9280
  /**
9153
9281
  * Gets or sets the queryable Course Id.
9154
9282
  */
@@ -9165,6 +9293,10 @@ declare class CoursesService {
9165
9293
  * Gets or sets the queryable Programme Id.
9166
9294
  */
9167
9295
  programmeId?: string;
9296
+ /**
9297
+ * Gets or sets the queryable Provider Id.
9298
+ */
9299
+ providerId?: string;
9168
9300
  /**
9169
9301
  * Gets or sets the queryable Survey Id.
9170
9302
  */
@@ -9360,7 +9492,7 @@ declare class CoursesService {
9360
9492
  * @returns boolean OK
9361
9493
  * @throws ApiError
9362
9494
  */
9363
- 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, }: {
9495
+ exists({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9364
9496
  /**
9365
9497
  * Gets or sets the queryable Course Id.
9366
9498
  */
@@ -9377,6 +9509,10 @@ declare class CoursesService {
9377
9509
  * Gets or sets the queryable Programme Id.
9378
9510
  */
9379
9511
  programmeId?: string;
9512
+ /**
9513
+ * Gets or sets the queryable Provider Id.
9514
+ */
9515
+ providerId?: string;
9380
9516
  /**
9381
9517
  * Gets or sets the queryable Survey Id.
9382
9518
  */
@@ -9539,7 +9675,7 @@ declare class CoursesService {
9539
9675
  * @returns number OK
9540
9676
  * @throws ApiError
9541
9677
  */
9542
- 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, }: {
9678
+ count({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9543
9679
  /**
9544
9680
  * Gets or sets the queryable Course Id.
9545
9681
  */
@@ -9556,6 +9692,10 @@ declare class CoursesService {
9556
9692
  * Gets or sets the queryable Programme Id.
9557
9693
  */
9558
9694
  programmeId?: string;
9695
+ /**
9696
+ * Gets or sets the queryable Provider Id.
9697
+ */
9698
+ providerId?: string;
9559
9699
  /**
9560
9700
  * Gets or sets the queryable Survey Id.
9561
9701
  */
@@ -9718,7 +9858,7 @@ declare class CoursesService {
9718
9858
  * @returns Course OK
9719
9859
  * @throws ApiError
9720
9860
  */
9721
- 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, }: {
9861
+ getListWithoutReferences({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9722
9862
  /**
9723
9863
  * Gets or sets the queryable Course Id.
9724
9864
  */
@@ -9735,6 +9875,10 @@ declare class CoursesService {
9735
9875
  * Gets or sets the queryable Programme Id.
9736
9876
  */
9737
9877
  programmeId?: string;
9878
+ /**
9879
+ * Gets or sets the queryable Provider Id.
9880
+ */
9881
+ providerId?: string;
9738
9882
  /**
9739
9883
  * Gets or sets the queryable Survey Id.
9740
9884
  */
@@ -9897,7 +10041,7 @@ declare class CoursesService {
9897
10041
  * @returns Course OK
9898
10042
  * @throws ApiError
9899
10043
  */
9900
- 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, }: {
10044
+ getListIdName({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9901
10045
  /**
9902
10046
  * Gets or sets the queryable Course Id.
9903
10047
  */
@@ -9914,6 +10058,10 @@ declare class CoursesService {
9914
10058
  * Gets or sets the queryable Programme Id.
9915
10059
  */
9916
10060
  programmeId?: string;
10061
+ /**
10062
+ * Gets or sets the queryable Provider Id.
10063
+ */
10064
+ providerId?: string;
9917
10065
  /**
9918
10066
  * Gets or sets the queryable Survey Id.
9919
10067
  */
@@ -17388,7 +17536,7 @@ declare class GenericActivityService {
17388
17536
  * @returns GenericActivity OK
17389
17537
  * @throws ApiError
17390
17538
  */
17391
- 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, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
17539
+ getUpcoming({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, includeActivityFacets, searchGeoCenter, openactiveActivityId, activityId, activityTypeCategoryId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
17392
17540
  /**
17393
17541
  * Gets or sets the wildcard for use in a query search.
17394
17542
  */
@@ -17433,6 +17581,11 @@ declare class GenericActivityService {
17433
17581
  * Gets or sets a value indicating does session is private or no.
17434
17582
  */
17435
17583
  _private?: boolean;
17584
+ /**
17585
+ * Gets or sets a value indicating whether to include activity facets (with counts) in the search response.
17586
+ * Only applies when SearchGeoCenter or Lat/Lng are provided. Use for single-call fetches of activities and facets.
17587
+ */
17588
+ includeActivityFacets?: boolean;
17436
17589
  /**
17437
17590
  * Gets or sets SearchGeoCenter.
17438
17591
  */
@@ -17445,6 +17598,10 @@ declare class GenericActivityService {
17445
17598
  * Gets or sets Activity id.
17446
17599
  */
17447
17600
  activityId?: number;
17601
+ /**
17602
+ * Gets or sets Activity type category id.
17603
+ */
17604
+ activityTypeCategoryId?: number;
17448
17605
  /**
17449
17606
  * Gets or sets the queryable session Activity ids.
17450
17607
  */
@@ -17590,7 +17747,7 @@ declare class GenericActivityService {
17590
17747
  * @returns boolean OK
17591
17748
  * @throws ApiError
17592
17749
  */
17593
- 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, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
17750
+ exists({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, includeActivityFacets, searchGeoCenter, openactiveActivityId, activityId, activityTypeCategoryId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
17594
17751
  /**
17595
17752
  * Gets or sets the wildcard for use in a query search.
17596
17753
  */
@@ -17635,6 +17792,11 @@ declare class GenericActivityService {
17635
17792
  * Gets or sets a value indicating does session is private or no.
17636
17793
  */
17637
17794
  _private?: boolean;
17795
+ /**
17796
+ * Gets or sets a value indicating whether to include activity facets (with counts) in the search response.
17797
+ * Only applies when SearchGeoCenter or Lat/Lng are provided. Use for single-call fetches of activities and facets.
17798
+ */
17799
+ includeActivityFacets?: boolean;
17638
17800
  /**
17639
17801
  * Gets or sets SearchGeoCenter.
17640
17802
  */
@@ -17647,6 +17809,10 @@ declare class GenericActivityService {
17647
17809
  * Gets or sets Activity id.
17648
17810
  */
17649
17811
  activityId?: number;
17812
+ /**
17813
+ * Gets or sets Activity type category id.
17814
+ */
17815
+ activityTypeCategoryId?: number;
17650
17816
  /**
17651
17817
  * Gets or sets the queryable session Activity ids.
17652
17818
  */
@@ -17781,7 +17947,7 @@ declare class GenericActivityService {
17781
17947
  * @returns number OK
17782
17948
  * @throws ApiError
17783
17949
  */
17784
- 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, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
17950
+ count({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, includeActivityFacets, searchGeoCenter, openactiveActivityId, activityId, activityTypeCategoryId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
17785
17951
  /**
17786
17952
  * Gets or sets the wildcard for use in a query search.
17787
17953
  */
@@ -17826,6 +17992,11 @@ declare class GenericActivityService {
17826
17992
  * Gets or sets a value indicating does session is private or no.
17827
17993
  */
17828
17994
  _private?: boolean;
17995
+ /**
17996
+ * Gets or sets a value indicating whether to include activity facets (with counts) in the search response.
17997
+ * Only applies when SearchGeoCenter or Lat/Lng are provided. Use for single-call fetches of activities and facets.
17998
+ */
17999
+ includeActivityFacets?: boolean;
17829
18000
  /**
17830
18001
  * Gets or sets SearchGeoCenter.
17831
18002
  */
@@ -17838,6 +18009,10 @@ declare class GenericActivityService {
17838
18009
  * Gets or sets Activity id.
17839
18010
  */
17840
18011
  activityId?: number;
18012
+ /**
18013
+ * Gets or sets Activity type category id.
18014
+ */
18015
+ activityTypeCategoryId?: number;
17841
18016
  /**
17842
18017
  * Gets or sets the queryable session Activity ids.
17843
18018
  */
@@ -17972,7 +18147,7 @@ declare class GenericActivityService {
17972
18147
  * @returns GenericActivityPage OK
17973
18148
  * @throws ApiError
17974
18149
  */
17975
- 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, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
18150
+ getPage({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, includeActivityFacets, searchGeoCenter, openactiveActivityId, activityId, activityTypeCategoryId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
17976
18151
  /**
17977
18152
  * Gets or sets the wildcard for use in a query search.
17978
18153
  */
@@ -18017,6 +18192,11 @@ declare class GenericActivityService {
18017
18192
  * Gets or sets a value indicating does session is private or no.
18018
18193
  */
18019
18194
  _private?: boolean;
18195
+ /**
18196
+ * Gets or sets a value indicating whether to include activity facets (with counts) in the search response.
18197
+ * Only applies when SearchGeoCenter or Lat/Lng are provided. Use for single-call fetches of activities and facets.
18198
+ */
18199
+ includeActivityFacets?: boolean;
18020
18200
  /**
18021
18201
  * Gets or sets SearchGeoCenter.
18022
18202
  */
@@ -18029,6 +18209,10 @@ declare class GenericActivityService {
18029
18209
  * Gets or sets Activity id.
18030
18210
  */
18031
18211
  activityId?: number;
18212
+ /**
18213
+ * Gets or sets Activity type category id.
18214
+ */
18215
+ activityTypeCategoryId?: number;
18032
18216
  /**
18033
18217
  * Gets or sets the queryable session Activity ids.
18034
18218
  */
@@ -18163,7 +18347,7 @@ declare class GenericActivityService {
18163
18347
  * @returns GenericActivity OK
18164
18348
  * @throws ApiError
18165
18349
  */
18166
- 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, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
18350
+ getListWithoutReferences({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, includeActivityFacets, searchGeoCenter, openactiveActivityId, activityId, activityTypeCategoryId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
18167
18351
  /**
18168
18352
  * Gets or sets the wildcard for use in a query search.
18169
18353
  */
@@ -18208,6 +18392,11 @@ declare class GenericActivityService {
18208
18392
  * Gets or sets a value indicating does session is private or no.
18209
18393
  */
18210
18394
  _private?: boolean;
18395
+ /**
18396
+ * Gets or sets a value indicating whether to include activity facets (with counts) in the search response.
18397
+ * Only applies when SearchGeoCenter or Lat/Lng are provided. Use for single-call fetches of activities and facets.
18398
+ */
18399
+ includeActivityFacets?: boolean;
18211
18400
  /**
18212
18401
  * Gets or sets SearchGeoCenter.
18213
18402
  */
@@ -18220,6 +18409,10 @@ declare class GenericActivityService {
18220
18409
  * Gets or sets Activity id.
18221
18410
  */
18222
18411
  activityId?: number;
18412
+ /**
18413
+ * Gets or sets Activity type category id.
18414
+ */
18415
+ activityTypeCategoryId?: number;
18223
18416
  /**
18224
18417
  * Gets or sets the queryable session Activity ids.
18225
18418
  */
@@ -18354,7 +18547,7 @@ declare class GenericActivityService {
18354
18547
  * @returns GenericActivity OK
18355
18548
  * @throws ApiError
18356
18549
  */
18357
- 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, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
18550
+ getListIdName({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, includeActivityFacets, searchGeoCenter, openactiveActivityId, activityId, activityTypeCategoryId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
18358
18551
  /**
18359
18552
  * Gets or sets the wildcard for use in a query search.
18360
18553
  */
@@ -18399,6 +18592,11 @@ declare class GenericActivityService {
18399
18592
  * Gets or sets a value indicating does session is private or no.
18400
18593
  */
18401
18594
  _private?: boolean;
18595
+ /**
18596
+ * Gets or sets a value indicating whether to include activity facets (with counts) in the search response.
18597
+ * Only applies when SearchGeoCenter or Lat/Lng are provided. Use for single-call fetches of activities and facets.
18598
+ */
18599
+ includeActivityFacets?: boolean;
18402
18600
  /**
18403
18601
  * Gets or sets SearchGeoCenter.
18404
18602
  */
@@ -18411,6 +18609,10 @@ declare class GenericActivityService {
18411
18609
  * Gets or sets Activity id.
18412
18610
  */
18413
18611
  activityId?: number;
18612
+ /**
18613
+ * Gets or sets Activity type category id.
18614
+ */
18615
+ activityTypeCategoryId?: number;
18414
18616
  /**
18415
18617
  * Gets or sets the queryable session Activity ids.
18416
18618
  */
@@ -33180,6 +33382,7 @@ type ProviderPatch = {
33180
33382
  * Gets or sets the contact website.
33181
33383
  */
33182
33384
  contactWebsite?: string | null;
33385
+ upcomingLayout?: UpcomingLayout;
33183
33386
  /**
33184
33387
  * Gets or sets the organisations social media Urls.
33185
33388
  */
@@ -34561,7 +34764,7 @@ declare class PublicCoursesService {
34561
34764
  * @returns CoursePage OK
34562
34765
  * @throws ApiError
34563
34766
  */
34564
- 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, }: {
34767
+ getPage({ xTenantSubdomain, id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
34565
34768
  xTenantSubdomain?: string;
34566
34769
  /**
34567
34770
  * Gets or sets the queryable Course Id.
@@ -34579,6 +34782,10 @@ declare class PublicCoursesService {
34579
34782
  * Gets or sets the queryable Programme Id.
34580
34783
  */
34581
34784
  programmeId?: string;
34785
+ /**
34786
+ * Gets or sets the queryable Provider Id.
34787
+ */
34788
+ providerId?: string;
34582
34789
  /**
34583
34790
  * Gets or sets the queryable Survey Id.
34584
34791
  */
@@ -34816,7 +35023,7 @@ declare class PublicCoursesService {
34816
35023
  * @returns boolean OK
34817
35024
  * @throws ApiError
34818
35025
  */
34819
- 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, }: {
35026
+ exists({ xTenantSubdomain, id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
34820
35027
  /**
34821
35028
  * The tenants subdomain.
34822
35029
  */
@@ -34837,6 +35044,10 @@ declare class PublicCoursesService {
34837
35044
  * Gets or sets the queryable Programme Id.
34838
35045
  */
34839
35046
  programmeId?: string;
35047
+ /**
35048
+ * Gets or sets the queryable Provider Id.
35049
+ */
35050
+ providerId?: string;
34840
35051
  /**
34841
35052
  * Gets or sets the queryable Survey Id.
34842
35053
  */
@@ -35547,6 +35758,43 @@ declare class PublicFilestackWebhookService {
35547
35758
  }): CancelablePromise<any>;
35548
35759
  }
35549
35760
 
35761
+ /**
35762
+ * Represents an activity facet with count for filtering in location-based search.
35763
+ */
35764
+ type ActivityFacet = {
35765
+ /**
35766
+ * Gets or sets the activity id.
35767
+ */
35768
+ id?: number;
35769
+ /**
35770
+ * Gets or sets the activity name.
35771
+ */
35772
+ name?: string | null;
35773
+ /**
35774
+ * Gets or sets the OpenActive activity identifier.
35775
+ */
35776
+ openactiveActivityId?: string | null;
35777
+ /**
35778
+ * Gets or sets the count of activities of this type within the search criteria.
35779
+ */
35780
+ count?: number;
35781
+ };
35782
+
35783
+ /**
35784
+ * Response wrapper for activity search that can optionally include activity facets.
35785
+ */
35786
+ type ActivitySearchResponse = {
35787
+ pagination?: Pagination;
35788
+ /**
35789
+ * Gets or sets the activity items.
35790
+ */
35791
+ items?: Array<GenericActivity> | null;
35792
+ /**
35793
+ * Gets or sets the activity facets with counts, when includeActivityFacets=true and location params are provided.
35794
+ */
35795
+ activityFacets?: Array<ActivityFacet> | null;
35796
+ };
35797
+
35550
35798
  declare class PublicGenericActivityService {
35551
35799
  readonly httpRequest: BaseHttpRequest;
35552
35800
  constructor(httpRequest: BaseHttpRequest);
@@ -35562,7 +35810,7 @@ declare class PublicGenericActivityService {
35562
35810
  * @returns GenericActivityPage OK
35563
35811
  * @throws ApiError
35564
35812
  */
35565
- 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, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
35813
+ getPage({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, includeActivityFacets, searchGeoCenter, openactiveActivityId, activityId, activityTypeCategoryId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
35566
35814
  xTenantSubdomain?: string;
35567
35815
  /**
35568
35816
  * Gets or sets the wildcard for use in a query search.
@@ -35608,6 +35856,11 @@ declare class PublicGenericActivityService {
35608
35856
  * Gets or sets a value indicating does session is private or no.
35609
35857
  */
35610
35858
  _private?: boolean;
35859
+ /**
35860
+ * Gets or sets a value indicating whether to include activity facets (with counts) in the search response.
35861
+ * Only applies when SearchGeoCenter or Lat/Lng are provided. Use for single-call fetches of activities and facets.
35862
+ */
35863
+ includeActivityFacets?: boolean;
35611
35864
  /**
35612
35865
  * Gets or sets SearchGeoCenter.
35613
35866
  */
@@ -35620,6 +35873,10 @@ declare class PublicGenericActivityService {
35620
35873
  * Gets or sets Activity id.
35621
35874
  */
35622
35875
  activityId?: number;
35876
+ /**
35877
+ * Gets or sets Activity type category id.
35878
+ */
35879
+ activityTypeCategoryId?: number;
35623
35880
  /**
35624
35881
  * Gets or sets the queryable session Activity ids.
35625
35882
  */
@@ -35751,10 +36008,10 @@ declare class PublicGenericActivityService {
35751
36008
  }): CancelablePromise<GenericActivityPage>;
35752
36009
  /**
35753
36010
  * Get activities for a network.
35754
- * @returns GenericActivityPage OK
36011
+ * @returns ActivitySearchResponse OK
35755
36012
  * @throws ApiError
35756
36013
  */
35757
- 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, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
36014
+ getPage1({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, includeActivityFacets, searchGeoCenter, openactiveActivityId, activityId, activityTypeCategoryId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
35758
36015
  /**
35759
36016
  * Gets or sets the wildcard for use in a query search.
35760
36017
  */
@@ -35799,6 +36056,11 @@ declare class PublicGenericActivityService {
35799
36056
  * Gets or sets a value indicating does session is private or no.
35800
36057
  */
35801
36058
  _private?: boolean;
36059
+ /**
36060
+ * Gets or sets a value indicating whether to include activity facets (with counts) in the search response.
36061
+ * Only applies when SearchGeoCenter or Lat/Lng are provided. Use for single-call fetches of activities and facets.
36062
+ */
36063
+ includeActivityFacets?: boolean;
35802
36064
  /**
35803
36065
  * Gets or sets SearchGeoCenter.
35804
36066
  */
@@ -35811,6 +36073,10 @@ declare class PublicGenericActivityService {
35811
36073
  * Gets or sets Activity id.
35812
36074
  */
35813
36075
  activityId?: number;
36076
+ /**
36077
+ * Gets or sets Activity type category id.
36078
+ */
36079
+ activityTypeCategoryId?: number;
35814
36080
  /**
35815
36081
  * Gets or sets the queryable session Activity ids.
35816
36082
  */
@@ -35939,13 +36205,13 @@ declare class PublicGenericActivityService {
35939
36205
  * Gets or sets the sort order direction.
35940
36206
  */
35941
36207
  sortOrderDirection?: SearchSortOrderDirection;
35942
- }): CancelablePromise<GenericActivityPage>;
36208
+ }): CancelablePromise<ActivitySearchResponse>;
35943
36209
  /**
35944
36210
  * Retrieves a list of upcoming activities.
35945
36211
  * @returns GenericActivity OK
35946
36212
  * @throws ApiError
35947
36213
  */
35948
- 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, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
36214
+ getUpcoming({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, includeActivityFacets, searchGeoCenter, openactiveActivityId, activityId, activityTypeCategoryId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
35949
36215
  /**
35950
36216
  * The tenants subdomain.
35951
36217
  */
@@ -35994,6 +36260,11 @@ declare class PublicGenericActivityService {
35994
36260
  * Gets or sets a value indicating does session is private or no.
35995
36261
  */
35996
36262
  _private?: boolean;
36263
+ /**
36264
+ * Gets or sets a value indicating whether to include activity facets (with counts) in the search response.
36265
+ * Only applies when SearchGeoCenter or Lat/Lng are provided. Use for single-call fetches of activities and facets.
36266
+ */
36267
+ includeActivityFacets?: boolean;
35997
36268
  /**
35998
36269
  * Gets or sets SearchGeoCenter.
35999
36270
  */
@@ -36006,6 +36277,10 @@ declare class PublicGenericActivityService {
36006
36277
  * Gets or sets Activity id.
36007
36278
  */
36008
36279
  activityId?: number;
36280
+ /**
36281
+ * Gets or sets Activity type category id.
36282
+ */
36283
+ activityTypeCategoryId?: number;
36009
36284
  /**
36010
36285
  * Gets or sets the queryable session Activity ids.
36011
36286
  */
@@ -36136,36 +36411,214 @@ declare class PublicGenericActivityService {
36136
36411
  sortOrderDirection?: SearchSortOrderDirection;
36137
36412
  }): CancelablePromise<Array<GenericActivity>>;
36138
36413
  /**
36139
- * Retrieves a list of activity facets.
36140
- * @returns Activity OK
36414
+ * Retrieves activity facets with counts for the given location/distance. Call this first after user selects location,
36415
+ * then use the activity ids to filter the main search (network or network/optimized).
36416
+ * @returns ActivityFacet OK
36141
36417
  * @throws ApiError
36142
36418
  */
36143
- getActivityFacets({ lat, lng, radius, networkId, }: {
36419
+ getActivityFacets({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, includeActivityFacets, searchGeoCenter, openactiveActivityId, activityId, activityTypeCategoryId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
36420
+ /**
36421
+ * Gets or sets the wildcard for use in a query search.
36422
+ */
36423
+ wildcard?: string;
36424
+ /**
36425
+ * Gets or sets the queryable Venue Id.
36426
+ */
36427
+ venueId?: string;
36428
+ /**
36429
+ * Gets or sets the queryable Provider Id.
36430
+ */
36431
+ providerId?: string;
36432
+ /**
36433
+ * Gets or sets the queryable Programme Id.
36434
+ */
36435
+ programmeId?: string;
36436
+ /**
36437
+ * Gets or sets a value indicating whether return online activities.
36438
+ */
36439
+ online?: boolean;
36144
36440
  /**
36145
- * Gets or sets lat.
36441
+ * Gets or sets a value indicating whether to include archived activities.
36442
+ */
36443
+ archived?: boolean;
36444
+ /**
36445
+ * Gets or sets a value indicating whether to include deleted activities.
36446
+ */
36447
+ deleted?: boolean;
36448
+ /**
36449
+ * Gets or sets the activity type.
36450
+ */
36451
+ activityType?: ActivityType;
36452
+ /**
36453
+ * Gets or sets a value indicating whether to inlcude the activities next availability.
36454
+ */
36455
+ includeNextOpportunity?: boolean;
36456
+ /**
36457
+ * Gets or sets a value indicating whether to filter on whether the activity is featured.
36458
+ */
36459
+ featured?: boolean;
36460
+ /**
36461
+ * Gets or sets a value indicating does session is private or no.
36462
+ */
36463
+ _private?: boolean;
36464
+ /**
36465
+ * Gets or sets a value indicating whether to include activity facets (with counts) in the search response.
36466
+ * Only applies when SearchGeoCenter or Lat/Lng are provided. Use for single-call fetches of activities and facets.
36467
+ */
36468
+ includeActivityFacets?: boolean;
36469
+ /**
36470
+ * Gets or sets SearchGeoCenter.
36471
+ */
36472
+ searchGeoCenter?: string;
36473
+ /**
36474
+ * Gets or sets OpenactiveActivityId.
36475
+ */
36476
+ openactiveActivityId?: string;
36477
+ /**
36478
+ * Gets or sets Activity id.
36479
+ */
36480
+ activityId?: number;
36481
+ /**
36482
+ * Gets or sets Activity type category id.
36483
+ */
36484
+ activityTypeCategoryId?: number;
36485
+ /**
36486
+ * Gets or sets the queryable session Activity ids.
36487
+ */
36488
+ activityIds?: Array<number>;
36489
+ /**
36490
+ * Gets or sets a value indicating whether to include only sessions by given NetworkId.
36491
+ */
36492
+ networkId?: string;
36493
+ /**
36494
+ * Gets or sets a value indicating whether the results should return a specific tenant status.
36495
+ */
36496
+ tenantStatus?: TenantStatus;
36497
+ /**
36498
+ * Gets or sets Lat.
36146
36499
  */
36147
36500
  lat?: number;
36148
36501
  /**
36149
- * Gets or sets lng.
36502
+ * Gets or sets Lng.
36150
36503
  */
36151
36504
  lng?: number;
36152
36505
  /**
36153
- * Gets or sets id.
36506
+ * Gets or sets Distance.
36154
36507
  */
36155
- radius?: number;
36508
+ distance?: number;
36156
36509
  /**
36157
- * Gets or sets NetworkId.
36510
+ * Gets or sets MinAgeLTE.
36158
36511
  */
36159
- networkId?: string;
36160
- }): CancelablePromise<Array<Activity>>;
36512
+ minAgeLte?: number;
36513
+ /**
36514
+ * Gets or sets MinAgeGTE.
36515
+ */
36516
+ minAgeGte?: number;
36517
+ /**
36518
+ * Gets or sets MaxAgeLTE.
36519
+ */
36520
+ maxAgeLte?: number;
36521
+ /**
36522
+ * Gets or sets MaxAgeGTE.
36523
+ */
36524
+ maxAgeGte?: number;
36525
+ /**
36526
+ * Gets or sets PriceTotalGTE.
36527
+ */
36528
+ priceTotalGte?: number;
36529
+ /**
36530
+ * Gets or sets PriceTotalLTE.
36531
+ */
36532
+ priceTotalLte?: number;
36533
+ /**
36534
+ * Gets or sets TimeOfDay.
36535
+ */
36536
+ timeOfDay?: string;
36537
+ /**
36538
+ * Gets or sets StartDateTimeGTE.
36539
+ */
36540
+ startDateTimeGte?: string;
36541
+ /**
36542
+ * Gets or sets EndDateTimeLTE.
36543
+ */
36544
+ endDateTimeLte?: string;
36545
+ /**
36546
+ * Gets or sets Gender.
36547
+ */
36548
+ gender?: Gender;
36549
+ /**
36550
+ * Gets or sets PeriodsOfWeek.
36551
+ */
36552
+ periodsOfWeek?: PeriodsOfWeek;
36553
+ /**
36554
+ * Gets or sets AdditionalSupport.
36555
+ */
36556
+ additionalSupport?: Array<string>;
36557
+ /**
36558
+ * Gets or sets AmenityId.
36559
+ */
36560
+ amenity?: Array<number>;
36561
+ /**
36562
+ * Gets or sets a list of venue type ids.
36563
+ */
36564
+ venueTypeIds?: Array<string>;
36565
+ /**
36566
+ * Gets or sets the Programme ids.
36567
+ */
36568
+ programmeIds?: Array<string>;
36569
+ /**
36570
+ * Gets or sets the page number for paged queries.
36571
+ */
36572
+ pageNumber?: number;
36573
+ /**
36574
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
36575
+ */
36576
+ take?: number;
36577
+ /**
36578
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
36579
+ */
36580
+ skip?: number;
36581
+ /**
36582
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
36583
+ */
36584
+ limitListRequests?: boolean;
36585
+ /**
36586
+ * Gets or sets the Tenant Id.
36587
+ */
36588
+ tenantId?: string;
36589
+ /**
36590
+ * Gets or sets the Modifed By Id.
36591
+ */
36592
+ modifiedById?: string;
36593
+ /**
36594
+ * Gets or sets the Modifed By Ids.
36595
+ */
36596
+ modifiedByIds?: Array<string>;
36597
+ /**
36598
+ * Gets or sets the Date Created greater than equal to.
36599
+ */
36600
+ dateCreatedGte?: string;
36601
+ /**
36602
+ * Gets or sets the Date Created less than equal to.
36603
+ */
36604
+ dateCreatedLte?: string;
36605
+ /**
36606
+ * Gets or sets the queryable only is live status.
36607
+ */
36608
+ isLive?: boolean;
36609
+ /**
36610
+ * Gets or sets the sort order direction.
36611
+ */
36612
+ sortOrderDirection?: SearchSortOrderDirection;
36613
+ }): CancelablePromise<Array<ActivityFacet>>;
36161
36614
  /**
36162
36615
  * Retrieves a paged list of activities using optimized raw SQL queries.
36163
36616
  * This endpoint loads all related data (images, offers, sessions) in a single query using JSON aggregation,
36164
36617
  * eliminating the overhead of OnPagedItemsLoaded method. Returns only minimal required fields.
36165
- * @returns GenericActivityPage OK
36618
+ * @returns ActivitySearchResponse OK
36166
36619
  * @throws ApiError
36167
36620
  */
36168
- getPageOptimized({ 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, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
36621
+ getPageOptimized({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, includeActivityFacets, searchGeoCenter, openactiveActivityId, activityId, activityTypeCategoryId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
36169
36622
  /**
36170
36623
  * Gets or sets the wildcard for use in a query search.
36171
36624
  */
@@ -36210,6 +36663,11 @@ declare class PublicGenericActivityService {
36210
36663
  * Gets or sets a value indicating does session is private or no.
36211
36664
  */
36212
36665
  _private?: boolean;
36666
+ /**
36667
+ * Gets or sets a value indicating whether to include activity facets (with counts) in the search response.
36668
+ * Only applies when SearchGeoCenter or Lat/Lng are provided. Use for single-call fetches of activities and facets.
36669
+ */
36670
+ includeActivityFacets?: boolean;
36213
36671
  /**
36214
36672
  * Gets or sets SearchGeoCenter.
36215
36673
  */
@@ -36222,6 +36680,10 @@ declare class PublicGenericActivityService {
36222
36680
  * Gets or sets Activity id.
36223
36681
  */
36224
36682
  activityId?: number;
36683
+ /**
36684
+ * Gets or sets Activity type category id.
36685
+ */
36686
+ activityTypeCategoryId?: number;
36225
36687
  /**
36226
36688
  * Gets or sets the queryable session Activity ids.
36227
36689
  */
@@ -36350,13 +36812,13 @@ declare class PublicGenericActivityService {
36350
36812
  * Gets or sets the sort order direction.
36351
36813
  */
36352
36814
  sortOrderDirection?: SearchSortOrderDirection;
36353
- }): CancelablePromise<GenericActivityPage>;
36815
+ }): CancelablePromise<ActivitySearchResponse>;
36354
36816
  /**
36355
36817
  * Returns a value indicating whether the resource exists in the database given the provided search params.
36356
36818
  * @returns boolean OK
36357
36819
  * @throws ApiError
36358
36820
  */
36359
- 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, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
36821
+ exists({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, includeActivityFacets, searchGeoCenter, openactiveActivityId, activityId, activityTypeCategoryId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
36360
36822
  /**
36361
36823
  * The tenants subdomain.
36362
36824
  */
@@ -36405,6 +36867,11 @@ declare class PublicGenericActivityService {
36405
36867
  * Gets or sets a value indicating does session is private or no.
36406
36868
  */
36407
36869
  _private?: boolean;
36870
+ /**
36871
+ * Gets or sets a value indicating whether to include activity facets (with counts) in the search response.
36872
+ * Only applies when SearchGeoCenter or Lat/Lng are provided. Use for single-call fetches of activities and facets.
36873
+ */
36874
+ includeActivityFacets?: boolean;
36408
36875
  /**
36409
36876
  * Gets or sets SearchGeoCenter.
36410
36877
  */
@@ -36417,6 +36884,10 @@ declare class PublicGenericActivityService {
36417
36884
  * Gets or sets Activity id.
36418
36885
  */
36419
36886
  activityId?: number;
36887
+ /**
36888
+ * Gets or sets Activity type category id.
36889
+ */
36890
+ activityTypeCategoryId?: number;
36420
36891
  /**
36421
36892
  * Gets or sets the queryable session Activity ids.
36422
36893
  */
@@ -36989,7 +37460,7 @@ declare class PublicNetworksService {
36989
37460
  * @returns SessionPage OK
36990
37461
  * @throws ApiError
36991
37462
  */
36992
- 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, }: {
37463
+ getSessions({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
36993
37464
  /**
36994
37465
  * Gets or sets the queryable session ids.
36995
37466
  */
@@ -37030,6 +37501,10 @@ declare class PublicNetworksService {
37030
37501
  * Gets or sets the queryable Programme Id.
37031
37502
  */
37032
37503
  programmeId?: string;
37504
+ /**
37505
+ * Gets or sets the queryable Provider Id.
37506
+ */
37507
+ providerId?: string;
37033
37508
  /**
37034
37509
  * Gets or sets a value indicating whether to inlcude the sessions next availability.
37035
37510
  */
@@ -39867,7 +40342,7 @@ declare class PublicSessionsService {
39867
40342
  * @returns SessionPage OK
39868
40343
  * @throws ApiError
39869
40344
  */
39870
- 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, }: {
40345
+ getPage({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
39871
40346
  xTenantSubdomain?: string;
39872
40347
  /**
39873
40348
  * Gets or sets the queryable session ids.
@@ -39909,6 +40384,10 @@ declare class PublicSessionsService {
39909
40384
  * Gets or sets the queryable Programme Id.
39910
40385
  */
39911
40386
  programmeId?: string;
40387
+ /**
40388
+ * Gets or sets the queryable Provider Id.
40389
+ */
40390
+ providerId?: string;
39912
40391
  /**
39913
40392
  * Gets or sets a value indicating whether to inlcude the sessions next availability.
39914
40393
  */
@@ -40312,7 +40791,7 @@ declare class PublicSessionsService {
40312
40791
  * @returns boolean OK
40313
40792
  * @throws ApiError
40314
40793
  */
40315
- 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, }: {
40794
+ exists({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
40316
40795
  /**
40317
40796
  * The tenants subdomain.
40318
40797
  */
@@ -40357,6 +40836,10 @@ declare class PublicSessionsService {
40357
40836
  * Gets or sets the queryable Programme Id.
40358
40837
  */
40359
40838
  programmeId?: string;
40839
+ /**
40840
+ * Gets or sets the queryable Provider Id.
40841
+ */
40842
+ providerId?: string;
40360
40843
  /**
40361
40844
  * Gets or sets a value indicating whether to inlcude the sessions next availability.
40362
40845
  */
@@ -48248,7 +48731,7 @@ declare class SessionsService {
48248
48731
  * @returns SessionPage OK
48249
48732
  * @throws ApiError
48250
48733
  */
48251
- 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, }: {
48734
+ getPage({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
48252
48735
  /**
48253
48736
  * Gets or sets the queryable session ids.
48254
48737
  */
@@ -48289,6 +48772,10 @@ declare class SessionsService {
48289
48772
  * Gets or sets the queryable Programme Id.
48290
48773
  */
48291
48774
  programmeId?: string;
48775
+ /**
48776
+ * Gets or sets the queryable Provider Id.
48777
+ */
48778
+ providerId?: string;
48292
48779
  /**
48293
48780
  * Gets or sets a value indicating whether to inlcude the sessions next availability.
48294
48781
  */
@@ -48460,7 +48947,7 @@ declare class SessionsService {
48460
48947
  * @returns boolean OK
48461
48948
  * @throws ApiError
48462
48949
  */
48463
- 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, }: {
48950
+ exists({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
48464
48951
  /**
48465
48952
  * Gets or sets the queryable session ids.
48466
48953
  */
@@ -48501,6 +48988,10 @@ declare class SessionsService {
48501
48988
  * Gets or sets the queryable Programme Id.
48502
48989
  */
48503
48990
  programmeId?: string;
48991
+ /**
48992
+ * Gets or sets the queryable Provider Id.
48993
+ */
48994
+ providerId?: string;
48504
48995
  /**
48505
48996
  * Gets or sets a value indicating whether to inlcude the sessions next availability.
48506
48997
  */
@@ -48639,7 +49130,7 @@ declare class SessionsService {
48639
49130
  * @returns number OK
48640
49131
  * @throws ApiError
48641
49132
  */
48642
- 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, }: {
49133
+ count({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
48643
49134
  /**
48644
49135
  * Gets or sets the queryable session ids.
48645
49136
  */
@@ -48680,6 +49171,10 @@ declare class SessionsService {
48680
49171
  * Gets or sets the queryable Programme Id.
48681
49172
  */
48682
49173
  programmeId?: string;
49174
+ /**
49175
+ * Gets or sets the queryable Provider Id.
49176
+ */
49177
+ providerId?: string;
48683
49178
  /**
48684
49179
  * Gets or sets a value indicating whether to inlcude the sessions next availability.
48685
49180
  */
@@ -48818,7 +49313,7 @@ declare class SessionsService {
48818
49313
  * @returns Session OK
48819
49314
  * @throws ApiError
48820
49315
  */
48821
- 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, }: {
49316
+ getListWithoutReferences({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
48822
49317
  /**
48823
49318
  * Gets or sets the queryable session ids.
48824
49319
  */
@@ -48859,6 +49354,10 @@ declare class SessionsService {
48859
49354
  * Gets or sets the queryable Programme Id.
48860
49355
  */
48861
49356
  programmeId?: string;
49357
+ /**
49358
+ * Gets or sets the queryable Provider Id.
49359
+ */
49360
+ providerId?: string;
48862
49361
  /**
48863
49362
  * Gets or sets a value indicating whether to inlcude the sessions next availability.
48864
49363
  */
@@ -48997,7 +49496,7 @@ declare class SessionsService {
48997
49496
  * @returns Session OK
48998
49497
  * @throws ApiError
48999
49498
  */
49000
- 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, }: {
49499
+ getListIdName({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
49001
49500
  /**
49002
49501
  * Gets or sets the queryable session ids.
49003
49502
  */
@@ -49038,6 +49537,10 @@ declare class SessionsService {
49038
49537
  * Gets or sets the queryable Programme Id.
49039
49538
  */
49040
49539
  programmeId?: string;
49540
+ /**
49541
+ * Gets or sets the queryable Provider Id.
49542
+ */
49543
+ providerId?: string;
49041
49544
  /**
49042
49545
  * Gets or sets a value indicating whether to inlcude the sessions next availability.
49043
49546
  */
@@ -58004,6 +58507,19 @@ type TenantWebsiteSettingPatch = {
58004
58507
  * Gets or sets the tenants website marketing optin text.
58005
58508
  */
58006
58509
  tenantMarketingOptinText?: string | null;
58510
+ upcomingLayout?: UpcomingLayout;
58511
+ defaultUpcomingLayoutForVenues?: UpcomingLayout;
58512
+ defaultUpcomingLayoutForProviders?: UpcomingLayout;
58513
+ defaultUpcomingLayoutForProgrammes?: UpcomingLayout;
58514
+ /**
58515
+ * Gets or sets the default map distance in kilometres. Used when displaying the map on the website.
58516
+ */
58517
+ defaultMapDistance?: number | null;
58518
+ /**
58519
+ * Gets or sets the default map center Google Place ID. Used when displaying the map on the website.
58520
+ */
58521
+ defaultMapCenterPlaceId?: string | null;
58522
+ websiteHomepage?: WebsiteHomepage;
58007
58523
  };
58008
58524
 
58009
58525
  /**
@@ -67685,6 +68201,7 @@ type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
67685
68201
  declare class ApiClient {
67686
68202
  readonly activity: ActivityService;
67687
68203
  readonly activityPerformance: ActivityPerformanceService;
68204
+ readonly activityTypeCategory: ActivityTypeCategoryService;
67688
68205
  readonly amenity: AmenityService;
67689
68206
  readonly attendees: AttendeesService;
67690
68207
  readonly badEnglandReport: BadEnglandReportService;
@@ -67941,4 +68458,4 @@ type ValidationResultModel = {
67941
68458
  readonly errors?: Array<ValidationError> | null;
67942
68459
  };
67943
68460
 
67944
- export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressBookItem, AddressBooksRequest, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeeWalletDeductionPreview, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CourseEmailWaitlistPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateTemplateFieldPermission, CreateVenue, CustomDateRange, CustomDateRangeOption, CustomFieldDataType, CustomFieldDefinition, CustomFieldDefinitionPage, CustomFieldDefinitionPatch, CustomFieldDefinitionPost, CustomFieldDefinitionWithValue, CustomFieldOption, CustomFieldOptionDto, CustomFieldOptionPost, CustomFieldValueEntityType, CustomFieldValueUpdate, CustomFieldsBulkUpdate, CustomFieldsService, Customer, CustomerAccountInvitePatch, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomerWalletDeductionPreview, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, DotdigitalCanonicalField, DotdigitalService, DotdigitalSourceType, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EndUserIdentity, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, EventTiming, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FieldPermission, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, IntegrationDotDigitalSettingsService, IntegrationDotdigitalFieldMap, IntegrationDotdigitalFieldMapPage, IntegrationDotdigitalFieldMapPatch, IntegrationDotdigitalFieldMapPost, IntegrationDotdigitalFieldMapService, IntegrationDotdigitalLog, IntegrationDotdigitalLogPage, IntegrationDotdigitalLogPatch, IntegrationDotdigitalLogPost, IntegrationDotdigitalLogService, IntegrationDotdigitalLogStatus, IntegrationDotdigitalSettings, IntegrationDotdigitalSettingsCreate, IntegrationDotdigitalSettingsPage, IntegrationDotdigitalSettingsPatch, IntegrationDotdigitalSettingsPost, IntegrationQueue, IntegrationQueuePage, IntegrationQueuePatch, IntegrationQueuePost, IntegrationQueueService, IntegrationType, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationReportSummary, LocationsReportService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderApplyDiscountCode, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemReportSummary, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProviderType, ProviderTypesService, ProvidersService, PublicBookingService, PublicCalendarService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenueTypesService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ResolveSecureAccessTokenRequest, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionEmailWaitlistPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, SortIndex, Southwest, StripeAccount, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpcomingLayout, UpdateCustomFieldOption, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenueType, VenueTypePage, VenueTypePatch, VenueTypePost, VenueTypeService, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistConversionStatsResponseDto, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService, Wallet, WalletDeductionPreview, WalletPage, WalletPatch, WalletPost, WalletRemoveCreditPost, WalletTopUpPost, WalletTrackingLevel, WalletTransaction, WalletTransactionPage, WalletTransactionPatch, WalletTransactionPost, WalletTransactionType, WalletTransactionsService, WalletsService };
68461
+ export { Activity, ActivityFacet, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivitySearchResponse, ActivityService, ActivityType, ActivityTypeCategory, ActivityTypeCategoryService, AddressBookItem, AddressBooksRequest, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeeWalletDeductionPreview, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CourseEmailWaitlistPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateTemplateFieldPermission, CreateVenue, CustomDateRange, CustomDateRangeOption, CustomFieldDataType, CustomFieldDefinition, CustomFieldDefinitionPage, CustomFieldDefinitionPatch, CustomFieldDefinitionPost, CustomFieldDefinitionWithValue, CustomFieldOption, CustomFieldOptionDto, CustomFieldOptionPost, CustomFieldValueEntityType, CustomFieldValueUpdate, CustomFieldsBulkUpdate, CustomFieldsService, Customer, CustomerAccountInvitePatch, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomerWalletDeductionPreview, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, DotdigitalCanonicalField, DotdigitalService, DotdigitalSourceType, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EndUserIdentity, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, EventTiming, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FieldPermission, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, IntegrationDotDigitalSettingsService, IntegrationDotdigitalFieldMap, IntegrationDotdigitalFieldMapPage, IntegrationDotdigitalFieldMapPatch, IntegrationDotdigitalFieldMapPost, IntegrationDotdigitalFieldMapService, IntegrationDotdigitalLog, IntegrationDotdigitalLogPage, IntegrationDotdigitalLogPatch, IntegrationDotdigitalLogPost, IntegrationDotdigitalLogService, IntegrationDotdigitalLogStatus, IntegrationDotdigitalSettings, IntegrationDotdigitalSettingsCreate, IntegrationDotdigitalSettingsPage, IntegrationDotdigitalSettingsPatch, IntegrationDotdigitalSettingsPost, IntegrationQueue, IntegrationQueuePage, IntegrationQueuePatch, IntegrationQueuePost, IntegrationQueueService, IntegrationType, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationReportSummary, LocationsReportService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderApplyDiscountCode, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemReportSummary, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderActivityLocation, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProviderType, ProviderTypesService, ProvidersService, PublicBookingService, PublicCalendarService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenueTypesService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ResolveSecureAccessTokenRequest, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionEmailWaitlistPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, SortIndex, Southwest, StripeAccount, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpcomingLayout, UpdateCustomFieldOption, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenueType, VenueTypePage, VenueTypePatch, VenueTypePost, VenueTypeService, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistConversionStatsResponseDto, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService, Wallet, WalletDeductionPreview, WalletPage, WalletPatch, WalletPost, WalletRemoveCreditPost, WalletTopUpPost, WalletTrackingLevel, WalletTransaction, WalletTransactionPage, WalletTransactionPatch, WalletTransactionPost, WalletTransactionType, WalletTransactionsService, WalletsService, WebsiteHomepage };