reach-api-sdk 1.0.200 → 1.0.202

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.
@@ -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
  */
@@ -5671,6 +5708,18 @@ type OrderItem = {
5671
5708
  * Gets or sets a value indicating whether the order item is rescheduleable.
5672
5709
  */
5673
5710
  rescheduleable?: boolean | null;
5711
+ /**
5712
+ * Gets or sets the unit price before discount.
5713
+ */
5714
+ unitPriceBeforeDiscount?: number | null;
5715
+ /**
5716
+ * Gets or sets the unit price after discount.
5717
+ */
5718
+ unitPriceAfterDiscount?: number | null;
5719
+ /**
5720
+ * Gets or sets the effective item price.
5721
+ */
5722
+ effectiveItemPrice?: number | null;
5674
5723
  };
5675
5724
 
5676
5725
  /**
@@ -7932,6 +7981,22 @@ type CreateOffer = {
7932
7981
  * Gets or sets the offer total/gross price.
7933
7982
  */
7934
7983
  priceTotal: number;
7984
+ /**
7985
+ * Gets or sets the maximum number of this offer that can be sold per opportunity.
7986
+ */
7987
+ maxAvailablePerOpportunity?: number | null;
7988
+ /**
7989
+ * Gets or sets when this offer becomes available for booking.
7990
+ */
7991
+ availableFrom?: string | null;
7992
+ /**
7993
+ * Gets or sets when this offer stops being available for booking.
7994
+ */
7995
+ availableUntil?: string | null;
7996
+ /**
7997
+ * Gets or sets the offer description.
7998
+ */
7999
+ description?: string | null;
7935
8000
  };
7936
8001
 
7937
8002
  /**
@@ -8187,6 +8252,22 @@ type UpdateOffer = {
8187
8252
  * Gets or sets the offer total/gross price.
8188
8253
  */
8189
8254
  priceTotal: number;
8255
+ /**
8256
+ * Gets or sets the maximum number of this offer that can be sold per opportunity.
8257
+ */
8258
+ maxAvailablePerOpportunity?: number | null;
8259
+ /**
8260
+ * Gets or sets when this offer becomes available for booking.
8261
+ */
8262
+ availableFrom?: string | null;
8263
+ /**
8264
+ * Gets or sets when this offer stops being available for booking.
8265
+ */
8266
+ availableUntil?: string | null;
8267
+ /**
8268
+ * Gets or sets the offer description.
8269
+ */
8270
+ description?: string | null;
8190
8271
  };
8191
8272
 
8192
8273
  /**
@@ -15750,6 +15831,18 @@ type GenericActivity = {
15750
15831
  * Gets or sets the description.
15751
15832
  */
15752
15833
  description?: string | null;
15834
+ /**
15835
+ * Gets or sets a description of the schedule.
15836
+ */
15837
+ scheduleDescription?: string | null;
15838
+ /**
15839
+ * Gets or sets a summary of the schedule.
15840
+ */
15841
+ scheduleSummary?: string | null;
15842
+ /**
15843
+ * Gets or sets a value indicating whether the session has a schedule summary.
15844
+ */
15845
+ hasScheduleSummary?: boolean | null;
15753
15846
  /**
15754
15847
  * Gets or sets the image url.
15755
15848
  */
@@ -21629,6 +21722,22 @@ type OfferPost = {
21629
21722
  * Gets or sets a value indicating whether the offer is private (available to relevant authenticated users and NOT visible to the public).
21630
21723
  */
21631
21724
  active?: boolean | null;
21725
+ /**
21726
+ * Gets or sets the maximum number of this offer that can be sold per opportunity.
21727
+ */
21728
+ maxAvailablePerOpportunity?: number | null;
21729
+ /**
21730
+ * Gets or sets when this offer becomes available for booking.
21731
+ */
21732
+ availableFrom?: string | null;
21733
+ /**
21734
+ * Gets or sets when this offer stops being available for booking.
21735
+ */
21736
+ availableUntil?: string | null;
21737
+ /**
21738
+ * Gets or sets the offer description.
21739
+ */
21740
+ description?: string | null;
21632
21741
  };
21633
21742
 
21634
21743
  declare class OffersService {
@@ -21694,7 +21803,11 @@ declare class OffersService {
21694
21803
  * @returns OfferPage OK
21695
21804
  * @throws ApiError
21696
21805
  */
21697
- 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, }: {
21806
+ 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, }: {
21807
+ /**
21808
+ * Gets or sets the queryable ids.
21809
+ */
21810
+ ids?: Array<string>;
21698
21811
  /**
21699
21812
  * Gets or sets the queryable facility id.
21700
21813
  */
@@ -21830,7 +21943,11 @@ declare class OffersService {
21830
21943
  * @returns boolean OK
21831
21944
  * @throws ApiError
21832
21945
  */
21833
- 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, }: {
21946
+ 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, }: {
21947
+ /**
21948
+ * Gets or sets the queryable ids.
21949
+ */
21950
+ ids?: Array<string>;
21834
21951
  /**
21835
21952
  * Gets or sets the queryable facility id.
21836
21953
  */
@@ -21933,7 +22050,11 @@ declare class OffersService {
21933
22050
  * @returns number OK
21934
22051
  * @throws ApiError
21935
22052
  */
21936
- 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, }: {
22053
+ 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, }: {
22054
+ /**
22055
+ * Gets or sets the queryable ids.
22056
+ */
22057
+ ids?: Array<string>;
21937
22058
  /**
21938
22059
  * Gets or sets the queryable facility id.
21939
22060
  */
@@ -22036,7 +22157,11 @@ declare class OffersService {
22036
22157
  * @returns Offer OK
22037
22158
  * @throws ApiError
22038
22159
  */
22039
- 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, }: {
22160
+ 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, }: {
22161
+ /**
22162
+ * Gets or sets the queryable ids.
22163
+ */
22164
+ ids?: Array<string>;
22040
22165
  /**
22041
22166
  * Gets or sets the queryable facility id.
22042
22167
  */
@@ -22139,7 +22264,11 @@ declare class OffersService {
22139
22264
  * @returns Offer OK
22140
22265
  * @throws ApiError
22141
22266
  */
22142
- 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, }: {
22267
+ 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, }: {
22268
+ /**
22269
+ * Gets or sets the queryable ids.
22270
+ */
22271
+ ids?: Array<string>;
22143
22272
  /**
22144
22273
  * Gets or sets the queryable facility id.
22145
22274
  */
@@ -24086,6 +24215,40 @@ type OrderItemReportPost = {
24086
24215
  tenantId: string;
24087
24216
  };
24088
24217
 
24218
+ /**
24219
+ * Represents the order item report summary model.
24220
+ */
24221
+ type OrderItemReportSummary = {
24222
+ /**
24223
+ * Gets or sets the entities Id.
24224
+ */
24225
+ id?: string;
24226
+ /**
24227
+ * Gets or sets the tenant Id.
24228
+ */
24229
+ tenantId: string;
24230
+ /**
24231
+ * Gets or sets the created date of this entity.
24232
+ */
24233
+ dateCreated: string;
24234
+ /**
24235
+ * Gets or sets the last modified date of this entity.
24236
+ */
24237
+ dateModified: string;
24238
+ /**
24239
+ * Gets or sets the modified by Id.
24240
+ */
24241
+ modifiedById?: string | null;
24242
+ /**
24243
+ * Gets or sets a value indicating whether the record is live and available for use within the application.
24244
+ */
24245
+ isLive: boolean;
24246
+ /**
24247
+ * Gets or sets the total revenue generated from order items.
24248
+ */
24249
+ revenueGenerated?: number;
24250
+ };
24251
+
24089
24252
  declare class OrderItemReportService {
24090
24253
  readonly httpRequest: BaseHttpRequest;
24091
24254
  constructor(httpRequest: BaseHttpRequest);
@@ -24171,6 +24334,81 @@ declare class OrderItemReportService {
24171
24334
  Token?: string;
24172
24335
  };
24173
24336
  }): CancelablePromise<any>;
24337
+ /**
24338
+ * Get summary for order items.
24339
+ * @returns OrderItemReportSummary OK
24340
+ * @throws ApiError
24341
+ */
24342
+ getSummary({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
24343
+ /**
24344
+ * Gets or sets the Venue Id.
24345
+ */
24346
+ venueId?: string;
24347
+ /**
24348
+ * Gets or sets the User Id.
24349
+ */
24350
+ userId?: string;
24351
+ /**
24352
+ * Gets or sets the Programme Id.
24353
+ */
24354
+ programmeId?: string;
24355
+ /**
24356
+ * Gets or sets the starting date greater than or equal to.
24357
+ */
24358
+ startDateGte?: string;
24359
+ /**
24360
+ * Gets or sets the starting date less than or equal to.
24361
+ */
24362
+ startDateLte?: string;
24363
+ /**
24364
+ * Gets or sets a custom date range.
24365
+ */
24366
+ dateRange?: CustomDateRange;
24367
+ /**
24368
+ * Gets or sets the page number for paged queries.
24369
+ */
24370
+ pageNumber?: number;
24371
+ /**
24372
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
24373
+ */
24374
+ take?: number;
24375
+ /**
24376
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
24377
+ */
24378
+ skip?: number;
24379
+ /**
24380
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
24381
+ */
24382
+ limitListRequests?: boolean;
24383
+ /**
24384
+ * Gets or sets the Tenant Id.
24385
+ */
24386
+ tenantId?: string;
24387
+ /**
24388
+ * Gets or sets the Modifed By Id.
24389
+ */
24390
+ modifiedById?: string;
24391
+ /**
24392
+ * Gets or sets the Modifed By Ids.
24393
+ */
24394
+ modifiedByIds?: Array<string>;
24395
+ /**
24396
+ * Gets or sets the Date Created greater than equal to.
24397
+ */
24398
+ dateCreatedGte?: string;
24399
+ /**
24400
+ * Gets or sets the Date Created less than equal to.
24401
+ */
24402
+ dateCreatedLte?: string;
24403
+ /**
24404
+ * Gets or sets the queryable only is live status.
24405
+ */
24406
+ isLive?: boolean;
24407
+ /**
24408
+ * Gets or sets the sort order direction.
24409
+ */
24410
+ sortOrderDirection?: SearchSortOrderDirection;
24411
+ }): CancelablePromise<OrderItemReportSummary>;
24174
24412
  /**
24175
24413
  * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
24176
24414
  * @returns OrderItemReport OK
@@ -24755,7 +24993,7 @@ declare class OrderItemsService {
24755
24993
  * @returns OrderItemPage OK
24756
24994
  * @throws ApiError
24757
24995
  */
24758
- getPage({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
24996
+ getPage({ ids, orderId, scheduledSessionId, slotId, courseId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
24759
24997
  /**
24760
24998
  * Gets or sets the queryable order item ids.
24761
24999
  */
@@ -24776,6 +25014,10 @@ declare class OrderItemsService {
24776
25014
  * Gets or sets the queryable course id.
24777
25015
  */
24778
25016
  courseId?: string;
25017
+ /**
25018
+ * Gets or sets the queryable offer id.
25019
+ */
25020
+ offerId?: string;
24779
25021
  /**
24780
25022
  * Gets or sets the queryable order item status id.
24781
25023
  */
@@ -24883,7 +25125,7 @@ declare class OrderItemsService {
24883
25125
  * @returns boolean OK
24884
25126
  * @throws ApiError
24885
25127
  */
24886
- exists({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
25128
+ exists({ ids, orderId, scheduledSessionId, slotId, courseId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
24887
25129
  /**
24888
25130
  * Gets or sets the queryable order item ids.
24889
25131
  */
@@ -24904,6 +25146,10 @@ declare class OrderItemsService {
24904
25146
  * Gets or sets the queryable course id.
24905
25147
  */
24906
25148
  courseId?: string;
25149
+ /**
25150
+ * Gets or sets the queryable offer id.
25151
+ */
25152
+ offerId?: string;
24907
25153
  /**
24908
25154
  * Gets or sets the queryable order item status id.
24909
25155
  */
@@ -24978,7 +25224,7 @@ declare class OrderItemsService {
24978
25224
  * @returns number OK
24979
25225
  * @throws ApiError
24980
25226
  */
24981
- count({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
25227
+ count({ ids, orderId, scheduledSessionId, slotId, courseId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
24982
25228
  /**
24983
25229
  * Gets or sets the queryable order item ids.
24984
25230
  */
@@ -24999,6 +25245,10 @@ declare class OrderItemsService {
24999
25245
  * Gets or sets the queryable course id.
25000
25246
  */
25001
25247
  courseId?: string;
25248
+ /**
25249
+ * Gets or sets the queryable offer id.
25250
+ */
25251
+ offerId?: string;
25002
25252
  /**
25003
25253
  * Gets or sets the queryable order item status id.
25004
25254
  */
@@ -25073,7 +25323,7 @@ declare class OrderItemsService {
25073
25323
  * @returns OrderItem OK
25074
25324
  * @throws ApiError
25075
25325
  */
25076
- getListWithoutReferences({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
25326
+ getListWithoutReferences({ ids, orderId, scheduledSessionId, slotId, courseId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
25077
25327
  /**
25078
25328
  * Gets or sets the queryable order item ids.
25079
25329
  */
@@ -25094,6 +25344,10 @@ declare class OrderItemsService {
25094
25344
  * Gets or sets the queryable course id.
25095
25345
  */
25096
25346
  courseId?: string;
25347
+ /**
25348
+ * Gets or sets the queryable offer id.
25349
+ */
25350
+ offerId?: string;
25097
25351
  /**
25098
25352
  * Gets or sets the queryable order item status id.
25099
25353
  */
@@ -25168,7 +25422,7 @@ declare class OrderItemsService {
25168
25422
  * @returns OrderItem OK
25169
25423
  * @throws ApiError
25170
25424
  */
25171
- getListIdName({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
25425
+ getListIdName({ ids, orderId, scheduledSessionId, slotId, courseId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
25172
25426
  /**
25173
25427
  * Gets or sets the queryable order item ids.
25174
25428
  */
@@ -25189,6 +25443,10 @@ declare class OrderItemsService {
25189
25443
  * Gets or sets the queryable course id.
25190
25444
  */
25191
25445
  courseId?: string;
25446
+ /**
25447
+ * Gets or sets the queryable offer id.
25448
+ */
25449
+ offerId?: string;
25192
25450
  /**
25193
25451
  * Gets or sets the queryable order item status id.
25194
25452
  */
@@ -28424,6 +28682,37 @@ declare class PlacesService {
28424
28682
  */
28425
28683
  placeId: string;
28426
28684
  }): CancelablePromise<PlaceDetailsResponseModel>;
28685
+ /**
28686
+ * GetPrediction.
28687
+ * @returns any OK
28688
+ * @throws ApiError
28689
+ */
28690
+ getStaticMap({ lat, lng, zoom, width, height, type, }: {
28691
+ /**
28692
+ * lat.
28693
+ */
28694
+ lat?: number;
28695
+ /**
28696
+ * lng.
28697
+ */
28698
+ lng?: number;
28699
+ /**
28700
+ * zoom.
28701
+ */
28702
+ zoom?: number;
28703
+ /**
28704
+ * width.
28705
+ */
28706
+ width?: number;
28707
+ /**
28708
+ * height.
28709
+ */
28710
+ height?: number;
28711
+ /**
28712
+ * type.
28713
+ */
28714
+ type?: string;
28715
+ }): CancelablePromise<any>;
28427
28716
  }
28428
28717
 
28429
28718
  /**
@@ -33663,7 +33952,7 @@ declare class PublicOrderItemsService {
33663
33952
  * @returns OrderItemPage OK
33664
33953
  * @throws ApiError
33665
33954
  */
33666
- getPage({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
33955
+ 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, }: {
33667
33956
  xTenantSubdomain?: string;
33668
33957
  /**
33669
33958
  * Gets or sets the queryable order item ids.
@@ -33685,6 +33974,10 @@ declare class PublicOrderItemsService {
33685
33974
  * Gets or sets the queryable course id.
33686
33975
  */
33687
33976
  courseId?: string;
33977
+ /**
33978
+ * Gets or sets the queryable offer id.
33979
+ */
33980
+ offerId?: string;
33688
33981
  /**
33689
33982
  * Gets or sets the queryable order item status id.
33690
33983
  */
@@ -33868,7 +34161,7 @@ declare class PublicOrderItemsService {
33868
34161
  * @returns boolean OK
33869
34162
  * @throws ApiError
33870
34163
  */
33871
- exists({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
34164
+ 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, }: {
33872
34165
  /**
33873
34166
  * The tenants subdomain.
33874
34167
  */
@@ -33893,6 +34186,10 @@ declare class PublicOrderItemsService {
33893
34186
  * Gets or sets the queryable course id.
33894
34187
  */
33895
34188
  courseId?: string;
34189
+ /**
34190
+ * Gets or sets the queryable offer id.
34191
+ */
34192
+ offerId?: string;
33896
34193
  /**
33897
34194
  * Gets or sets the queryable order item status id.
33898
34195
  */
@@ -61996,4 +62293,4 @@ type ValidationResultModel = {
61996
62293
  readonly errors?: Array<ValidationError> | null;
61997
62294
  };
61998
62295
 
61999
- 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 };
62296
+ 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, 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, 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 };