reach-api-sdk 1.0.154 → 1.0.155
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/reach-sdk.d.ts +55 -10
- package/dist/reach-sdk.js +24 -2
- package/package.json +1 -1
- package/src/definition/swagger.yaml +80 -0
- package/src/index.ts +1 -0
- package/src/models/Amenity.ts +3 -0
- package/src/models/AmenityType.ts +12 -0
- package/src/services/GenericActivityService.ts +30 -0
- package/src/services/PublicGenericActivityService.ts +24 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -844,6 +844,14 @@ declare class ActivityPerformanceService {
|
|
|
844
844
|
}): CancelablePromise<Array<ActivityPerformance>>;
|
|
845
845
|
}
|
|
846
846
|
|
|
847
|
+
/**
|
|
848
|
+
* Controls the DealType.
|
|
849
|
+
*/
|
|
850
|
+
declare enum AmenityType {
|
|
851
|
+
GENERAL = "General",
|
|
852
|
+
ACCESSIBILITY = "Accessibility"
|
|
853
|
+
}
|
|
854
|
+
|
|
847
855
|
/**
|
|
848
856
|
* Represents a Country within the Reach application.
|
|
849
857
|
*/
|
|
@@ -860,6 +868,7 @@ type Amenity = {
|
|
|
860
868
|
* Gets or sets the countries Code.
|
|
861
869
|
*/
|
|
862
870
|
name?: string | null;
|
|
871
|
+
type?: AmenityType;
|
|
863
872
|
};
|
|
864
873
|
|
|
865
874
|
declare class AmenityService {
|
|
@@ -13116,7 +13125,7 @@ declare class GenericActivityService {
|
|
|
13116
13125
|
* @returns GenericActivity Success
|
|
13117
13126
|
* @throws ApiError
|
|
13118
13127
|
*/
|
|
13119
|
-
getUpcoming({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13128
|
+
getUpcoming({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13120
13129
|
/**
|
|
13121
13130
|
* Gets or sets the wildcard for use in a query search.
|
|
13122
13131
|
*/
|
|
@@ -13229,6 +13238,10 @@ declare class GenericActivityService {
|
|
|
13229
13238
|
* Gets or sets AdditionalSupport.
|
|
13230
13239
|
*/
|
|
13231
13240
|
additionalSupport?: Array<string>;
|
|
13241
|
+
/**
|
|
13242
|
+
* Gets or sets AmenityId.
|
|
13243
|
+
*/
|
|
13244
|
+
amenity?: Array<number>;
|
|
13232
13245
|
/**
|
|
13233
13246
|
* Gets or sets the page number for paged queries.
|
|
13234
13247
|
*/
|
|
@@ -13290,7 +13303,7 @@ declare class GenericActivityService {
|
|
|
13290
13303
|
* @returns boolean Success
|
|
13291
13304
|
* @throws ApiError
|
|
13292
13305
|
*/
|
|
13293
|
-
exists({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13306
|
+
exists({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13294
13307
|
/**
|
|
13295
13308
|
* Gets or sets the wildcard for use in a query search.
|
|
13296
13309
|
*/
|
|
@@ -13403,6 +13416,10 @@ declare class GenericActivityService {
|
|
|
13403
13416
|
* Gets or sets AdditionalSupport.
|
|
13404
13417
|
*/
|
|
13405
13418
|
additionalSupport?: Array<string>;
|
|
13419
|
+
/**
|
|
13420
|
+
* Gets or sets AmenityId.
|
|
13421
|
+
*/
|
|
13422
|
+
amenity?: Array<number>;
|
|
13406
13423
|
/**
|
|
13407
13424
|
* Gets or sets the page number for paged queries.
|
|
13408
13425
|
*/
|
|
@@ -13453,7 +13470,7 @@ declare class GenericActivityService {
|
|
|
13453
13470
|
* @returns GenericActivityPage Success
|
|
13454
13471
|
* @throws ApiError
|
|
13455
13472
|
*/
|
|
13456
|
-
getPage({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13473
|
+
getPage({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13457
13474
|
/**
|
|
13458
13475
|
* Gets or sets the wildcard for use in a query search.
|
|
13459
13476
|
*/
|
|
@@ -13566,6 +13583,10 @@ declare class GenericActivityService {
|
|
|
13566
13583
|
* Gets or sets AdditionalSupport.
|
|
13567
13584
|
*/
|
|
13568
13585
|
additionalSupport?: Array<string>;
|
|
13586
|
+
/**
|
|
13587
|
+
* Gets or sets AmenityId.
|
|
13588
|
+
*/
|
|
13589
|
+
amenity?: Array<number>;
|
|
13569
13590
|
/**
|
|
13570
13591
|
* Gets or sets the page number for paged queries.
|
|
13571
13592
|
*/
|
|
@@ -13616,7 +13637,7 @@ declare class GenericActivityService {
|
|
|
13616
13637
|
* @returns GenericActivity Success
|
|
13617
13638
|
* @throws ApiError
|
|
13618
13639
|
*/
|
|
13619
|
-
getListWithoutReferences({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13640
|
+
getListWithoutReferences({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13620
13641
|
/**
|
|
13621
13642
|
* Gets or sets the wildcard for use in a query search.
|
|
13622
13643
|
*/
|
|
@@ -13729,6 +13750,10 @@ declare class GenericActivityService {
|
|
|
13729
13750
|
* Gets or sets AdditionalSupport.
|
|
13730
13751
|
*/
|
|
13731
13752
|
additionalSupport?: Array<string>;
|
|
13753
|
+
/**
|
|
13754
|
+
* Gets or sets AmenityId.
|
|
13755
|
+
*/
|
|
13756
|
+
amenity?: Array<number>;
|
|
13732
13757
|
/**
|
|
13733
13758
|
* Gets or sets the page number for paged queries.
|
|
13734
13759
|
*/
|
|
@@ -13779,7 +13804,7 @@ declare class GenericActivityService {
|
|
|
13779
13804
|
* @returns GenericActivity Success
|
|
13780
13805
|
* @throws ApiError
|
|
13781
13806
|
*/
|
|
13782
|
-
getListIdName({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13807
|
+
getListIdName({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13783
13808
|
/**
|
|
13784
13809
|
* Gets or sets the wildcard for use in a query search.
|
|
13785
13810
|
*/
|
|
@@ -13892,6 +13917,10 @@ declare class GenericActivityService {
|
|
|
13892
13917
|
* Gets or sets AdditionalSupport.
|
|
13893
13918
|
*/
|
|
13894
13919
|
additionalSupport?: Array<string>;
|
|
13920
|
+
/**
|
|
13921
|
+
* Gets or sets AmenityId.
|
|
13922
|
+
*/
|
|
13923
|
+
amenity?: Array<number>;
|
|
13895
13924
|
/**
|
|
13896
13925
|
* Gets or sets the page number for paged queries.
|
|
13897
13926
|
*/
|
|
@@ -25915,7 +25944,7 @@ declare class PublicGenericActivityService {
|
|
|
25915
25944
|
* @returns GenericActivityPage Success
|
|
25916
25945
|
* @throws ApiError
|
|
25917
25946
|
*/
|
|
25918
|
-
getPage({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
25947
|
+
getPage({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
25919
25948
|
xTenantSubdomain?: string;
|
|
25920
25949
|
/**
|
|
25921
25950
|
* Gets or sets the wildcard for use in a query search.
|
|
@@ -26029,6 +26058,10 @@ declare class PublicGenericActivityService {
|
|
|
26029
26058
|
* Gets or sets AdditionalSupport.
|
|
26030
26059
|
*/
|
|
26031
26060
|
additionalSupport?: Array<string>;
|
|
26061
|
+
/**
|
|
26062
|
+
* Gets or sets AmenityId.
|
|
26063
|
+
*/
|
|
26064
|
+
amenity?: Array<number>;
|
|
26032
26065
|
/**
|
|
26033
26066
|
* Gets or sets the page number for paged queries.
|
|
26034
26067
|
*/
|
|
@@ -26079,7 +26112,7 @@ declare class PublicGenericActivityService {
|
|
|
26079
26112
|
* @returns GenericActivityPage Success
|
|
26080
26113
|
* @throws ApiError
|
|
26081
26114
|
*/
|
|
26082
|
-
getPage1({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
26115
|
+
getPage1({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
26083
26116
|
/**
|
|
26084
26117
|
* Gets or sets the wildcard for use in a query search.
|
|
26085
26118
|
*/
|
|
@@ -26192,6 +26225,10 @@ declare class PublicGenericActivityService {
|
|
|
26192
26225
|
* Gets or sets AdditionalSupport.
|
|
26193
26226
|
*/
|
|
26194
26227
|
additionalSupport?: Array<string>;
|
|
26228
|
+
/**
|
|
26229
|
+
* Gets or sets AmenityId.
|
|
26230
|
+
*/
|
|
26231
|
+
amenity?: Array<number>;
|
|
26195
26232
|
/**
|
|
26196
26233
|
* Gets or sets the page number for paged queries.
|
|
26197
26234
|
*/
|
|
@@ -26242,7 +26279,7 @@ declare class PublicGenericActivityService {
|
|
|
26242
26279
|
* @returns GenericActivity Success
|
|
26243
26280
|
* @throws ApiError
|
|
26244
26281
|
*/
|
|
26245
|
-
getUpcoming({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
26282
|
+
getUpcoming({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
26246
26283
|
/**
|
|
26247
26284
|
* The tenants subdomain.
|
|
26248
26285
|
*/
|
|
@@ -26359,6 +26396,10 @@ declare class PublicGenericActivityService {
|
|
|
26359
26396
|
* Gets or sets AdditionalSupport.
|
|
26360
26397
|
*/
|
|
26361
26398
|
additionalSupport?: Array<string>;
|
|
26399
|
+
/**
|
|
26400
|
+
* Gets or sets AmenityId.
|
|
26401
|
+
*/
|
|
26402
|
+
amenity?: Array<number>;
|
|
26362
26403
|
/**
|
|
26363
26404
|
* Gets or sets the page number for paged queries.
|
|
26364
26405
|
*/
|
|
@@ -26432,7 +26473,7 @@ declare class PublicGenericActivityService {
|
|
|
26432
26473
|
* @returns boolean Success
|
|
26433
26474
|
* @throws ApiError
|
|
26434
26475
|
*/
|
|
26435
|
-
exists({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
26476
|
+
exists({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
26436
26477
|
/**
|
|
26437
26478
|
* The tenants subdomain.
|
|
26438
26479
|
*/
|
|
@@ -26549,6 +26590,10 @@ declare class PublicGenericActivityService {
|
|
|
26549
26590
|
* Gets or sets AdditionalSupport.
|
|
26550
26591
|
*/
|
|
26551
26592
|
additionalSupport?: Array<string>;
|
|
26593
|
+
/**
|
|
26594
|
+
* Gets or sets AmenityId.
|
|
26595
|
+
*/
|
|
26596
|
+
amenity?: Array<number>;
|
|
26552
26597
|
/**
|
|
26553
26598
|
* Gets or sets the page number for paged queries.
|
|
26554
26599
|
*/
|
|
@@ -51630,4 +51675,4 @@ type ValidationResultModel = {
|
|
|
51630
51675
|
readonly errors?: Array<ValidationError> | null;
|
|
51631
51676
|
};
|
|
51632
51677
|
|
|
51633
|
-
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EnglandGolfReportService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, 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, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProvidersService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, 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, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|
|
51678
|
+
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EnglandGolfReportService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, 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, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProvidersService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, 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, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|
package/dist/reach-sdk.js
CHANGED
|
@@ -7686,6 +7686,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7686
7686
|
gender,
|
|
7687
7687
|
periodsOfWeek,
|
|
7688
7688
|
additionalSupport,
|
|
7689
|
+
amenity,
|
|
7689
7690
|
pageNumber,
|
|
7690
7691
|
take,
|
|
7691
7692
|
skip,
|
|
@@ -7730,6 +7731,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7730
7731
|
Gender: gender,
|
|
7731
7732
|
PeriodsOfWeek: periodsOfWeek,
|
|
7732
7733
|
AdditionalSupport: additionalSupport,
|
|
7734
|
+
Amenity: amenity,
|
|
7733
7735
|
PageNumber: pageNumber,
|
|
7734
7736
|
Take: take,
|
|
7735
7737
|
Skip: skip,
|
|
@@ -7804,6 +7806,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7804
7806
|
gender,
|
|
7805
7807
|
periodsOfWeek,
|
|
7806
7808
|
additionalSupport,
|
|
7809
|
+
amenity,
|
|
7807
7810
|
pageNumber,
|
|
7808
7811
|
take,
|
|
7809
7812
|
skip,
|
|
@@ -7848,6 +7851,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7848
7851
|
Gender: gender,
|
|
7849
7852
|
PeriodsOfWeek: periodsOfWeek,
|
|
7850
7853
|
AdditionalSupport: additionalSupport,
|
|
7854
|
+
Amenity: amenity,
|
|
7851
7855
|
PageNumber: pageNumber,
|
|
7852
7856
|
Take: take,
|
|
7853
7857
|
Skip: skip,
|
|
@@ -7901,6 +7905,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7901
7905
|
gender,
|
|
7902
7906
|
periodsOfWeek,
|
|
7903
7907
|
additionalSupport,
|
|
7908
|
+
amenity,
|
|
7904
7909
|
pageNumber,
|
|
7905
7910
|
take,
|
|
7906
7911
|
skip,
|
|
@@ -7945,6 +7950,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7945
7950
|
Gender: gender,
|
|
7946
7951
|
PeriodsOfWeek: periodsOfWeek,
|
|
7947
7952
|
AdditionalSupport: additionalSupport,
|
|
7953
|
+
Amenity: amenity,
|
|
7948
7954
|
PageNumber: pageNumber,
|
|
7949
7955
|
Take: take,
|
|
7950
7956
|
Skip: skip,
|
|
@@ -7998,6 +8004,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7998
8004
|
gender,
|
|
7999
8005
|
periodsOfWeek,
|
|
8000
8006
|
additionalSupport,
|
|
8007
|
+
amenity,
|
|
8001
8008
|
pageNumber,
|
|
8002
8009
|
take,
|
|
8003
8010
|
skip,
|
|
@@ -8042,6 +8049,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8042
8049
|
Gender: gender,
|
|
8043
8050
|
PeriodsOfWeek: periodsOfWeek,
|
|
8044
8051
|
AdditionalSupport: additionalSupport,
|
|
8052
|
+
Amenity: amenity,
|
|
8045
8053
|
PageNumber: pageNumber,
|
|
8046
8054
|
Take: take,
|
|
8047
8055
|
Skip: skip,
|
|
@@ -8095,6 +8103,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8095
8103
|
gender,
|
|
8096
8104
|
periodsOfWeek,
|
|
8097
8105
|
additionalSupport,
|
|
8106
|
+
amenity,
|
|
8098
8107
|
pageNumber,
|
|
8099
8108
|
take,
|
|
8100
8109
|
skip,
|
|
@@ -8139,6 +8148,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8139
8148
|
Gender: gender,
|
|
8140
8149
|
PeriodsOfWeek: periodsOfWeek,
|
|
8141
8150
|
AdditionalSupport: additionalSupport,
|
|
8151
|
+
Amenity: amenity,
|
|
8142
8152
|
PageNumber: pageNumber,
|
|
8143
8153
|
Take: take,
|
|
8144
8154
|
Skip: skip,
|
|
@@ -17481,6 +17491,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
17481
17491
|
gender,
|
|
17482
17492
|
periodsOfWeek,
|
|
17483
17493
|
additionalSupport,
|
|
17494
|
+
amenity,
|
|
17484
17495
|
pageNumber,
|
|
17485
17496
|
take,
|
|
17486
17497
|
skip,
|
|
@@ -17528,6 +17539,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
17528
17539
|
Gender: gender,
|
|
17529
17540
|
PeriodsOfWeek: periodsOfWeek,
|
|
17530
17541
|
AdditionalSupport: additionalSupport,
|
|
17542
|
+
Amenity: amenity,
|
|
17531
17543
|
PageNumber: pageNumber,
|
|
17532
17544
|
Take: take,
|
|
17533
17545
|
Skip: skip,
|
|
@@ -17581,6 +17593,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
17581
17593
|
gender,
|
|
17582
17594
|
periodsOfWeek,
|
|
17583
17595
|
additionalSupport,
|
|
17596
|
+
amenity,
|
|
17584
17597
|
pageNumber,
|
|
17585
17598
|
take,
|
|
17586
17599
|
skip,
|
|
@@ -17625,6 +17638,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
17625
17638
|
Gender: gender,
|
|
17626
17639
|
PeriodsOfWeek: periodsOfWeek,
|
|
17627
17640
|
AdditionalSupport: additionalSupport,
|
|
17641
|
+
Amenity: amenity,
|
|
17628
17642
|
PageNumber: pageNumber,
|
|
17629
17643
|
Take: take,
|
|
17630
17644
|
Skip: skip,
|
|
@@ -17679,6 +17693,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
17679
17693
|
gender,
|
|
17680
17694
|
periodsOfWeek,
|
|
17681
17695
|
additionalSupport,
|
|
17696
|
+
amenity,
|
|
17682
17697
|
pageNumber,
|
|
17683
17698
|
take,
|
|
17684
17699
|
skip,
|
|
@@ -17726,6 +17741,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
17726
17741
|
Gender: gender,
|
|
17727
17742
|
PeriodsOfWeek: periodsOfWeek,
|
|
17728
17743
|
AdditionalSupport: additionalSupport,
|
|
17744
|
+
Amenity: amenity,
|
|
17729
17745
|
PageNumber: pageNumber,
|
|
17730
17746
|
Take: take,
|
|
17731
17747
|
Skip: skip,
|
|
@@ -17807,6 +17823,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
17807
17823
|
gender,
|
|
17808
17824
|
periodsOfWeek,
|
|
17809
17825
|
additionalSupport,
|
|
17826
|
+
amenity,
|
|
17810
17827
|
pageNumber,
|
|
17811
17828
|
take,
|
|
17812
17829
|
skip,
|
|
@@ -17854,6 +17871,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
17854
17871
|
Gender: gender,
|
|
17855
17872
|
PeriodsOfWeek: periodsOfWeek,
|
|
17856
17873
|
AdditionalSupport: additionalSupport,
|
|
17874
|
+
Amenity: amenity,
|
|
17857
17875
|
PageNumber: pageNumber,
|
|
17858
17876
|
Take: take,
|
|
17859
17877
|
Skip: skip,
|
|
@@ -38776,7 +38794,11 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
38776
38794
|
AdvanceBooking2["OPTIONAL"] = "Optional";
|
|
38777
38795
|
AdvanceBooking2["UNAVAILABLE"] = "Unavailable";
|
|
38778
38796
|
return AdvanceBooking2;
|
|
38779
|
-
})(AdvanceBooking || {});var
|
|
38797
|
+
})(AdvanceBooking || {});var AmenityType = /* @__PURE__ */ ((AmenityType2) => {
|
|
38798
|
+
AmenityType2["GENERAL"] = "General";
|
|
38799
|
+
AmenityType2["ACCESSIBILITY"] = "Accessibility";
|
|
38800
|
+
return AmenityType2;
|
|
38801
|
+
})(AmenityType || {});var ApplicationRole = /* @__PURE__ */ ((ApplicationRole2) => {
|
|
38780
38802
|
ApplicationRole2["OWNER"] = "Owner";
|
|
38781
38803
|
ApplicationRole2["ADMIN"] = "Admin";
|
|
38782
38804
|
ApplicationRole2["USER"] = "User";
|
|
@@ -39106,4 +39128,4 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
39106
39128
|
TenantTier2["ENTERPRISE"] = "Enterprise";
|
|
39107
39129
|
TenantTier2["PRO"] = "Pro";
|
|
39108
39130
|
return TenantTier2;
|
|
39109
|
-
})(TenantTier || {});export{ActivityPerformanceService,ActivityService,ActivityType,AdvanceBooking,AmenityService,ApiClient,ApiError,AppUserRole,ApplicationRole,AttendeesService,BadEnglandReportService,BaseHttpRequest,BookingService,BookingStatus,CancelError,CancelablePromise,CancellationPoliciesService,ChatService,ContactOnConfirmation,CountryService,CourseBookingCutoff,CourseSearchSortBy,CourseSessionSchedulesService,CourseSessionsService,CourseStatus,CoursesService,CustomDateRange,CustomerCancellationOption,CustomerType,CustomersService,DayOfWeek,DealActivitiesService,DealDiscountType,DealTarget,DealType,DealsService,EmailReminderSchedulesService,EmailSettingsService,EnglandGolfReportService,FacilitiesService,FacilityIndividualsService,FacilityIndividualsType,FilestackService,Gender,GenericActivityService,GeocodeService,HelpersService,HereAutocompleteLookupService,HttpStatusCode,ImageLibraryCategoryService,ImageLibraryImageService,ImageUploadHistoryService,ImagesService,InviteStatus,LeasingService,LocationsReportService,LoqatePlacesService,NotificationQueueService,NotificationSettingsService,NotificationType,OffersService,OpenAPI,OpenactiveFeedIntermediateService,OpenactiveFeedItemService,OpportunityRegisterService,OpportunityRegisterStatus,OpportunityType,OrderItemReportService,OrderItemStatus,OrderItemsService,OrderSource,OrderStage,OrdersService,OrgCourseUtilisationService,OrganisationApplicationFeeHandling,OrganisationAvailableChannel,OrganisationRefundPolicy,OrganisationTaxMode,OrganisationType,PaymentMethod,PaymentsService,PeriodsOfWeek,PermissionsService,PlacesService,Prepayment,ProgrammesService,ProvidersService,PublicBookingService,PublicCoursesService,PublicCustomersService,PublicFacilitiesService,PublicFilestackWebhookService,PublicGenericActivityService,PublicHealthCheckService,PublicLeasingService,PublicNetworksService,PublicOpportunityRegisterService,PublicOrderItemsService,PublicOrderTokensService,PublicOrdersService,PublicProgrammesService,PublicProvidersService,PublicScheduledSessionsService,PublicSessionsService,PublicSlotsService,PublicStripeWebhookService,PublicSurveyCompletionLogsService,PublicSurveyQuestionsService,PublicSurveysService,PublicTenantsService,PublicVenuesService,PublicWaitlistActivityService,PublicWaitlistOpportunityService,ReachEntity,ReachOperation,RecentOrderActivityReportService,RefundSource,RefundStatus,RegisterReportService,RescheduleLogService,ScheduleStatus,ScheduledSessionSearchSortBy,ScheduledSessionsSchedulesService,ScheduledSessionsService,SearchSortOrderDirection,SessionType,SessionsService,SlotAvailabilityStatus,SlotOffersService,SlotScheduleOffersService,SlotSchedulesService,SlotStatus,SlotsService,StripeAccountService,SurfacesService,SurveyAnswersService,SurveyCompletionLogService,SurveyQuestionType,SurveyQuestionsService,SurveyQuestionsTarget,SurveyReportExtendedService,SurveyResponseMode,SurveyType,SurveysService,TemplateDetailsService,TemplateOffersService,TemplatesService,TenantTier,TenantWebsiteSettingsService,TenantsService,TimezoneService,TotalRevenueReportService,UnsplashService,UserPermissionsService,UserProgrammesService,UserProvidersService,UsersService,VenueManagersService,VenuePerformanceService,VenuesReportService,VenuesService,WaitlistActivityReportService,WaitlistActivityService,WaitlistOpportunityReportService,WaitlistOpportunityService};
|
|
39131
|
+
})(TenantTier || {});export{ActivityPerformanceService,ActivityService,ActivityType,AdvanceBooking,AmenityService,AmenityType,ApiClient,ApiError,AppUserRole,ApplicationRole,AttendeesService,BadEnglandReportService,BaseHttpRequest,BookingService,BookingStatus,CancelError,CancelablePromise,CancellationPoliciesService,ChatService,ContactOnConfirmation,CountryService,CourseBookingCutoff,CourseSearchSortBy,CourseSessionSchedulesService,CourseSessionsService,CourseStatus,CoursesService,CustomDateRange,CustomerCancellationOption,CustomerType,CustomersService,DayOfWeek,DealActivitiesService,DealDiscountType,DealTarget,DealType,DealsService,EmailReminderSchedulesService,EmailSettingsService,EnglandGolfReportService,FacilitiesService,FacilityIndividualsService,FacilityIndividualsType,FilestackService,Gender,GenericActivityService,GeocodeService,HelpersService,HereAutocompleteLookupService,HttpStatusCode,ImageLibraryCategoryService,ImageLibraryImageService,ImageUploadHistoryService,ImagesService,InviteStatus,LeasingService,LocationsReportService,LoqatePlacesService,NotificationQueueService,NotificationSettingsService,NotificationType,OffersService,OpenAPI,OpenactiveFeedIntermediateService,OpenactiveFeedItemService,OpportunityRegisterService,OpportunityRegisterStatus,OpportunityType,OrderItemReportService,OrderItemStatus,OrderItemsService,OrderSource,OrderStage,OrdersService,OrgCourseUtilisationService,OrganisationApplicationFeeHandling,OrganisationAvailableChannel,OrganisationRefundPolicy,OrganisationTaxMode,OrganisationType,PaymentMethod,PaymentsService,PeriodsOfWeek,PermissionsService,PlacesService,Prepayment,ProgrammesService,ProvidersService,PublicBookingService,PublicCoursesService,PublicCustomersService,PublicFacilitiesService,PublicFilestackWebhookService,PublicGenericActivityService,PublicHealthCheckService,PublicLeasingService,PublicNetworksService,PublicOpportunityRegisterService,PublicOrderItemsService,PublicOrderTokensService,PublicOrdersService,PublicProgrammesService,PublicProvidersService,PublicScheduledSessionsService,PublicSessionsService,PublicSlotsService,PublicStripeWebhookService,PublicSurveyCompletionLogsService,PublicSurveyQuestionsService,PublicSurveysService,PublicTenantsService,PublicVenuesService,PublicWaitlistActivityService,PublicWaitlistOpportunityService,ReachEntity,ReachOperation,RecentOrderActivityReportService,RefundSource,RefundStatus,RegisterReportService,RescheduleLogService,ScheduleStatus,ScheduledSessionSearchSortBy,ScheduledSessionsSchedulesService,ScheduledSessionsService,SearchSortOrderDirection,SessionType,SessionsService,SlotAvailabilityStatus,SlotOffersService,SlotScheduleOffersService,SlotSchedulesService,SlotStatus,SlotsService,StripeAccountService,SurfacesService,SurveyAnswersService,SurveyCompletionLogService,SurveyQuestionType,SurveyQuestionsService,SurveyQuestionsTarget,SurveyReportExtendedService,SurveyResponseMode,SurveyType,SurveysService,TemplateDetailsService,TemplateOffersService,TemplatesService,TenantTier,TenantWebsiteSettingsService,TenantsService,TimezoneService,TotalRevenueReportService,UnsplashService,UserPermissionsService,UserProgrammesService,UserProvidersService,UsersService,VenueManagersService,VenuePerformanceService,VenuesReportService,VenuesService,WaitlistActivityReportService,WaitlistActivityService,WaitlistOpportunityReportService,WaitlistOpportunityService};
|
package/package.json
CHANGED
|
@@ -22086,6 +22086,14 @@ paths:
|
|
|
22086
22086
|
type: array
|
|
22087
22087
|
items:
|
|
22088
22088
|
type: string
|
|
22089
|
+
- name: Amenity
|
|
22090
|
+
in: query
|
|
22091
|
+
description: Gets or sets AmenityId.
|
|
22092
|
+
schema:
|
|
22093
|
+
type: array
|
|
22094
|
+
items:
|
|
22095
|
+
type: integer
|
|
22096
|
+
format: int32
|
|
22089
22097
|
- name: PageNumber
|
|
22090
22098
|
in: query
|
|
22091
22099
|
description: Gets or sets the page number for paged queries.
|
|
@@ -22434,6 +22442,14 @@ paths:
|
|
|
22434
22442
|
type: array
|
|
22435
22443
|
items:
|
|
22436
22444
|
type: string
|
|
22445
|
+
- name: Amenity
|
|
22446
|
+
in: query
|
|
22447
|
+
description: Gets or sets AmenityId.
|
|
22448
|
+
schema:
|
|
22449
|
+
type: array
|
|
22450
|
+
items:
|
|
22451
|
+
type: integer
|
|
22452
|
+
format: int32
|
|
22437
22453
|
- name: PageNumber
|
|
22438
22454
|
in: query
|
|
22439
22455
|
description: Gets or sets the page number for paged queries.
|
|
@@ -22713,6 +22729,14 @@ paths:
|
|
|
22713
22729
|
type: array
|
|
22714
22730
|
items:
|
|
22715
22731
|
type: string
|
|
22732
|
+
- name: Amenity
|
|
22733
|
+
in: query
|
|
22734
|
+
description: Gets or sets AmenityId.
|
|
22735
|
+
schema:
|
|
22736
|
+
type: array
|
|
22737
|
+
items:
|
|
22738
|
+
type: integer
|
|
22739
|
+
format: int32
|
|
22716
22740
|
- name: PageNumber
|
|
22717
22741
|
in: query
|
|
22718
22742
|
description: Gets or sets the page number for paged queries.
|
|
@@ -22992,6 +23016,14 @@ paths:
|
|
|
22992
23016
|
type: array
|
|
22993
23017
|
items:
|
|
22994
23018
|
type: string
|
|
23019
|
+
- name: Amenity
|
|
23020
|
+
in: query
|
|
23021
|
+
description: Gets or sets AmenityId.
|
|
23022
|
+
schema:
|
|
23023
|
+
type: array
|
|
23024
|
+
items:
|
|
23025
|
+
type: integer
|
|
23026
|
+
format: int32
|
|
22995
23027
|
- name: PageNumber
|
|
22996
23028
|
in: query
|
|
22997
23029
|
description: Gets or sets the page number for paged queries.
|
|
@@ -23277,6 +23309,14 @@ paths:
|
|
|
23277
23309
|
type: array
|
|
23278
23310
|
items:
|
|
23279
23311
|
type: string
|
|
23312
|
+
- name: Amenity
|
|
23313
|
+
in: query
|
|
23314
|
+
description: Gets or sets AmenityId.
|
|
23315
|
+
schema:
|
|
23316
|
+
type: array
|
|
23317
|
+
items:
|
|
23318
|
+
type: integer
|
|
23319
|
+
format: int32
|
|
23280
23320
|
- name: PageNumber
|
|
23281
23321
|
in: query
|
|
23282
23322
|
description: Gets or sets the page number for paged queries.
|
|
@@ -51285,6 +51325,14 @@ paths:
|
|
|
51285
51325
|
type: array
|
|
51286
51326
|
items:
|
|
51287
51327
|
type: string
|
|
51328
|
+
- name: Amenity
|
|
51329
|
+
in: query
|
|
51330
|
+
description: Gets or sets AmenityId.
|
|
51331
|
+
schema:
|
|
51332
|
+
type: array
|
|
51333
|
+
items:
|
|
51334
|
+
type: integer
|
|
51335
|
+
format: int32
|
|
51288
51336
|
- name: PageNumber
|
|
51289
51337
|
in: query
|
|
51290
51338
|
description: Gets or sets the page number for paged queries.
|
|
@@ -51564,6 +51612,14 @@ paths:
|
|
|
51564
51612
|
type: array
|
|
51565
51613
|
items:
|
|
51566
51614
|
type: string
|
|
51615
|
+
- name: Amenity
|
|
51616
|
+
in: query
|
|
51617
|
+
description: Gets or sets AmenityId.
|
|
51618
|
+
schema:
|
|
51619
|
+
type: array
|
|
51620
|
+
items:
|
|
51621
|
+
type: integer
|
|
51622
|
+
format: int32
|
|
51567
51623
|
- name: PageNumber
|
|
51568
51624
|
in: query
|
|
51569
51625
|
description: Gets or sets the page number for paged queries.
|
|
@@ -51848,6 +51904,14 @@ paths:
|
|
|
51848
51904
|
type: array
|
|
51849
51905
|
items:
|
|
51850
51906
|
type: string
|
|
51907
|
+
- name: Amenity
|
|
51908
|
+
in: query
|
|
51909
|
+
description: Gets or sets AmenityId.
|
|
51910
|
+
schema:
|
|
51911
|
+
type: array
|
|
51912
|
+
items:
|
|
51913
|
+
type: integer
|
|
51914
|
+
format: int32
|
|
51851
51915
|
- name: PageNumber
|
|
51852
51916
|
in: query
|
|
51853
51917
|
description: Gets or sets the page number for paged queries.
|
|
@@ -52224,6 +52288,14 @@ paths:
|
|
|
52224
52288
|
type: array
|
|
52225
52289
|
items:
|
|
52226
52290
|
type: string
|
|
52291
|
+
- name: Amenity
|
|
52292
|
+
in: query
|
|
52293
|
+
description: Gets or sets AmenityId.
|
|
52294
|
+
schema:
|
|
52295
|
+
type: array
|
|
52296
|
+
items:
|
|
52297
|
+
type: integer
|
|
52298
|
+
format: int32
|
|
52227
52299
|
- name: PageNumber
|
|
52228
52300
|
in: query
|
|
52229
52301
|
description: Gets or sets the page number for paged queries.
|
|
@@ -113864,8 +113936,16 @@ components:
|
|
|
113864
113936
|
type: string
|
|
113865
113937
|
description: Gets or sets the countries Code.
|
|
113866
113938
|
nullable: true
|
|
113939
|
+
type:
|
|
113940
|
+
$ref: '#/components/schemas/AmenityType'
|
|
113867
113941
|
additionalProperties: false
|
|
113868
113942
|
description: Represents a Country within the Reach application.
|
|
113943
|
+
AmenityType:
|
|
113944
|
+
enum:
|
|
113945
|
+
- General
|
|
113946
|
+
- Accessibility
|
|
113947
|
+
type: string
|
|
113948
|
+
description: Controls the DealType.
|
|
113869
113949
|
AppUserRole:
|
|
113870
113950
|
enum:
|
|
113871
113951
|
- Owner
|
package/src/index.ts
CHANGED
|
@@ -19,6 +19,7 @@ export { ActivityType } from './models/ActivityType';
|
|
|
19
19
|
export type { AddressComponent } from './models/AddressComponent';
|
|
20
20
|
export { AdvanceBooking } from './models/AdvanceBooking';
|
|
21
21
|
export type { Amenity } from './models/Amenity';
|
|
22
|
+
export { AmenityType } from './models/AmenityType';
|
|
22
23
|
export { ApplicationRole } from './models/ApplicationRole';
|
|
23
24
|
export { AppUserRole } from './models/AppUserRole';
|
|
24
25
|
export type { Attendee } from './models/Attendee';
|
package/src/models/Amenity.ts
CHANGED
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
|
|
6
|
+
import type { AmenityType } from './AmenityType';
|
|
7
|
+
|
|
6
8
|
/**
|
|
7
9
|
* Represents a Country within the Reach application.
|
|
8
10
|
*/
|
|
@@ -19,4 +21,5 @@ export type Amenity = {
|
|
|
19
21
|
* Gets or sets the countries Code.
|
|
20
22
|
*/
|
|
21
23
|
name?: string | null;
|
|
24
|
+
type?: AmenityType;
|
|
22
25
|
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Controls the DealType.
|
|
8
|
+
*/
|
|
9
|
+
export enum AmenityType {
|
|
10
|
+
GENERAL = 'General',
|
|
11
|
+
ACCESSIBILITY = 'Accessibility',
|
|
12
|
+
}
|
|
@@ -165,6 +165,7 @@ export class GenericActivityService {
|
|
|
165
165
|
gender,
|
|
166
166
|
periodsOfWeek,
|
|
167
167
|
additionalSupport,
|
|
168
|
+
amenity,
|
|
168
169
|
pageNumber,
|
|
169
170
|
take,
|
|
170
171
|
skip,
|
|
@@ -289,6 +290,10 @@ export class GenericActivityService {
|
|
|
289
290
|
* Gets or sets AdditionalSupport.
|
|
290
291
|
*/
|
|
291
292
|
additionalSupport?: Array<string>;
|
|
293
|
+
/**
|
|
294
|
+
* Gets or sets AmenityId.
|
|
295
|
+
*/
|
|
296
|
+
amenity?: Array<number>;
|
|
292
297
|
/**
|
|
293
298
|
* Gets or sets the page number for paged queries.
|
|
294
299
|
*/
|
|
@@ -366,6 +371,7 @@ export class GenericActivityService {
|
|
|
366
371
|
Gender: gender,
|
|
367
372
|
PeriodsOfWeek: periodsOfWeek,
|
|
368
373
|
AdditionalSupport: additionalSupport,
|
|
374
|
+
Amenity: amenity,
|
|
369
375
|
PageNumber: pageNumber,
|
|
370
376
|
Take: take,
|
|
371
377
|
Skip: skip,
|
|
@@ -447,6 +453,7 @@ export class GenericActivityService {
|
|
|
447
453
|
gender,
|
|
448
454
|
periodsOfWeek,
|
|
449
455
|
additionalSupport,
|
|
456
|
+
amenity,
|
|
450
457
|
pageNumber,
|
|
451
458
|
take,
|
|
452
459
|
skip,
|
|
@@ -571,6 +578,10 @@ export class GenericActivityService {
|
|
|
571
578
|
* Gets or sets AdditionalSupport.
|
|
572
579
|
*/
|
|
573
580
|
additionalSupport?: Array<string>;
|
|
581
|
+
/**
|
|
582
|
+
* Gets or sets AmenityId.
|
|
583
|
+
*/
|
|
584
|
+
amenity?: Array<number>;
|
|
574
585
|
/**
|
|
575
586
|
* Gets or sets the page number for paged queries.
|
|
576
587
|
*/
|
|
@@ -648,6 +659,7 @@ export class GenericActivityService {
|
|
|
648
659
|
Gender: gender,
|
|
649
660
|
PeriodsOfWeek: periodsOfWeek,
|
|
650
661
|
AdditionalSupport: additionalSupport,
|
|
662
|
+
Amenity: amenity,
|
|
651
663
|
PageNumber: pageNumber,
|
|
652
664
|
Take: take,
|
|
653
665
|
Skip: skip,
|
|
@@ -702,6 +714,7 @@ export class GenericActivityService {
|
|
|
702
714
|
gender,
|
|
703
715
|
periodsOfWeek,
|
|
704
716
|
additionalSupport,
|
|
717
|
+
amenity,
|
|
705
718
|
pageNumber,
|
|
706
719
|
take,
|
|
707
720
|
skip,
|
|
@@ -826,6 +839,10 @@ export class GenericActivityService {
|
|
|
826
839
|
* Gets or sets AdditionalSupport.
|
|
827
840
|
*/
|
|
828
841
|
additionalSupport?: Array<string>;
|
|
842
|
+
/**
|
|
843
|
+
* Gets or sets AmenityId.
|
|
844
|
+
*/
|
|
845
|
+
amenity?: Array<number>;
|
|
829
846
|
/**
|
|
830
847
|
* Gets or sets the page number for paged queries.
|
|
831
848
|
*/
|
|
@@ -903,6 +920,7 @@ export class GenericActivityService {
|
|
|
903
920
|
Gender: gender,
|
|
904
921
|
PeriodsOfWeek: periodsOfWeek,
|
|
905
922
|
AdditionalSupport: additionalSupport,
|
|
923
|
+
Amenity: amenity,
|
|
906
924
|
PageNumber: pageNumber,
|
|
907
925
|
Take: take,
|
|
908
926
|
Skip: skip,
|
|
@@ -957,6 +975,7 @@ export class GenericActivityService {
|
|
|
957
975
|
gender,
|
|
958
976
|
periodsOfWeek,
|
|
959
977
|
additionalSupport,
|
|
978
|
+
amenity,
|
|
960
979
|
pageNumber,
|
|
961
980
|
take,
|
|
962
981
|
skip,
|
|
@@ -1081,6 +1100,10 @@ export class GenericActivityService {
|
|
|
1081
1100
|
* Gets or sets AdditionalSupport.
|
|
1082
1101
|
*/
|
|
1083
1102
|
additionalSupport?: Array<string>;
|
|
1103
|
+
/**
|
|
1104
|
+
* Gets or sets AmenityId.
|
|
1105
|
+
*/
|
|
1106
|
+
amenity?: Array<number>;
|
|
1084
1107
|
/**
|
|
1085
1108
|
* Gets or sets the page number for paged queries.
|
|
1086
1109
|
*/
|
|
@@ -1158,6 +1181,7 @@ export class GenericActivityService {
|
|
|
1158
1181
|
Gender: gender,
|
|
1159
1182
|
PeriodsOfWeek: periodsOfWeek,
|
|
1160
1183
|
AdditionalSupport: additionalSupport,
|
|
1184
|
+
Amenity: amenity,
|
|
1161
1185
|
PageNumber: pageNumber,
|
|
1162
1186
|
Take: take,
|
|
1163
1187
|
Skip: skip,
|
|
@@ -1212,6 +1236,7 @@ export class GenericActivityService {
|
|
|
1212
1236
|
gender,
|
|
1213
1237
|
periodsOfWeek,
|
|
1214
1238
|
additionalSupport,
|
|
1239
|
+
amenity,
|
|
1215
1240
|
pageNumber,
|
|
1216
1241
|
take,
|
|
1217
1242
|
skip,
|
|
@@ -1336,6 +1361,10 @@ export class GenericActivityService {
|
|
|
1336
1361
|
* Gets or sets AdditionalSupport.
|
|
1337
1362
|
*/
|
|
1338
1363
|
additionalSupport?: Array<string>;
|
|
1364
|
+
/**
|
|
1365
|
+
* Gets or sets AmenityId.
|
|
1366
|
+
*/
|
|
1367
|
+
amenity?: Array<number>;
|
|
1339
1368
|
/**
|
|
1340
1369
|
* Gets or sets the page number for paged queries.
|
|
1341
1370
|
*/
|
|
@@ -1413,6 +1442,7 @@ export class GenericActivityService {
|
|
|
1413
1442
|
Gender: gender,
|
|
1414
1443
|
PeriodsOfWeek: periodsOfWeek,
|
|
1415
1444
|
AdditionalSupport: additionalSupport,
|
|
1445
|
+
Amenity: amenity,
|
|
1416
1446
|
PageNumber: pageNumber,
|
|
1417
1447
|
Take: take,
|
|
1418
1448
|
Skip: skip,
|
|
@@ -78,6 +78,7 @@ export class PublicGenericActivityService {
|
|
|
78
78
|
gender,
|
|
79
79
|
periodsOfWeek,
|
|
80
80
|
additionalSupport,
|
|
81
|
+
amenity,
|
|
81
82
|
pageNumber,
|
|
82
83
|
take,
|
|
83
84
|
skip,
|
|
@@ -203,6 +204,10 @@ export class PublicGenericActivityService {
|
|
|
203
204
|
* Gets or sets AdditionalSupport.
|
|
204
205
|
*/
|
|
205
206
|
additionalSupport?: Array<string>;
|
|
207
|
+
/**
|
|
208
|
+
* Gets or sets AmenityId.
|
|
209
|
+
*/
|
|
210
|
+
amenity?: Array<number>;
|
|
206
211
|
/**
|
|
207
212
|
* Gets or sets the page number for paged queries.
|
|
208
213
|
*/
|
|
@@ -283,6 +288,7 @@ export class PublicGenericActivityService {
|
|
|
283
288
|
Gender: gender,
|
|
284
289
|
PeriodsOfWeek: periodsOfWeek,
|
|
285
290
|
AdditionalSupport: additionalSupport,
|
|
291
|
+
Amenity: amenity,
|
|
286
292
|
PageNumber: pageNumber,
|
|
287
293
|
Take: take,
|
|
288
294
|
Skip: skip,
|
|
@@ -337,6 +343,7 @@ export class PublicGenericActivityService {
|
|
|
337
343
|
gender,
|
|
338
344
|
periodsOfWeek,
|
|
339
345
|
additionalSupport,
|
|
346
|
+
amenity,
|
|
340
347
|
pageNumber,
|
|
341
348
|
take,
|
|
342
349
|
skip,
|
|
@@ -461,6 +468,10 @@ export class PublicGenericActivityService {
|
|
|
461
468
|
* Gets or sets AdditionalSupport.
|
|
462
469
|
*/
|
|
463
470
|
additionalSupport?: Array<string>;
|
|
471
|
+
/**
|
|
472
|
+
* Gets or sets AmenityId.
|
|
473
|
+
*/
|
|
474
|
+
amenity?: Array<number>;
|
|
464
475
|
/**
|
|
465
476
|
* Gets or sets the page number for paged queries.
|
|
466
477
|
*/
|
|
@@ -538,6 +549,7 @@ export class PublicGenericActivityService {
|
|
|
538
549
|
Gender: gender,
|
|
539
550
|
PeriodsOfWeek: periodsOfWeek,
|
|
540
551
|
AdditionalSupport: additionalSupport,
|
|
552
|
+
Amenity: amenity,
|
|
541
553
|
PageNumber: pageNumber,
|
|
542
554
|
Take: take,
|
|
543
555
|
Skip: skip,
|
|
@@ -593,6 +605,7 @@ export class PublicGenericActivityService {
|
|
|
593
605
|
gender,
|
|
594
606
|
periodsOfWeek,
|
|
595
607
|
additionalSupport,
|
|
608
|
+
amenity,
|
|
596
609
|
pageNumber,
|
|
597
610
|
take,
|
|
598
611
|
skip,
|
|
@@ -721,6 +734,10 @@ export class PublicGenericActivityService {
|
|
|
721
734
|
* Gets or sets AdditionalSupport.
|
|
722
735
|
*/
|
|
723
736
|
additionalSupport?: Array<string>;
|
|
737
|
+
/**
|
|
738
|
+
* Gets or sets AmenityId.
|
|
739
|
+
*/
|
|
740
|
+
amenity?: Array<number>;
|
|
724
741
|
/**
|
|
725
742
|
* Gets or sets the page number for paged queries.
|
|
726
743
|
*/
|
|
@@ -801,6 +818,7 @@ export class PublicGenericActivityService {
|
|
|
801
818
|
Gender: gender,
|
|
802
819
|
PeriodsOfWeek: periodsOfWeek,
|
|
803
820
|
AdditionalSupport: additionalSupport,
|
|
821
|
+
Amenity: amenity,
|
|
804
822
|
PageNumber: pageNumber,
|
|
805
823
|
Take: take,
|
|
806
824
|
Skip: skip,
|
|
@@ -901,6 +919,7 @@ export class PublicGenericActivityService {
|
|
|
901
919
|
gender,
|
|
902
920
|
periodsOfWeek,
|
|
903
921
|
additionalSupport,
|
|
922
|
+
amenity,
|
|
904
923
|
pageNumber,
|
|
905
924
|
take,
|
|
906
925
|
skip,
|
|
@@ -1029,6 +1048,10 @@ export class PublicGenericActivityService {
|
|
|
1029
1048
|
* Gets or sets AdditionalSupport.
|
|
1030
1049
|
*/
|
|
1031
1050
|
additionalSupport?: Array<string>;
|
|
1051
|
+
/**
|
|
1052
|
+
* Gets or sets AmenityId.
|
|
1053
|
+
*/
|
|
1054
|
+
amenity?: Array<number>;
|
|
1032
1055
|
/**
|
|
1033
1056
|
* Gets or sets the page number for paged queries.
|
|
1034
1057
|
*/
|
|
@@ -1109,6 +1132,7 @@ export class PublicGenericActivityService {
|
|
|
1109
1132
|
Gender: gender,
|
|
1110
1133
|
PeriodsOfWeek: periodsOfWeek,
|
|
1111
1134
|
AdditionalSupport: additionalSupport,
|
|
1135
|
+
Amenity: amenity,
|
|
1112
1136
|
PageNumber: pageNumber,
|
|
1113
1137
|
Take: take,
|
|
1114
1138
|
Skip: skip,
|