reach-api-sdk 1.0.201 → 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.
- package/dist/reach-sdk.d.ts +298 -13
- package/dist/reach-sdk.js +108 -0
- package/package.json +1 -1
- package/src/definition/swagger.yaml +472 -0
- package/src/index.ts +1 -0
- package/src/models/CreateOffer.ts +16 -0
- package/src/models/GenericActivity.ts +12 -0
- package/src/models/Offer.ts +25 -0
- package/src/models/OfferPost.ts +16 -0
- package/src/models/OrderItemReportSummary.ts +38 -0
- package/src/models/Session.ts +12 -0
- package/src/models/UpdateOffer.ts +16 -0
- package/src/services/OffersService.ts +30 -0
- package/src/services/OrderItemReportService.ts +124 -0
- package/src/services/OrderItemsService.ts +30 -0
- package/src/services/PlacesService.ts +57 -0
- package/src/services/PublicOrderItemsService.ts +12 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -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
|
*/
|
|
@@ -7944,6 +7981,22 @@ type CreateOffer = {
|
|
|
7944
7981
|
* Gets or sets the offer total/gross price.
|
|
7945
7982
|
*/
|
|
7946
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;
|
|
7947
8000
|
};
|
|
7948
8001
|
|
|
7949
8002
|
/**
|
|
@@ -8199,6 +8252,22 @@ type UpdateOffer = {
|
|
|
8199
8252
|
* Gets or sets the offer total/gross price.
|
|
8200
8253
|
*/
|
|
8201
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;
|
|
8202
8271
|
};
|
|
8203
8272
|
|
|
8204
8273
|
/**
|
|
@@ -15762,6 +15831,18 @@ type GenericActivity = {
|
|
|
15762
15831
|
* Gets or sets the description.
|
|
15763
15832
|
*/
|
|
15764
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;
|
|
15765
15846
|
/**
|
|
15766
15847
|
* Gets or sets the image url.
|
|
15767
15848
|
*/
|
|
@@ -21641,6 +21722,22 @@ type OfferPost = {
|
|
|
21641
21722
|
* Gets or sets a value indicating whether the offer is private (available to relevant authenticated users and NOT visible to the public).
|
|
21642
21723
|
*/
|
|
21643
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;
|
|
21644
21741
|
};
|
|
21645
21742
|
|
|
21646
21743
|
declare class OffersService {
|
|
@@ -21706,7 +21803,11 @@ declare class OffersService {
|
|
|
21706
21803
|
* @returns OfferPage OK
|
|
21707
21804
|
* @throws ApiError
|
|
21708
21805
|
*/
|
|
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, }: {
|
|
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>;
|
|
21710
21811
|
/**
|
|
21711
21812
|
* Gets or sets the queryable facility id.
|
|
21712
21813
|
*/
|
|
@@ -21842,7 +21943,11 @@ declare class OffersService {
|
|
|
21842
21943
|
* @returns boolean OK
|
|
21843
21944
|
* @throws ApiError
|
|
21844
21945
|
*/
|
|
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, }: {
|
|
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>;
|
|
21846
21951
|
/**
|
|
21847
21952
|
* Gets or sets the queryable facility id.
|
|
21848
21953
|
*/
|
|
@@ -21945,7 +22050,11 @@ declare class OffersService {
|
|
|
21945
22050
|
* @returns number OK
|
|
21946
22051
|
* @throws ApiError
|
|
21947
22052
|
*/
|
|
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, }: {
|
|
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>;
|
|
21949
22058
|
/**
|
|
21950
22059
|
* Gets or sets the queryable facility id.
|
|
21951
22060
|
*/
|
|
@@ -22048,7 +22157,11 @@ declare class OffersService {
|
|
|
22048
22157
|
* @returns Offer OK
|
|
22049
22158
|
* @throws ApiError
|
|
22050
22159
|
*/
|
|
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, }: {
|
|
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>;
|
|
22052
22165
|
/**
|
|
22053
22166
|
* Gets or sets the queryable facility id.
|
|
22054
22167
|
*/
|
|
@@ -22151,7 +22264,11 @@ declare class OffersService {
|
|
|
22151
22264
|
* @returns Offer OK
|
|
22152
22265
|
* @throws ApiError
|
|
22153
22266
|
*/
|
|
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, }: {
|
|
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>;
|
|
22155
22272
|
/**
|
|
22156
22273
|
* Gets or sets the queryable facility id.
|
|
22157
22274
|
*/
|
|
@@ -24098,6 +24215,40 @@ type OrderItemReportPost = {
|
|
|
24098
24215
|
tenantId: string;
|
|
24099
24216
|
};
|
|
24100
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
|
+
|
|
24101
24252
|
declare class OrderItemReportService {
|
|
24102
24253
|
readonly httpRequest: BaseHttpRequest;
|
|
24103
24254
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -24183,6 +24334,81 @@ declare class OrderItemReportService {
|
|
|
24183
24334
|
Token?: string;
|
|
24184
24335
|
};
|
|
24185
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>;
|
|
24186
24412
|
/**
|
|
24187
24413
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
24188
24414
|
* @returns OrderItemReport OK
|
|
@@ -24767,7 +24993,7 @@ declare class OrderItemsService {
|
|
|
24767
24993
|
* @returns OrderItemPage OK
|
|
24768
24994
|
* @throws ApiError
|
|
24769
24995
|
*/
|
|
24770
|
-
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, }: {
|
|
24771
24997
|
/**
|
|
24772
24998
|
* Gets or sets the queryable order item ids.
|
|
24773
24999
|
*/
|
|
@@ -24788,6 +25014,10 @@ declare class OrderItemsService {
|
|
|
24788
25014
|
* Gets or sets the queryable course id.
|
|
24789
25015
|
*/
|
|
24790
25016
|
courseId?: string;
|
|
25017
|
+
/**
|
|
25018
|
+
* Gets or sets the queryable offer id.
|
|
25019
|
+
*/
|
|
25020
|
+
offerId?: string;
|
|
24791
25021
|
/**
|
|
24792
25022
|
* Gets or sets the queryable order item status id.
|
|
24793
25023
|
*/
|
|
@@ -24895,7 +25125,7 @@ declare class OrderItemsService {
|
|
|
24895
25125
|
* @returns boolean OK
|
|
24896
25126
|
* @throws ApiError
|
|
24897
25127
|
*/
|
|
24898
|
-
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, }: {
|
|
24899
25129
|
/**
|
|
24900
25130
|
* Gets or sets the queryable order item ids.
|
|
24901
25131
|
*/
|
|
@@ -24916,6 +25146,10 @@ declare class OrderItemsService {
|
|
|
24916
25146
|
* Gets or sets the queryable course id.
|
|
24917
25147
|
*/
|
|
24918
25148
|
courseId?: string;
|
|
25149
|
+
/**
|
|
25150
|
+
* Gets or sets the queryable offer id.
|
|
25151
|
+
*/
|
|
25152
|
+
offerId?: string;
|
|
24919
25153
|
/**
|
|
24920
25154
|
* Gets or sets the queryable order item status id.
|
|
24921
25155
|
*/
|
|
@@ -24990,7 +25224,7 @@ declare class OrderItemsService {
|
|
|
24990
25224
|
* @returns number OK
|
|
24991
25225
|
* @throws ApiError
|
|
24992
25226
|
*/
|
|
24993
|
-
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, }: {
|
|
24994
25228
|
/**
|
|
24995
25229
|
* Gets or sets the queryable order item ids.
|
|
24996
25230
|
*/
|
|
@@ -25011,6 +25245,10 @@ declare class OrderItemsService {
|
|
|
25011
25245
|
* Gets or sets the queryable course id.
|
|
25012
25246
|
*/
|
|
25013
25247
|
courseId?: string;
|
|
25248
|
+
/**
|
|
25249
|
+
* Gets or sets the queryable offer id.
|
|
25250
|
+
*/
|
|
25251
|
+
offerId?: string;
|
|
25014
25252
|
/**
|
|
25015
25253
|
* Gets or sets the queryable order item status id.
|
|
25016
25254
|
*/
|
|
@@ -25085,7 +25323,7 @@ declare class OrderItemsService {
|
|
|
25085
25323
|
* @returns OrderItem OK
|
|
25086
25324
|
* @throws ApiError
|
|
25087
25325
|
*/
|
|
25088
|
-
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, }: {
|
|
25089
25327
|
/**
|
|
25090
25328
|
* Gets or sets the queryable order item ids.
|
|
25091
25329
|
*/
|
|
@@ -25106,6 +25344,10 @@ declare class OrderItemsService {
|
|
|
25106
25344
|
* Gets or sets the queryable course id.
|
|
25107
25345
|
*/
|
|
25108
25346
|
courseId?: string;
|
|
25347
|
+
/**
|
|
25348
|
+
* Gets or sets the queryable offer id.
|
|
25349
|
+
*/
|
|
25350
|
+
offerId?: string;
|
|
25109
25351
|
/**
|
|
25110
25352
|
* Gets or sets the queryable order item status id.
|
|
25111
25353
|
*/
|
|
@@ -25180,7 +25422,7 @@ declare class OrderItemsService {
|
|
|
25180
25422
|
* @returns OrderItem OK
|
|
25181
25423
|
* @throws ApiError
|
|
25182
25424
|
*/
|
|
25183
|
-
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, }: {
|
|
25184
25426
|
/**
|
|
25185
25427
|
* Gets or sets the queryable order item ids.
|
|
25186
25428
|
*/
|
|
@@ -25201,6 +25443,10 @@ declare class OrderItemsService {
|
|
|
25201
25443
|
* Gets or sets the queryable course id.
|
|
25202
25444
|
*/
|
|
25203
25445
|
courseId?: string;
|
|
25446
|
+
/**
|
|
25447
|
+
* Gets or sets the queryable offer id.
|
|
25448
|
+
*/
|
|
25449
|
+
offerId?: string;
|
|
25204
25450
|
/**
|
|
25205
25451
|
* Gets or sets the queryable order item status id.
|
|
25206
25452
|
*/
|
|
@@ -28436,6 +28682,37 @@ declare class PlacesService {
|
|
|
28436
28682
|
*/
|
|
28437
28683
|
placeId: string;
|
|
28438
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>;
|
|
28439
28716
|
}
|
|
28440
28717
|
|
|
28441
28718
|
/**
|
|
@@ -33675,7 +33952,7 @@ declare class PublicOrderItemsService {
|
|
|
33675
33952
|
* @returns OrderItemPage OK
|
|
33676
33953
|
* @throws ApiError
|
|
33677
33954
|
*/
|
|
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, }: {
|
|
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, }: {
|
|
33679
33956
|
xTenantSubdomain?: string;
|
|
33680
33957
|
/**
|
|
33681
33958
|
* Gets or sets the queryable order item ids.
|
|
@@ -33697,6 +33974,10 @@ declare class PublicOrderItemsService {
|
|
|
33697
33974
|
* Gets or sets the queryable course id.
|
|
33698
33975
|
*/
|
|
33699
33976
|
courseId?: string;
|
|
33977
|
+
/**
|
|
33978
|
+
* Gets or sets the queryable offer id.
|
|
33979
|
+
*/
|
|
33980
|
+
offerId?: string;
|
|
33700
33981
|
/**
|
|
33701
33982
|
* Gets or sets the queryable order item status id.
|
|
33702
33983
|
*/
|
|
@@ -33880,7 +34161,7 @@ declare class PublicOrderItemsService {
|
|
|
33880
34161
|
* @returns boolean OK
|
|
33881
34162
|
* @throws ApiError
|
|
33882
34163
|
*/
|
|
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, }: {
|
|
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, }: {
|
|
33884
34165
|
/**
|
|
33885
34166
|
* The tenants subdomain.
|
|
33886
34167
|
*/
|
|
@@ -33905,6 +34186,10 @@ declare class PublicOrderItemsService {
|
|
|
33905
34186
|
* Gets or sets the queryable course id.
|
|
33906
34187
|
*/
|
|
33907
34188
|
courseId?: string;
|
|
34189
|
+
/**
|
|
34190
|
+
* Gets or sets the queryable offer id.
|
|
34191
|
+
*/
|
|
34192
|
+
offerId?: string;
|
|
33908
34193
|
/**
|
|
33909
34194
|
* Gets or sets the queryable order item status id.
|
|
33910
34195
|
*/
|
|
@@ -62008,4 +62293,4 @@ type ValidationResultModel = {
|
|
|
62008
62293
|
readonly errors?: Array<ValidationError> | null;
|
|
62009
62294
|
};
|
|
62010
62295
|
|
|
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 };
|
|
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 };
|