reach-api-sdk 1.0.201 → 1.0.203

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.
Files changed (38) hide show
  1. package/dist/reach-sdk.d.ts +1117 -31
  2. package/dist/reach-sdk.js +1234 -428
  3. package/package.json +1 -1
  4. package/src/apiClient.ts +6 -0
  5. package/src/definition/swagger.yaml +3928 -1186
  6. package/src/index.ts +9 -0
  7. package/src/models/CourseEmailWaitlistPatch.ts +22 -0
  8. package/src/models/CreateOffer.ts +16 -0
  9. package/src/models/GenericActivity.ts +12 -0
  10. package/src/models/Offer.ts +25 -0
  11. package/src/models/OfferPost.ts +16 -0
  12. package/src/models/OrderItemReportSummary.ts +38 -0
  13. package/src/models/Permission.ts +4 -0
  14. package/src/models/PermissionPatch.ts +4 -0
  15. package/src/models/ScheduledSessionEmailWaitlistPatch.ts +22 -0
  16. package/src/models/Session.ts +12 -0
  17. package/src/models/TemplateOffer.ts +16 -0
  18. package/src/models/UpdateOffer.ts +16 -0
  19. package/src/models/UserPermission.ts +4 -0
  20. package/src/models/UserPermissionPatch.ts +4 -0
  21. package/src/models/Venue.ts +4 -0
  22. package/src/models/VenueType.ts +42 -0
  23. package/src/models/VenueTypePage.ts +12 -0
  24. package/src/models/VenueTypePatch.ts +26 -0
  25. package/src/models/VenueTypePost.ts +22 -0
  26. package/src/services/CoursesService.ts +35 -0
  27. package/src/services/GenericActivityService.ts +36 -0
  28. package/src/services/OffersService.ts +30 -0
  29. package/src/services/OrderItemReportService.ts +124 -0
  30. package/src/services/OrderItemsService.ts +30 -0
  31. package/src/services/PlacesService.ts +57 -0
  32. package/src/services/PublicGenericActivityService.ts +24 -0
  33. package/src/services/PublicOrderItemsService.ts +12 -0
  34. package/src/services/PublicVenueTypesService.ts +401 -0
  35. package/src/services/PublicVenuesService.ts +18 -0
  36. package/src/services/ScheduledSessionsService.ts +35 -0
  37. package/src/services/VenueTypeService.ts +662 -0
  38. package/src/services/VenuesService.ts +30 -0
@@ -4102,6 +4102,18 @@ type Session = {
4102
4102
  deals?: Array<Deal> | null;
4103
4103
  activityType?: ActivityType;
4104
4104
  sessionType?: SessionType;
4105
+ /**
4106
+ * Gets or sets a description of the schedule.
4107
+ */
4108
+ scheduleDescription?: string | null;
4109
+ /**
4110
+ * Gets or sets a summary of the schedule.
4111
+ */
4112
+ scheduleSummary?: string | null;
4113
+ /**
4114
+ * Gets or sets a value indicating whether the session has a schedule summary.
4115
+ */
4116
+ hasScheduleSummary?: boolean | null;
4105
4117
  /**
4106
4118
  * Gets or sets the openactive activity Id.
4107
4119
  */
@@ -4259,6 +4271,31 @@ type Offer = {
4259
4271
  * Gets or sets a value indicating whether the offer is private (available to relevant authenticated users and NOT visible to the public).
4260
4272
  */
4261
4273
  active: boolean;
4274
+ /**
4275
+ * Gets or sets the maximum number of this offer that can be sold per opportunity.
4276
+ */
4277
+ maxAvailablePerOpportunity?: number | null;
4278
+ /**
4279
+ * Gets or sets when this offer becomes available for booking.
4280
+ */
4281
+ availableFrom?: string | null;
4282
+ /**
4283
+ * Gets or sets when this offer stops being available for booking.
4284
+ */
4285
+ availableUntil?: string | null;
4286
+ /**
4287
+ * Gets or sets the offer description.
4288
+ */
4289
+ description?: string | null;
4290
+ /**
4291
+ * Gets a value indicating whether the offer is currently available based on AvailableFrom and AvailableUntil dates.
4292
+ */
4293
+ readonly isAvailable?: boolean;
4294
+ /**
4295
+ * Gets or sets the total number of spots available for this offer based on MaxAvailablePerOpportunity and existing bookings.
4296
+ * This property is calculated by the processors when loading offers.
4297
+ */
4298
+ totalAvailable?: number;
4262
4299
  /**
4263
4300
  * Gets or sets the offers label.
4264
4301
  */
@@ -4564,6 +4601,10 @@ type Venue = {
4564
4601
  * Gets a formatted label representation for the activity types available at the venue.
4565
4602
  */
4566
4603
  readonly activityTypesAvailableFormatted?: string | null;
4604
+ /**
4605
+ * Gets or sets the venue type id.
4606
+ */
4607
+ venueTypeId?: string | null;
4567
4608
  /**
4568
4609
  * Gets or sets the user that the venue is assigned to.
4569
4610
  */
@@ -7944,6 +7985,22 @@ type CreateOffer = {
7944
7985
  * Gets or sets the offer total/gross price.
7945
7986
  */
7946
7987
  priceTotal: number;
7988
+ /**
7989
+ * Gets or sets the maximum number of this offer that can be sold per opportunity.
7990
+ */
7991
+ maxAvailablePerOpportunity?: number | null;
7992
+ /**
7993
+ * Gets or sets when this offer becomes available for booking.
7994
+ */
7995
+ availableFrom?: string | null;
7996
+ /**
7997
+ * Gets or sets when this offer stops being available for booking.
7998
+ */
7999
+ availableUntil?: string | null;
8000
+ /**
8001
+ * Gets or sets the offer description.
8002
+ */
8003
+ description?: string | null;
7947
8004
  };
7948
8005
 
7949
8006
  /**
@@ -8156,6 +8213,24 @@ type CourseEmailAttendeesPatch = {
8156
8213
  message?: string | null;
8157
8214
  };
8158
8215
 
8216
+ /**
8217
+ * Post model for email course waitlist.
8218
+ */
8219
+ type CourseEmailWaitlistPatch = {
8220
+ /**
8221
+ * Gets or sets the tenant Id.
8222
+ */
8223
+ tenantId: string;
8224
+ /**
8225
+ * Gets or sets the Id.
8226
+ */
8227
+ id: string;
8228
+ /**
8229
+ * Gets or sets the message body.
8230
+ */
8231
+ message?: string | null;
8232
+ };
8233
+
8159
8234
  type CoursePage = {
8160
8235
  pagination: Pagination;
8161
8236
  readonly items: Array<Course>;
@@ -8199,6 +8274,22 @@ type UpdateOffer = {
8199
8274
  * Gets or sets the offer total/gross price.
8200
8275
  */
8201
8276
  priceTotal: number;
8277
+ /**
8278
+ * Gets or sets the maximum number of this offer that can be sold per opportunity.
8279
+ */
8280
+ maxAvailablePerOpportunity?: number | null;
8281
+ /**
8282
+ * Gets or sets when this offer becomes available for booking.
8283
+ */
8284
+ availableFrom?: string | null;
8285
+ /**
8286
+ * Gets or sets when this offer stops being available for booking.
8287
+ */
8288
+ availableUntil?: string | null;
8289
+ /**
8290
+ * Gets or sets the offer description.
8291
+ */
8292
+ description?: string | null;
8202
8293
  };
8203
8294
 
8204
8295
  /**
@@ -8453,6 +8544,21 @@ declare class CoursesService {
8453
8544
  */
8454
8545
  requestBody?: CourseEmailAttendeesPatch;
8455
8546
  }): CancelablePromise<ScheduledSession>;
8547
+ /**
8548
+ * Emails all on waitlist for the opportunity />.
8549
+ * @returns ScheduledSession OK
8550
+ * @throws ApiError
8551
+ */
8552
+ contactWaitlist({ courseId, requestBody, }: {
8553
+ /**
8554
+ * The course Id.
8555
+ */
8556
+ courseId: string;
8557
+ /**
8558
+ * The patch model.
8559
+ */
8560
+ requestBody?: CourseEmailWaitlistPatch;
8561
+ }): CancelablePromise<ScheduledSession>;
8456
8562
  /**
8457
8563
  * Sends the post course completion email />.
8458
8564
  * @returns any OK
@@ -15762,6 +15868,18 @@ type GenericActivity = {
15762
15868
  * Gets or sets the description.
15763
15869
  */
15764
15870
  description?: string | null;
15871
+ /**
15872
+ * Gets or sets a description of the schedule.
15873
+ */
15874
+ scheduleDescription?: string | null;
15875
+ /**
15876
+ * Gets or sets a summary of the schedule.
15877
+ */
15878
+ scheduleSummary?: string | null;
15879
+ /**
15880
+ * Gets or sets a value indicating whether the session has a schedule summary.
15881
+ */
15882
+ hasScheduleSummary?: boolean | null;
15765
15883
  /**
15766
15884
  * Gets or sets the image url.
15767
15885
  */
@@ -15926,7 +16044,7 @@ declare class GenericActivityService {
15926
16044
  * @returns GenericActivity OK
15927
16045
  * @throws ApiError
15928
16046
  */
15929
- getUpcoming({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16047
+ 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, }: {
15930
16048
  /**
15931
16049
  * Gets or sets the wildcard for use in a query search.
15932
16050
  */
@@ -16059,6 +16177,10 @@ declare class GenericActivityService {
16059
16177
  * Gets or sets AmenityId.
16060
16178
  */
16061
16179
  amenity?: Array<number>;
16180
+ /**
16181
+ * Gets or sets a list of venue type ids.
16182
+ */
16183
+ venueTypeIds?: Array<string>;
16062
16184
  /**
16063
16185
  * Gets or sets the Programme ids.
16064
16186
  */
@@ -16124,7 +16246,7 @@ declare class GenericActivityService {
16124
16246
  * @returns boolean OK
16125
16247
  * @throws ApiError
16126
16248
  */
16127
- exists({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16249
+ 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, }: {
16128
16250
  /**
16129
16251
  * Gets or sets the wildcard for use in a query search.
16130
16252
  */
@@ -16257,6 +16379,10 @@ declare class GenericActivityService {
16257
16379
  * Gets or sets AmenityId.
16258
16380
  */
16259
16381
  amenity?: Array<number>;
16382
+ /**
16383
+ * Gets or sets a list of venue type ids.
16384
+ */
16385
+ venueTypeIds?: Array<string>;
16260
16386
  /**
16261
16387
  * Gets or sets the Programme ids.
16262
16388
  */
@@ -16311,7 +16437,7 @@ declare class GenericActivityService {
16311
16437
  * @returns number OK
16312
16438
  * @throws ApiError
16313
16439
  */
16314
- count({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16440
+ 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, }: {
16315
16441
  /**
16316
16442
  * Gets or sets the wildcard for use in a query search.
16317
16443
  */
@@ -16444,6 +16570,10 @@ declare class GenericActivityService {
16444
16570
  * Gets or sets AmenityId.
16445
16571
  */
16446
16572
  amenity?: Array<number>;
16573
+ /**
16574
+ * Gets or sets a list of venue type ids.
16575
+ */
16576
+ venueTypeIds?: Array<string>;
16447
16577
  /**
16448
16578
  * Gets or sets the Programme ids.
16449
16579
  */
@@ -16498,7 +16628,7 @@ declare class GenericActivityService {
16498
16628
  * @returns GenericActivityPage OK
16499
16629
  * @throws ApiError
16500
16630
  */
16501
- getPage({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16631
+ 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, }: {
16502
16632
  /**
16503
16633
  * Gets or sets the wildcard for use in a query search.
16504
16634
  */
@@ -16631,6 +16761,10 @@ declare class GenericActivityService {
16631
16761
  * Gets or sets AmenityId.
16632
16762
  */
16633
16763
  amenity?: Array<number>;
16764
+ /**
16765
+ * Gets or sets a list of venue type ids.
16766
+ */
16767
+ venueTypeIds?: Array<string>;
16634
16768
  /**
16635
16769
  * Gets or sets the Programme ids.
16636
16770
  */
@@ -16685,7 +16819,7 @@ declare class GenericActivityService {
16685
16819
  * @returns GenericActivity OK
16686
16820
  * @throws ApiError
16687
16821
  */
16688
- getListWithoutReferences({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16822
+ 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, }: {
16689
16823
  /**
16690
16824
  * Gets or sets the wildcard for use in a query search.
16691
16825
  */
@@ -16818,6 +16952,10 @@ declare class GenericActivityService {
16818
16952
  * Gets or sets AmenityId.
16819
16953
  */
16820
16954
  amenity?: Array<number>;
16955
+ /**
16956
+ * Gets or sets a list of venue type ids.
16957
+ */
16958
+ venueTypeIds?: Array<string>;
16821
16959
  /**
16822
16960
  * Gets or sets the Programme ids.
16823
16961
  */
@@ -16872,7 +17010,7 @@ declare class GenericActivityService {
16872
17010
  * @returns GenericActivity OK
16873
17011
  * @throws ApiError
16874
17012
  */
16875
- getListIdName({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
17013
+ 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, }: {
16876
17014
  /**
16877
17015
  * Gets or sets the wildcard for use in a query search.
16878
17016
  */
@@ -17005,6 +17143,10 @@ declare class GenericActivityService {
17005
17143
  * Gets or sets AmenityId.
17006
17144
  */
17007
17145
  amenity?: Array<number>;
17146
+ /**
17147
+ * Gets or sets a list of venue type ids.
17148
+ */
17149
+ venueTypeIds?: Array<string>;
17008
17150
  /**
17009
17151
  * Gets or sets the Programme ids.
17010
17152
  */
@@ -21641,6 +21783,22 @@ type OfferPost = {
21641
21783
  * Gets or sets a value indicating whether the offer is private (available to relevant authenticated users and NOT visible to the public).
21642
21784
  */
21643
21785
  active?: boolean | null;
21786
+ /**
21787
+ * Gets or sets the maximum number of this offer that can be sold per opportunity.
21788
+ */
21789
+ maxAvailablePerOpportunity?: number | null;
21790
+ /**
21791
+ * Gets or sets when this offer becomes available for booking.
21792
+ */
21793
+ availableFrom?: string | null;
21794
+ /**
21795
+ * Gets or sets when this offer stops being available for booking.
21796
+ */
21797
+ availableUntil?: string | null;
21798
+ /**
21799
+ * Gets or sets the offer description.
21800
+ */
21801
+ description?: string | null;
21644
21802
  };
21645
21803
 
21646
21804
  declare class OffersService {
@@ -21706,7 +21864,11 @@ declare class OffersService {
21706
21864
  * @returns OfferPage OK
21707
21865
  * @throws ApiError
21708
21866
  */
21709
- getPage({ facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
21867
+ getPage({ ids, facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
21868
+ /**
21869
+ * Gets or sets the queryable ids.
21870
+ */
21871
+ ids?: Array<string>;
21710
21872
  /**
21711
21873
  * Gets or sets the queryable facility id.
21712
21874
  */
@@ -21842,7 +22004,11 @@ declare class OffersService {
21842
22004
  * @returns boolean OK
21843
22005
  * @throws ApiError
21844
22006
  */
21845
- exists({ facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
22007
+ exists({ ids, facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
22008
+ /**
22009
+ * Gets or sets the queryable ids.
22010
+ */
22011
+ ids?: Array<string>;
21846
22012
  /**
21847
22013
  * Gets or sets the queryable facility id.
21848
22014
  */
@@ -21945,7 +22111,11 @@ declare class OffersService {
21945
22111
  * @returns number OK
21946
22112
  * @throws ApiError
21947
22113
  */
21948
- count({ facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
22114
+ count({ ids, facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
22115
+ /**
22116
+ * Gets or sets the queryable ids.
22117
+ */
22118
+ ids?: Array<string>;
21949
22119
  /**
21950
22120
  * Gets or sets the queryable facility id.
21951
22121
  */
@@ -22048,7 +22218,11 @@ declare class OffersService {
22048
22218
  * @returns Offer OK
22049
22219
  * @throws ApiError
22050
22220
  */
22051
- getListWithoutReferences({ facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
22221
+ getListWithoutReferences({ ids, facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
22222
+ /**
22223
+ * Gets or sets the queryable ids.
22224
+ */
22225
+ ids?: Array<string>;
22052
22226
  /**
22053
22227
  * Gets or sets the queryable facility id.
22054
22228
  */
@@ -22151,7 +22325,11 @@ declare class OffersService {
22151
22325
  * @returns Offer OK
22152
22326
  * @throws ApiError
22153
22327
  */
22154
- getListIdName({ facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
22328
+ getListIdName({ ids, facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
22329
+ /**
22330
+ * Gets or sets the queryable ids.
22331
+ */
22332
+ ids?: Array<string>;
22155
22333
  /**
22156
22334
  * Gets or sets the queryable facility id.
22157
22335
  */
@@ -24098,6 +24276,40 @@ type OrderItemReportPost = {
24098
24276
  tenantId: string;
24099
24277
  };
24100
24278
 
24279
+ /**
24280
+ * Represents the order item report summary model.
24281
+ */
24282
+ type OrderItemReportSummary = {
24283
+ /**
24284
+ * Gets or sets the entities Id.
24285
+ */
24286
+ id?: string;
24287
+ /**
24288
+ * Gets or sets the tenant Id.
24289
+ */
24290
+ tenantId: string;
24291
+ /**
24292
+ * Gets or sets the created date of this entity.
24293
+ */
24294
+ dateCreated: string;
24295
+ /**
24296
+ * Gets or sets the last modified date of this entity.
24297
+ */
24298
+ dateModified: string;
24299
+ /**
24300
+ * Gets or sets the modified by Id.
24301
+ */
24302
+ modifiedById?: string | null;
24303
+ /**
24304
+ * Gets or sets a value indicating whether the record is live and available for use within the application.
24305
+ */
24306
+ isLive: boolean;
24307
+ /**
24308
+ * Gets or sets the total revenue generated from order items.
24309
+ */
24310
+ revenueGenerated?: number;
24311
+ };
24312
+
24101
24313
  declare class OrderItemReportService {
24102
24314
  readonly httpRequest: BaseHttpRequest;
24103
24315
  constructor(httpRequest: BaseHttpRequest);
@@ -24183,6 +24395,81 @@ declare class OrderItemReportService {
24183
24395
  Token?: string;
24184
24396
  };
24185
24397
  }): CancelablePromise<any>;
24398
+ /**
24399
+ * Get summary for order items.
24400
+ * @returns OrderItemReportSummary OK
24401
+ * @throws ApiError
24402
+ */
24403
+ getSummary({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
24404
+ /**
24405
+ * Gets or sets the Venue Id.
24406
+ */
24407
+ venueId?: string;
24408
+ /**
24409
+ * Gets or sets the User Id.
24410
+ */
24411
+ userId?: string;
24412
+ /**
24413
+ * Gets or sets the Programme Id.
24414
+ */
24415
+ programmeId?: string;
24416
+ /**
24417
+ * Gets or sets the starting date greater than or equal to.
24418
+ */
24419
+ startDateGte?: string;
24420
+ /**
24421
+ * Gets or sets the starting date less than or equal to.
24422
+ */
24423
+ startDateLte?: string;
24424
+ /**
24425
+ * Gets or sets a custom date range.
24426
+ */
24427
+ dateRange?: CustomDateRange;
24428
+ /**
24429
+ * Gets or sets the page number for paged queries.
24430
+ */
24431
+ pageNumber?: number;
24432
+ /**
24433
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
24434
+ */
24435
+ take?: number;
24436
+ /**
24437
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
24438
+ */
24439
+ skip?: number;
24440
+ /**
24441
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
24442
+ */
24443
+ limitListRequests?: boolean;
24444
+ /**
24445
+ * Gets or sets the Tenant Id.
24446
+ */
24447
+ tenantId?: string;
24448
+ /**
24449
+ * Gets or sets the Modifed By Id.
24450
+ */
24451
+ modifiedById?: string;
24452
+ /**
24453
+ * Gets or sets the Modifed By Ids.
24454
+ */
24455
+ modifiedByIds?: Array<string>;
24456
+ /**
24457
+ * Gets or sets the Date Created greater than equal to.
24458
+ */
24459
+ dateCreatedGte?: string;
24460
+ /**
24461
+ * Gets or sets the Date Created less than equal to.
24462
+ */
24463
+ dateCreatedLte?: string;
24464
+ /**
24465
+ * Gets or sets the queryable only is live status.
24466
+ */
24467
+ isLive?: boolean;
24468
+ /**
24469
+ * Gets or sets the sort order direction.
24470
+ */
24471
+ sortOrderDirection?: SearchSortOrderDirection;
24472
+ }): CancelablePromise<OrderItemReportSummary>;
24186
24473
  /**
24187
24474
  * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
24188
24475
  * @returns OrderItemReport OK
@@ -24767,7 +25054,7 @@ declare class OrderItemsService {
24767
25054
  * @returns OrderItemPage OK
24768
25055
  * @throws ApiError
24769
25056
  */
24770
- getPage({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
25057
+ getPage({ ids, orderId, scheduledSessionId, slotId, courseId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
24771
25058
  /**
24772
25059
  * Gets or sets the queryable order item ids.
24773
25060
  */
@@ -24788,6 +25075,10 @@ declare class OrderItemsService {
24788
25075
  * Gets or sets the queryable course id.
24789
25076
  */
24790
25077
  courseId?: string;
25078
+ /**
25079
+ * Gets or sets the queryable offer id.
25080
+ */
25081
+ offerId?: string;
24791
25082
  /**
24792
25083
  * Gets or sets the queryable order item status id.
24793
25084
  */
@@ -24895,7 +25186,7 @@ declare class OrderItemsService {
24895
25186
  * @returns boolean OK
24896
25187
  * @throws ApiError
24897
25188
  */
24898
- exists({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
25189
+ exists({ ids, orderId, scheduledSessionId, slotId, courseId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
24899
25190
  /**
24900
25191
  * Gets or sets the queryable order item ids.
24901
25192
  */
@@ -24916,6 +25207,10 @@ declare class OrderItemsService {
24916
25207
  * Gets or sets the queryable course id.
24917
25208
  */
24918
25209
  courseId?: string;
25210
+ /**
25211
+ * Gets or sets the queryable offer id.
25212
+ */
25213
+ offerId?: string;
24919
25214
  /**
24920
25215
  * Gets or sets the queryable order item status id.
24921
25216
  */
@@ -24990,7 +25285,7 @@ declare class OrderItemsService {
24990
25285
  * @returns number OK
24991
25286
  * @throws ApiError
24992
25287
  */
24993
- count({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
25288
+ count({ ids, orderId, scheduledSessionId, slotId, courseId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
24994
25289
  /**
24995
25290
  * Gets or sets the queryable order item ids.
24996
25291
  */
@@ -25011,6 +25306,10 @@ declare class OrderItemsService {
25011
25306
  * Gets or sets the queryable course id.
25012
25307
  */
25013
25308
  courseId?: string;
25309
+ /**
25310
+ * Gets or sets the queryable offer id.
25311
+ */
25312
+ offerId?: string;
25014
25313
  /**
25015
25314
  * Gets or sets the queryable order item status id.
25016
25315
  */
@@ -25085,7 +25384,7 @@ declare class OrderItemsService {
25085
25384
  * @returns OrderItem OK
25086
25385
  * @throws ApiError
25087
25386
  */
25088
- getListWithoutReferences({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
25387
+ getListWithoutReferences({ ids, orderId, scheduledSessionId, slotId, courseId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
25089
25388
  /**
25090
25389
  * Gets or sets the queryable order item ids.
25091
25390
  */
@@ -25106,6 +25405,10 @@ declare class OrderItemsService {
25106
25405
  * Gets or sets the queryable course id.
25107
25406
  */
25108
25407
  courseId?: string;
25408
+ /**
25409
+ * Gets or sets the queryable offer id.
25410
+ */
25411
+ offerId?: string;
25109
25412
  /**
25110
25413
  * Gets or sets the queryable order item status id.
25111
25414
  */
@@ -25180,7 +25483,7 @@ declare class OrderItemsService {
25180
25483
  * @returns OrderItem OK
25181
25484
  * @throws ApiError
25182
25485
  */
25183
- getListIdName({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
25486
+ getListIdName({ ids, orderId, scheduledSessionId, slotId, courseId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
25184
25487
  /**
25185
25488
  * Gets or sets the queryable order item ids.
25186
25489
  */
@@ -25201,6 +25504,10 @@ declare class OrderItemsService {
25201
25504
  * Gets or sets the queryable course id.
25202
25505
  */
25203
25506
  courseId?: string;
25507
+ /**
25508
+ * Gets or sets the queryable offer id.
25509
+ */
25510
+ offerId?: string;
25204
25511
  /**
25205
25512
  * Gets or sets the queryable order item status id.
25206
25513
  */
@@ -27906,6 +28213,10 @@ type Permission = {
27906
28213
  * Gets or sets a value indicating whether a venue manager has send emails permissions.
27907
28214
  */
27908
28215
  venueManagerSendEmails?: boolean;
28216
+ /**
28217
+ * Gets or sets a value indicating whether a venue manager has manage opportunity permissions.
28218
+ */
28219
+ venueManagerManageOpportunity?: boolean;
27909
28220
  };
27910
28221
 
27911
28222
  type PermissionPage = {
@@ -27989,6 +28300,10 @@ type PermissionPatch = {
27989
28300
  * Gets or sets a value indicating whether a venue manager has send emails permissions.
27990
28301
  */
27991
28302
  venueManagerSendEmails?: boolean;
28303
+ /**
28304
+ * Gets or sets a value indicating whether a venue manager has manage opportunity permissions.
28305
+ */
28306
+ venueManagerManageOpportunity?: boolean;
27992
28307
  };
27993
28308
 
27994
28309
  /**
@@ -28436,6 +28751,37 @@ declare class PlacesService {
28436
28751
  */
28437
28752
  placeId: string;
28438
28753
  }): CancelablePromise<PlaceDetailsResponseModel>;
28754
+ /**
28755
+ * GetPrediction.
28756
+ * @returns any OK
28757
+ * @throws ApiError
28758
+ */
28759
+ getStaticMap({ lat, lng, zoom, width, height, type, }: {
28760
+ /**
28761
+ * lat.
28762
+ */
28763
+ lat?: number;
28764
+ /**
28765
+ * lng.
28766
+ */
28767
+ lng?: number;
28768
+ /**
28769
+ * zoom.
28770
+ */
28771
+ zoom?: number;
28772
+ /**
28773
+ * width.
28774
+ */
28775
+ width?: number;
28776
+ /**
28777
+ * height.
28778
+ */
28779
+ height?: number;
28780
+ /**
28781
+ * type.
28782
+ */
28783
+ type?: string;
28784
+ }): CancelablePromise<any>;
28439
28785
  }
28440
28786
 
28441
28787
  /**
@@ -31959,7 +32305,7 @@ declare class PublicGenericActivityService {
31959
32305
  * @returns GenericActivityPage OK
31960
32306
  * @throws ApiError
31961
32307
  */
31962
- getPage({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
32308
+ 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, }: {
31963
32309
  xTenantSubdomain?: string;
31964
32310
  /**
31965
32311
  * Gets or sets the wildcard for use in a query search.
@@ -32093,6 +32439,10 @@ declare class PublicGenericActivityService {
32093
32439
  * Gets or sets AmenityId.
32094
32440
  */
32095
32441
  amenity?: Array<number>;
32442
+ /**
32443
+ * Gets or sets a list of venue type ids.
32444
+ */
32445
+ venueTypeIds?: Array<string>;
32096
32446
  /**
32097
32447
  * Gets or sets the Programme ids.
32098
32448
  */
@@ -32147,7 +32497,7 @@ declare class PublicGenericActivityService {
32147
32497
  * @returns GenericActivityPage OK
32148
32498
  * @throws ApiError
32149
32499
  */
32150
- getPage1({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
32500
+ 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, }: {
32151
32501
  /**
32152
32502
  * Gets or sets the wildcard for use in a query search.
32153
32503
  */
@@ -32280,6 +32630,10 @@ declare class PublicGenericActivityService {
32280
32630
  * Gets or sets AmenityId.
32281
32631
  */
32282
32632
  amenity?: Array<number>;
32633
+ /**
32634
+ * Gets or sets a list of venue type ids.
32635
+ */
32636
+ venueTypeIds?: Array<string>;
32283
32637
  /**
32284
32638
  * Gets or sets the Programme ids.
32285
32639
  */
@@ -32334,7 +32688,7 @@ declare class PublicGenericActivityService {
32334
32688
  * @returns GenericActivity OK
32335
32689
  * @throws ApiError
32336
32690
  */
32337
- getUpcoming({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
32691
+ 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, }: {
32338
32692
  /**
32339
32693
  * The tenants subdomain.
32340
32694
  */
@@ -32471,6 +32825,10 @@ declare class PublicGenericActivityService {
32471
32825
  * Gets or sets AmenityId.
32472
32826
  */
32473
32827
  amenity?: Array<number>;
32828
+ /**
32829
+ * Gets or sets a list of venue type ids.
32830
+ */
32831
+ venueTypeIds?: Array<string>;
32474
32832
  /**
32475
32833
  * Gets or sets the Programme ids.
32476
32834
  */
@@ -32548,7 +32906,7 @@ declare class PublicGenericActivityService {
32548
32906
  * @returns boolean OK
32549
32907
  * @throws ApiError
32550
32908
  */
32551
- exists({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
32909
+ 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, }: {
32552
32910
  /**
32553
32911
  * The tenants subdomain.
32554
32912
  */
@@ -32685,6 +33043,10 @@ declare class PublicGenericActivityService {
32685
33043
  * Gets or sets AmenityId.
32686
33044
  */
32687
33045
  amenity?: Array<number>;
33046
+ /**
33047
+ * Gets or sets a list of venue type ids.
33048
+ */
33049
+ venueTypeIds?: Array<string>;
32688
33050
  /**
32689
33051
  * Gets or sets the Programme ids.
32690
33052
  */
@@ -33675,7 +34037,7 @@ declare class PublicOrderItemsService {
33675
34037
  * @returns OrderItemPage OK
33676
34038
  * @throws ApiError
33677
34039
  */
33678
- getPage({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
34040
+ getPage({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
33679
34041
  xTenantSubdomain?: string;
33680
34042
  /**
33681
34043
  * Gets or sets the queryable order item ids.
@@ -33697,6 +34059,10 @@ declare class PublicOrderItemsService {
33697
34059
  * Gets or sets the queryable course id.
33698
34060
  */
33699
34061
  courseId?: string;
34062
+ /**
34063
+ * Gets or sets the queryable offer id.
34064
+ */
34065
+ offerId?: string;
33700
34066
  /**
33701
34067
  * Gets or sets the queryable order item status id.
33702
34068
  */
@@ -33880,7 +34246,7 @@ declare class PublicOrderItemsService {
33880
34246
  * @returns boolean OK
33881
34247
  * @throws ApiError
33882
34248
  */
33883
- exists({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
34249
+ exists({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
33884
34250
  /**
33885
34251
  * The tenants subdomain.
33886
34252
  */
@@ -33905,6 +34271,10 @@ declare class PublicOrderItemsService {
33905
34271
  * Gets or sets the queryable course id.
33906
34272
  */
33907
34273
  courseId?: string;
34274
+ /**
34275
+ * Gets or sets the queryable offer id.
34276
+ */
34277
+ offerId?: string;
33908
34278
  /**
33909
34279
  * Gets or sets the queryable order item status id.
33910
34280
  */
@@ -39058,7 +39428,7 @@ declare class PublicVenuesService {
39058
39428
  * @returns VenuePage OK
39059
39429
  * @throws ApiError
39060
39430
  */
39061
- getPage({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
39431
+ getPage({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
39062
39432
  xTenantSubdomain?: string;
39063
39433
  /**
39064
39434
  * Gets or sets the queryable venue ids.
@@ -39144,6 +39514,10 @@ declare class PublicVenuesService {
39144
39514
  * Gets or sets the programme ids.
39145
39515
  */
39146
39516
  programmeIds?: Array<string>;
39517
+ /**
39518
+ * Gets or sets the venue type ids.
39519
+ */
39520
+ venueTypeIds?: Array<string>;
39147
39521
  /**
39148
39522
  * Gets or sets the page number for paged queries.
39149
39523
  */
@@ -39209,7 +39583,7 @@ declare class PublicVenuesService {
39209
39583
  * @returns VenuePage OK
39210
39584
  * @throws ApiError
39211
39585
  */
39212
- getNetworkPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
39586
+ getNetworkPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
39213
39587
  /**
39214
39588
  * Gets or sets the queryable venue ids.
39215
39589
  */
@@ -39294,6 +39668,10 @@ declare class PublicVenuesService {
39294
39668
  * Gets or sets the programme ids.
39295
39669
  */
39296
39670
  programmeIds?: Array<string>;
39671
+ /**
39672
+ * Gets or sets the venue type ids.
39673
+ */
39674
+ venueTypeIds?: Array<string>;
39297
39675
  /**
39298
39676
  * Gets or sets the page number for paged queries.
39299
39677
  */
@@ -39389,7 +39767,7 @@ declare class PublicVenuesService {
39389
39767
  * @returns boolean OK
39390
39768
  * @throws ApiError
39391
39769
  */
39392
- exists({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
39770
+ exists({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
39393
39771
  /**
39394
39772
  * The tenants subdomain.
39395
39773
  */
@@ -39478,6 +39856,287 @@ declare class PublicVenuesService {
39478
39856
  * Gets or sets the programme ids.
39479
39857
  */
39480
39858
  programmeIds?: Array<string>;
39859
+ /**
39860
+ * Gets or sets the venue type ids.
39861
+ */
39862
+ venueTypeIds?: Array<string>;
39863
+ /**
39864
+ * Gets or sets the page number for paged queries.
39865
+ */
39866
+ pageNumber?: number;
39867
+ /**
39868
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
39869
+ */
39870
+ take?: number;
39871
+ /**
39872
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
39873
+ */
39874
+ skip?: number;
39875
+ /**
39876
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
39877
+ */
39878
+ limitListRequests?: boolean;
39879
+ /**
39880
+ * Gets or sets the Tenant Id.
39881
+ */
39882
+ tenantId?: string;
39883
+ /**
39884
+ * Gets or sets the Modifed By Id.
39885
+ */
39886
+ modifiedById?: string;
39887
+ /**
39888
+ * Gets or sets the Modifed By Ids.
39889
+ */
39890
+ modifiedByIds?: Array<string>;
39891
+ /**
39892
+ * Gets or sets the Date Created greater than equal to.
39893
+ */
39894
+ dateCreatedGte?: string;
39895
+ /**
39896
+ * Gets or sets the Date Created less than equal to.
39897
+ */
39898
+ dateCreatedLte?: string;
39899
+ /**
39900
+ * Gets or sets the queryable only is live status.
39901
+ */
39902
+ isLive?: boolean;
39903
+ /**
39904
+ * Gets or sets the sort order direction.
39905
+ */
39906
+ sortOrderDirection?: SearchSortOrderDirection;
39907
+ }): CancelablePromise<boolean>;
39908
+ }
39909
+
39910
+ /**
39911
+ * Represents a Venues type within the Reach application.
39912
+ */
39913
+ type VenueType = {
39914
+ /**
39915
+ * Gets or sets the entities Id.
39916
+ */
39917
+ id?: string;
39918
+ /**
39919
+ * Gets or sets the tenant Id.
39920
+ */
39921
+ tenantId: string;
39922
+ /**
39923
+ * Gets or sets the created date of this entity.
39924
+ */
39925
+ dateCreated: string;
39926
+ /**
39927
+ * Gets or sets the last modified date of this entity.
39928
+ */
39929
+ dateModified: string;
39930
+ /**
39931
+ * Gets or sets the modified by Id.
39932
+ */
39933
+ modifiedById?: string | null;
39934
+ /**
39935
+ * Gets or sets a value indicating whether the record is live and available for use within the application.
39936
+ */
39937
+ isLive: boolean;
39938
+ /**
39939
+ * Gets or sets the venue types name.
39940
+ */
39941
+ name?: string | null;
39942
+ /**
39943
+ * Gets or sets the venues types description.
39944
+ */
39945
+ description?: string | null;
39946
+ };
39947
+
39948
+ type VenueTypePage = {
39949
+ pagination: Pagination;
39950
+ readonly items: Array<VenueType>;
39951
+ };
39952
+
39953
+ /**
39954
+ * Post model for venue type updates.
39955
+ */
39956
+ type VenueTypePatch = {
39957
+ /**
39958
+ * Gets or sets the tenant Id.
39959
+ */
39960
+ tenantId: string;
39961
+ /**
39962
+ * Gets or sets the Id.
39963
+ */
39964
+ id: string;
39965
+ /**
39966
+ * Gets or sets the venue types name.
39967
+ */
39968
+ name?: string | null;
39969
+ /**
39970
+ * Gets or sets the venues types description.
39971
+ */
39972
+ description?: string | null;
39973
+ };
39974
+
39975
+ /**
39976
+ * Post model for venue type inserts.
39977
+ */
39978
+ type VenueTypePost = {
39979
+ /**
39980
+ * Gets or sets the tenant Id.
39981
+ */
39982
+ tenantId: string;
39983
+ /**
39984
+ * Gets or sets the venue types name.
39985
+ */
39986
+ name?: string | null;
39987
+ /**
39988
+ * Gets or sets the venues types description.
39989
+ */
39990
+ description?: string | null;
39991
+ };
39992
+
39993
+ declare class PublicVenueTypesService {
39994
+ readonly httpRequest: BaseHttpRequest;
39995
+ constructor(httpRequest: BaseHttpRequest);
39996
+ /**
39997
+ * @returns VenueType OK
39998
+ * @throws ApiError
39999
+ */
40000
+ getObject({ id, xTenantSubdomain, }: {
40001
+ id: string;
40002
+ xTenantSubdomain?: string;
40003
+ }): CancelablePromise<VenueType>;
40004
+ /**
40005
+ * Deletes the resource.
40006
+ * @returns any OK
40007
+ * @throws ApiError
40008
+ */
40009
+ deleteById({ id, xTenantSubdomain, }: {
40010
+ /**
40011
+ * The <typeparamref name="TObject" /> id.
40012
+ */
40013
+ id: string;
40014
+ /**
40015
+ * The tenants subdomain.
40016
+ */
40017
+ xTenantSubdomain?: string;
40018
+ }): CancelablePromise<any>;
40019
+ /**
40020
+ * @returns VenueTypePage OK
40021
+ * @throws ApiError
40022
+ */
40023
+ getPage({ xTenantSubdomain, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
40024
+ xTenantSubdomain?: string;
40025
+ /**
40026
+ * Gets or sets the page number for paged queries.
40027
+ */
40028
+ pageNumber?: number;
40029
+ /**
40030
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
40031
+ */
40032
+ take?: number;
40033
+ /**
40034
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
40035
+ */
40036
+ skip?: number;
40037
+ /**
40038
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
40039
+ */
40040
+ limitListRequests?: boolean;
40041
+ /**
40042
+ * Gets or sets the Tenant Id.
40043
+ */
40044
+ tenantId?: string;
40045
+ /**
40046
+ * Gets or sets the Modifed By Id.
40047
+ */
40048
+ modifiedById?: string;
40049
+ /**
40050
+ * Gets or sets the Modifed By Ids.
40051
+ */
40052
+ modifiedByIds?: Array<string>;
40053
+ /**
40054
+ * Gets or sets the Date Created greater than equal to.
40055
+ */
40056
+ dateCreatedGte?: string;
40057
+ /**
40058
+ * Gets or sets the Date Created less than equal to.
40059
+ */
40060
+ dateCreatedLte?: string;
40061
+ /**
40062
+ * Gets or sets the queryable only is live status.
40063
+ */
40064
+ isLive?: boolean;
40065
+ /**
40066
+ * Gets or sets the sort order direction.
40067
+ */
40068
+ sortOrderDirection?: SearchSortOrderDirection;
40069
+ }): CancelablePromise<VenueTypePage>;
40070
+ /**
40071
+ * Deletes the resource.
40072
+ * @returns any OK
40073
+ * @throws ApiError
40074
+ */
40075
+ deleteByObject({ xTenantSubdomain, requestBody, }: {
40076
+ /**
40077
+ * The tenants subdomain.
40078
+ */
40079
+ xTenantSubdomain?: string;
40080
+ /**
40081
+ * The <typeparamref name="TObject" /> model.
40082
+ */
40083
+ requestBody?: VenueType;
40084
+ }): CancelablePromise<any>;
40085
+ /**
40086
+ * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
40087
+ * @returns VenueType OK
40088
+ * @throws ApiError
40089
+ */
40090
+ post({ xTenantSubdomain, requestBody, }: {
40091
+ /**
40092
+ * The tenants subdomain.
40093
+ */
40094
+ xTenantSubdomain?: string;
40095
+ /**
40096
+ * The <typeparamref name="TObject" /> model.
40097
+ */
40098
+ requestBody?: VenueTypePost;
40099
+ }): CancelablePromise<VenueType>;
40100
+ /**
40101
+ * Patches the resource.
40102
+ * @returns VenueType OK
40103
+ * @throws ApiError
40104
+ */
40105
+ patch({ xTenantSubdomain, requestBody, }: {
40106
+ /**
40107
+ * The tenants subdomain.
40108
+ */
40109
+ xTenantSubdomain?: string;
40110
+ /**
40111
+ * The <typeparamref name="TObject" /> model.
40112
+ */
40113
+ requestBody?: VenueTypePatch;
40114
+ }): CancelablePromise<VenueType>;
40115
+ /**
40116
+ * Inserts a list of resources.
40117
+ * @returns VenueType OK
40118
+ * @throws ApiError
40119
+ */
40120
+ postList({ xTenantSubdomain, requestBody, }: {
40121
+ /**
40122
+ * The tenants subdomain.
40123
+ */
40124
+ xTenantSubdomain?: string;
40125
+ /**
40126
+ * The list of <typeparamref name="TObject" />.
40127
+ */
40128
+ requestBody?: Array<VenueTypePost>;
40129
+ }): CancelablePromise<Array<VenueType>>;
40130
+ /**
40131
+ * Returns a value indicating whether the resource exists in the database given the provided search params.
40132
+ * @returns boolean OK
40133
+ * @throws ApiError
40134
+ */
40135
+ exists({ xTenantSubdomain, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
40136
+ /**
40137
+ * The tenants subdomain.
40138
+ */
40139
+ xTenantSubdomain?: string;
39481
40140
  /**
39482
40141
  * Gets or sets the page number for paged queries.
39483
40142
  */
@@ -41887,6 +42546,24 @@ type ScheduledSessionEmailAttendeesPatch = {
41887
42546
  message?: string | null;
41888
42547
  };
41889
42548
 
42549
+ /**
42550
+ * Post model for emailing scheduled session waitlist.
42551
+ */
42552
+ type ScheduledSessionEmailWaitlistPatch = {
42553
+ /**
42554
+ * Gets or sets the tenant Id.
42555
+ */
42556
+ tenantId: string;
42557
+ /**
42558
+ * Gets or sets the Id.
42559
+ */
42560
+ id: string;
42561
+ /**
42562
+ * Gets or sets the message body.
42563
+ */
42564
+ message?: string | null;
42565
+ };
42566
+
41890
42567
  /**
41891
42568
  * Post model for scheduled session rescheduling updates.
41892
42569
  */
@@ -41994,6 +42671,21 @@ declare class ScheduledSessionsService {
41994
42671
  */
41995
42672
  requestBody?: ScheduledSessionEmailAttendeesPatch;
41996
42673
  }): CancelablePromise<ScheduledSession>;
42674
+ /**
42675
+ * Emails all on waitlist onto the opportunity />.
42676
+ * @returns ScheduledSession OK
42677
+ * @throws ApiError
42678
+ */
42679
+ contactWaitlist({ scheduledSessionId, requestBody, }: {
42680
+ /**
42681
+ * The scheduled session Id.
42682
+ */
42683
+ scheduledSessionId: string;
42684
+ /**
42685
+ * The patch model.
42686
+ */
42687
+ requestBody?: ScheduledSessionEmailWaitlistPatch;
42688
+ }): CancelablePromise<ScheduledSession>;
41997
42689
  /**
41998
42690
  * Cleans table of leased and conflicted scheduled sessions.
41999
42691
  * @returns number OK
@@ -50445,6 +51137,22 @@ type TemplateOffer = {
50445
51137
  * Gets or sets a value indicating whether the offer is active.
50446
51138
  */
50447
51139
  active?: boolean;
51140
+ /**
51141
+ * Gets or sets the maximum number of this offer that can be sold per opportunity.
51142
+ */
51143
+ maxAvailablePerOpportunity?: number | null;
51144
+ /**
51145
+ * Gets or sets when this offer becomes available for booking.
51146
+ */
51147
+ availableFrom?: string | null;
51148
+ /**
51149
+ * Gets or sets when this offer stops being available for booking.
51150
+ */
51151
+ availableUntil?: string | null;
51152
+ /**
51153
+ * Gets or sets the offer description.
51154
+ */
51155
+ description?: string | null;
50448
51156
  };
50449
51157
 
50450
51158
  /**
@@ -54631,6 +55339,10 @@ type UserPermission = {
54631
55339
  * Gets or sets a value indicating whether a venue manager has send emails permissions.
54632
55340
  */
54633
55341
  sendEmails?: boolean;
55342
+ /**
55343
+ * Gets or sets a value indicating whether a venue manager has manage opportunity permissions.
55344
+ */
55345
+ manageOpportunity?: boolean;
54634
55346
  };
54635
55347
 
54636
55348
  type UserPermissionPage = {
@@ -54714,6 +55426,10 @@ type UserPermissionPatch = {
54714
55426
  * Gets or sets a value indicating whether a venue manager has send emails permissions.
54715
55427
  */
54716
55428
  sendEmails?: boolean;
55429
+ /**
55430
+ * Gets or sets a value indicating whether a venue manager has manage opportunity permissions.
55431
+ */
55432
+ manageOpportunity?: boolean;
54717
55433
  };
54718
55434
 
54719
55435
  /**
@@ -58244,7 +58960,7 @@ declare class VenuesService {
58244
58960
  * @returns VenuePage OK
58245
58961
  * @throws ApiError
58246
58962
  */
58247
- getPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
58963
+ getPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
58248
58964
  /**
58249
58965
  * Gets or sets the queryable venue ids.
58250
58966
  */
@@ -58329,6 +59045,10 @@ declare class VenuesService {
58329
59045
  * Gets or sets the programme ids.
58330
59046
  */
58331
59047
  programmeIds?: Array<string>;
59048
+ /**
59049
+ * Gets or sets the venue type ids.
59050
+ */
59051
+ venueTypeIds?: Array<string>;
58332
59052
  /**
58333
59053
  * Gets or sets the page number for paged queries.
58334
59054
  */
@@ -58412,7 +59132,7 @@ declare class VenuesService {
58412
59132
  * @returns boolean OK
58413
59133
  * @throws ApiError
58414
59134
  */
58415
- exists({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
59135
+ exists({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
58416
59136
  /**
58417
59137
  * Gets or sets the queryable venue ids.
58418
59138
  */
@@ -58497,6 +59217,10 @@ declare class VenuesService {
58497
59217
  * Gets or sets the programme ids.
58498
59218
  */
58499
59219
  programmeIds?: Array<string>;
59220
+ /**
59221
+ * Gets or sets the venue type ids.
59222
+ */
59223
+ venueTypeIds?: Array<string>;
58500
59224
  /**
58501
59225
  * Gets or sets the page number for paged queries.
58502
59226
  */
@@ -58547,7 +59271,7 @@ declare class VenuesService {
58547
59271
  * @returns number OK
58548
59272
  * @throws ApiError
58549
59273
  */
58550
- count({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
59274
+ count({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
58551
59275
  /**
58552
59276
  * Gets or sets the queryable venue ids.
58553
59277
  */
@@ -58632,6 +59356,10 @@ declare class VenuesService {
58632
59356
  * Gets or sets the programme ids.
58633
59357
  */
58634
59358
  programmeIds?: Array<string>;
59359
+ /**
59360
+ * Gets or sets the venue type ids.
59361
+ */
59362
+ venueTypeIds?: Array<string>;
58635
59363
  /**
58636
59364
  * Gets or sets the page number for paged queries.
58637
59365
  */
@@ -58682,7 +59410,7 @@ declare class VenuesService {
58682
59410
  * @returns Venue OK
58683
59411
  * @throws ApiError
58684
59412
  */
58685
- getListWithoutReferences({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
59413
+ getListWithoutReferences({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
58686
59414
  /**
58687
59415
  * Gets or sets the queryable venue ids.
58688
59416
  */
@@ -58767,6 +59495,10 @@ declare class VenuesService {
58767
59495
  * Gets or sets the programme ids.
58768
59496
  */
58769
59497
  programmeIds?: Array<string>;
59498
+ /**
59499
+ * Gets or sets the venue type ids.
59500
+ */
59501
+ venueTypeIds?: Array<string>;
58770
59502
  /**
58771
59503
  * Gets or sets the page number for paged queries.
58772
59504
  */
@@ -58817,7 +59549,7 @@ declare class VenuesService {
58817
59549
  * @returns Venue OK
58818
59550
  * @throws ApiError
58819
59551
  */
58820
- getListIdName({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
59552
+ getListIdName({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
58821
59553
  /**
58822
59554
  * Gets or sets the queryable venue ids.
58823
59555
  */
@@ -58902,6 +59634,10 @@ declare class VenuesService {
58902
59634
  * Gets or sets the programme ids.
58903
59635
  */
58904
59636
  programmeIds?: Array<string>;
59637
+ /**
59638
+ * Gets or sets the venue type ids.
59639
+ */
59640
+ venueTypeIds?: Array<string>;
58905
59641
  /**
58906
59642
  * Gets or sets the page number for paged queries.
58907
59643
  */
@@ -59548,6 +60284,354 @@ declare class VenuesReportService {
59548
60284
  }): CancelablePromise<Array<VenuesReport>>;
59549
60285
  }
59550
60286
 
60287
+ declare class VenueTypeService {
60288
+ readonly httpRequest: BaseHttpRequest;
60289
+ constructor(httpRequest: BaseHttpRequest);
60290
+ /**
60291
+ * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
60292
+ * @returns VenueType OK
60293
+ * @throws ApiError
60294
+ */
60295
+ post({ requestBody, }: {
60296
+ /**
60297
+ * The <typeparamref name="TObject" /> model.
60298
+ */
60299
+ requestBody?: VenueTypePost;
60300
+ }): CancelablePromise<VenueType>;
60301
+ /**
60302
+ * Patches the resource.
60303
+ * @returns VenueType OK
60304
+ * @throws ApiError
60305
+ */
60306
+ patch({ requestBody, }: {
60307
+ /**
60308
+ * The <typeparamref name="TObject" /> model.
60309
+ */
60310
+ requestBody?: VenueTypePatch;
60311
+ }): CancelablePromise<VenueType>;
60312
+ /**
60313
+ * Inserts a list of resources.
60314
+ * @returns VenueType OK
60315
+ * @throws ApiError
60316
+ */
60317
+ postList({ requestBody, }: {
60318
+ /**
60319
+ * The list of <typeparamref name="TObject" />.
60320
+ */
60321
+ requestBody?: Array<VenueTypePost>;
60322
+ }): CancelablePromise<Array<VenueType>>;
60323
+ /**
60324
+ * Patches the resource.
60325
+ * @returns VenueType OK
60326
+ * @throws ApiError
60327
+ */
60328
+ patchWithReferences({ requestBody, }: {
60329
+ /**
60330
+ * The <typeparamref name="TObject" /> model.
60331
+ */
60332
+ requestBody?: VenueTypePatch;
60333
+ }): CancelablePromise<VenueType>;
60334
+ /**
60335
+ * Deletes the resource.
60336
+ * @returns any OK
60337
+ * @throws ApiError
60338
+ */
60339
+ deleteByObject({ requestBody, }: {
60340
+ /**
60341
+ * The <typeparamref name="TObject" /> model.
60342
+ */
60343
+ requestBody?: VenueType;
60344
+ }): CancelablePromise<any>;
60345
+ /**
60346
+ * Gets a list of resources.
60347
+ * @returns VenueTypePage OK
60348
+ * @throws ApiError
60349
+ */
60350
+ getPage({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
60351
+ /**
60352
+ * Gets or sets the page number for paged queries.
60353
+ */
60354
+ pageNumber?: number;
60355
+ /**
60356
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
60357
+ */
60358
+ take?: number;
60359
+ /**
60360
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
60361
+ */
60362
+ skip?: number;
60363
+ /**
60364
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
60365
+ */
60366
+ limitListRequests?: boolean;
60367
+ /**
60368
+ * Gets or sets the Tenant Id.
60369
+ */
60370
+ tenantId?: string;
60371
+ /**
60372
+ * Gets or sets the Modifed By Id.
60373
+ */
60374
+ modifiedById?: string;
60375
+ /**
60376
+ * Gets or sets the Modifed By Ids.
60377
+ */
60378
+ modifiedByIds?: Array<string>;
60379
+ /**
60380
+ * Gets or sets the Date Created greater than equal to.
60381
+ */
60382
+ dateCreatedGte?: string;
60383
+ /**
60384
+ * Gets or sets the Date Created less than equal to.
60385
+ */
60386
+ dateCreatedLte?: string;
60387
+ /**
60388
+ * Gets or sets the queryable only is live status.
60389
+ */
60390
+ isLive?: boolean;
60391
+ /**
60392
+ * Gets or sets the sort order direction.
60393
+ */
60394
+ sortOrderDirection?: SearchSortOrderDirection;
60395
+ }): CancelablePromise<VenueTypePage>;
60396
+ /**
60397
+ * Deletes the resource.
60398
+ * @returns any OK
60399
+ * @throws ApiError
60400
+ */
60401
+ deleteById({ id, }: {
60402
+ /**
60403
+ * The <typeparamref name="TObject" /> id.
60404
+ */
60405
+ id: string;
60406
+ }): CancelablePromise<any>;
60407
+ /**
60408
+ * Gets the resource by its Id.
60409
+ * @returns VenueType OK
60410
+ * @throws ApiError
60411
+ */
60412
+ getObject({ id, }: {
60413
+ /**
60414
+ * The <typeparamref name="TObject" /> id.
60415
+ */
60416
+ id: string;
60417
+ }): CancelablePromise<VenueType>;
60418
+ /**
60419
+ * Returns a value indicating whether the resource is deletable.
60420
+ * @returns boolean OK
60421
+ * @throws ApiError
60422
+ */
60423
+ canDelete({ id, }: {
60424
+ /**
60425
+ * The <typeparamref name="TObject" /> id.
60426
+ */
60427
+ id: string;
60428
+ }): CancelablePromise<boolean>;
60429
+ /**
60430
+ * Returns a value indicating whether the resource exists in the database given the provided search params.
60431
+ * @returns boolean OK
60432
+ * @throws ApiError
60433
+ */
60434
+ exists({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
60435
+ /**
60436
+ * Gets or sets the page number for paged queries.
60437
+ */
60438
+ pageNumber?: number;
60439
+ /**
60440
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
60441
+ */
60442
+ take?: number;
60443
+ /**
60444
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
60445
+ */
60446
+ skip?: number;
60447
+ /**
60448
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
60449
+ */
60450
+ limitListRequests?: boolean;
60451
+ /**
60452
+ * Gets or sets the Tenant Id.
60453
+ */
60454
+ tenantId?: string;
60455
+ /**
60456
+ * Gets or sets the Modifed By Id.
60457
+ */
60458
+ modifiedById?: string;
60459
+ /**
60460
+ * Gets or sets the Modifed By Ids.
60461
+ */
60462
+ modifiedByIds?: Array<string>;
60463
+ /**
60464
+ * Gets or sets the Date Created greater than equal to.
60465
+ */
60466
+ dateCreatedGte?: string;
60467
+ /**
60468
+ * Gets or sets the Date Created less than equal to.
60469
+ */
60470
+ dateCreatedLte?: string;
60471
+ /**
60472
+ * Gets or sets the queryable only is live status.
60473
+ */
60474
+ isLive?: boolean;
60475
+ /**
60476
+ * Gets or sets the sort order direction.
60477
+ */
60478
+ sortOrderDirection?: SearchSortOrderDirection;
60479
+ }): CancelablePromise<boolean>;
60480
+ /**
60481
+ * Returns the number of results in the database given the provided search params.
60482
+ * @returns number OK
60483
+ * @throws ApiError
60484
+ */
60485
+ count({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
60486
+ /**
60487
+ * Gets or sets the page number for paged queries.
60488
+ */
60489
+ pageNumber?: number;
60490
+ /**
60491
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
60492
+ */
60493
+ take?: number;
60494
+ /**
60495
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
60496
+ */
60497
+ skip?: number;
60498
+ /**
60499
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
60500
+ */
60501
+ limitListRequests?: boolean;
60502
+ /**
60503
+ * Gets or sets the Tenant Id.
60504
+ */
60505
+ tenantId?: string;
60506
+ /**
60507
+ * Gets or sets the Modifed By Id.
60508
+ */
60509
+ modifiedById?: string;
60510
+ /**
60511
+ * Gets or sets the Modifed By Ids.
60512
+ */
60513
+ modifiedByIds?: Array<string>;
60514
+ /**
60515
+ * Gets or sets the Date Created greater than equal to.
60516
+ */
60517
+ dateCreatedGte?: string;
60518
+ /**
60519
+ * Gets or sets the Date Created less than equal to.
60520
+ */
60521
+ dateCreatedLte?: string;
60522
+ /**
60523
+ * Gets or sets the queryable only is live status.
60524
+ */
60525
+ isLive?: boolean;
60526
+ /**
60527
+ * Gets or sets the sort order direction.
60528
+ */
60529
+ sortOrderDirection?: SearchSortOrderDirection;
60530
+ }): CancelablePromise<number>;
60531
+ /**
60532
+ * Gets a list of resources unpaged and without references.
60533
+ * @returns VenueType OK
60534
+ * @throws ApiError
60535
+ */
60536
+ getListWithoutReferences({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
60537
+ /**
60538
+ * Gets or sets the page number for paged queries.
60539
+ */
60540
+ pageNumber?: number;
60541
+ /**
60542
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
60543
+ */
60544
+ take?: number;
60545
+ /**
60546
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
60547
+ */
60548
+ skip?: number;
60549
+ /**
60550
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
60551
+ */
60552
+ limitListRequests?: boolean;
60553
+ /**
60554
+ * Gets or sets the Tenant Id.
60555
+ */
60556
+ tenantId?: string;
60557
+ /**
60558
+ * Gets or sets the Modifed By Id.
60559
+ */
60560
+ modifiedById?: string;
60561
+ /**
60562
+ * Gets or sets the Modifed By Ids.
60563
+ */
60564
+ modifiedByIds?: Array<string>;
60565
+ /**
60566
+ * Gets or sets the Date Created greater than equal to.
60567
+ */
60568
+ dateCreatedGte?: string;
60569
+ /**
60570
+ * Gets or sets the Date Created less than equal to.
60571
+ */
60572
+ dateCreatedLte?: string;
60573
+ /**
60574
+ * Gets or sets the queryable only is live status.
60575
+ */
60576
+ isLive?: boolean;
60577
+ /**
60578
+ * Gets or sets the sort order direction.
60579
+ */
60580
+ sortOrderDirection?: SearchSortOrderDirection;
60581
+ }): CancelablePromise<Array<VenueType>>;
60582
+ /**
60583
+ * Gets a list of resources.
60584
+ * @returns VenueType OK
60585
+ * @throws ApiError
60586
+ */
60587
+ getListIdName({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
60588
+ /**
60589
+ * Gets or sets the page number for paged queries.
60590
+ */
60591
+ pageNumber?: number;
60592
+ /**
60593
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
60594
+ */
60595
+ take?: number;
60596
+ /**
60597
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
60598
+ */
60599
+ skip?: number;
60600
+ /**
60601
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
60602
+ */
60603
+ limitListRequests?: boolean;
60604
+ /**
60605
+ * Gets or sets the Tenant Id.
60606
+ */
60607
+ tenantId?: string;
60608
+ /**
60609
+ * Gets or sets the Modifed By Id.
60610
+ */
60611
+ modifiedById?: string;
60612
+ /**
60613
+ * Gets or sets the Modifed By Ids.
60614
+ */
60615
+ modifiedByIds?: Array<string>;
60616
+ /**
60617
+ * Gets or sets the Date Created greater than equal to.
60618
+ */
60619
+ dateCreatedGte?: string;
60620
+ /**
60621
+ * Gets or sets the Date Created less than equal to.
60622
+ */
60623
+ dateCreatedLte?: string;
60624
+ /**
60625
+ * Gets or sets the queryable only is live status.
60626
+ */
60627
+ isLive?: boolean;
60628
+ /**
60629
+ * Gets or sets the sort order direction.
60630
+ */
60631
+ sortOrderDirection?: SearchSortOrderDirection;
60632
+ }): CancelablePromise<Array<VenueType>>;
60633
+ }
60634
+
59551
60635
  declare class WaitlistActivityService {
59552
60636
  readonly httpRequest: BaseHttpRequest;
59553
60637
  constructor(httpRequest: BaseHttpRequest);
@@ -61837,6 +62921,7 @@ declare class ApiClient {
61837
62921
  readonly publicSurveys: PublicSurveysService;
61838
62922
  readonly publicTenants: PublicTenantsService;
61839
62923
  readonly publicVenues: PublicVenuesService;
62924
+ readonly publicVenueTypes: PublicVenueTypesService;
61840
62925
  readonly publicWaitlistActivity: PublicWaitlistActivityService;
61841
62926
  readonly publicWaitlistOpportunity: PublicWaitlistOpportunityService;
61842
62927
  readonly recentOrderActivityReport: RecentOrderActivityReportService;
@@ -61873,6 +62958,7 @@ declare class ApiClient {
61873
62958
  readonly venuePerformance: VenuePerformanceService;
61874
62959
  readonly venues: VenuesService;
61875
62960
  readonly venuesReport: VenuesReportService;
62961
+ readonly venueType: VenueTypeService;
61876
62962
  readonly waitlistActivity: WaitlistActivityService;
61877
62963
  readonly waitlistActivityReport: WaitlistActivityReportService;
61878
62964
  readonly waitlistOpportunity: WaitlistOpportunityService;
@@ -62008,4 +63094,4 @@ type ValidationResultModel = {
62008
63094
  readonly errors?: Array<ValidationError> | null;
62009
63095
  };
62010
63096
 
62011
- export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateTemplateFieldPermission, CreateVenue, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EndUserIdentity, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, EventTiming, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FieldPermission, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationReportSummary, LocationsReportService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderApplyDiscountCode, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProviderType, ProviderTypesService, ProvidersService, PublicBookingService, PublicCalendarService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ResolveSecureAccessTokenRequest, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpcomingLayout, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistConversionStatsResponseDto, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
63097
+ export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, 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, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EndUserIdentity, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, EventTiming, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FieldPermission, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationReportSummary, LocationsReportService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderApplyDiscountCode, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, 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, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ResolveSecureAccessTokenRequest, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, 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, Southwest, StripeAccount, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpcomingLayout, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, 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 };