reach-api-sdk 1.0.190 → 1.0.191
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 +296 -205
- package/dist/reach-sdk.js +216 -182
- package/package.json +1 -1
- package/src/definition/swagger.yaml +624 -507
- package/src/index.ts +2 -0
- package/src/models/EndUserIdentity.ts +30 -0
- package/src/models/EndUserIdentitySecureToken.ts +2 -0
- package/src/models/EventTiming.ts +12 -0
- package/src/services/DealsService.ts +24 -0
- package/src/services/EndUserIdentitySecureTokenService.ts +4 -4
- package/src/services/OrderItemsService.ts +49 -0
- package/src/services/PublicOrderItemsService.ts +189 -168
- package/src/services/PublicOrdersService.ts +227 -231
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -11364,7 +11364,7 @@ declare class DealsService {
|
|
|
11364
11364
|
* @returns DealPage OK
|
|
11365
11365
|
* @throws ApiError
|
|
11366
11366
|
*/
|
|
11367
|
-
getPage({ id, ids, target, type, discountCode, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11367
|
+
getPage({ id, ids, target, type, types, discountCode, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11368
11368
|
/**
|
|
11369
11369
|
* Gets or sets the queryable Deal Id.
|
|
11370
11370
|
*/
|
|
@@ -11381,6 +11381,10 @@ declare class DealsService {
|
|
|
11381
11381
|
* Gets or sets the queryable type.
|
|
11382
11382
|
*/
|
|
11383
11383
|
type?: DealType;
|
|
11384
|
+
/**
|
|
11385
|
+
* Gets or sets the queryable Deal types.
|
|
11386
|
+
*/
|
|
11387
|
+
types?: Array<DealType>;
|
|
11384
11388
|
/**
|
|
11385
11389
|
* Gets or sets the queryable discount code.
|
|
11386
11390
|
*/
|
|
@@ -11468,7 +11472,7 @@ declare class DealsService {
|
|
|
11468
11472
|
* @returns boolean OK
|
|
11469
11473
|
* @throws ApiError
|
|
11470
11474
|
*/
|
|
11471
|
-
exists({ id, ids, target, type, discountCode, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11475
|
+
exists({ id, ids, target, type, types, discountCode, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11472
11476
|
/**
|
|
11473
11477
|
* Gets or sets the queryable Deal Id.
|
|
11474
11478
|
*/
|
|
@@ -11485,6 +11489,10 @@ declare class DealsService {
|
|
|
11485
11489
|
* Gets or sets the queryable type.
|
|
11486
11490
|
*/
|
|
11487
11491
|
type?: DealType;
|
|
11492
|
+
/**
|
|
11493
|
+
* Gets or sets the queryable Deal types.
|
|
11494
|
+
*/
|
|
11495
|
+
types?: Array<DealType>;
|
|
11488
11496
|
/**
|
|
11489
11497
|
* Gets or sets the queryable discount code.
|
|
11490
11498
|
*/
|
|
@@ -11539,7 +11547,7 @@ declare class DealsService {
|
|
|
11539
11547
|
* @returns Deal OK
|
|
11540
11548
|
* @throws ApiError
|
|
11541
11549
|
*/
|
|
11542
|
-
getListWithoutReferences({ id, ids, target, type, discountCode, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11550
|
+
getListWithoutReferences({ id, ids, target, type, types, discountCode, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11543
11551
|
/**
|
|
11544
11552
|
* Gets or sets the queryable Deal Id.
|
|
11545
11553
|
*/
|
|
@@ -11556,6 +11564,10 @@ declare class DealsService {
|
|
|
11556
11564
|
* Gets or sets the queryable type.
|
|
11557
11565
|
*/
|
|
11558
11566
|
type?: DealType;
|
|
11567
|
+
/**
|
|
11568
|
+
* Gets or sets the queryable Deal types.
|
|
11569
|
+
*/
|
|
11570
|
+
types?: Array<DealType>;
|
|
11559
11571
|
/**
|
|
11560
11572
|
* Gets or sets the queryable discount code.
|
|
11561
11573
|
*/
|
|
@@ -11610,7 +11622,7 @@ declare class DealsService {
|
|
|
11610
11622
|
* @returns Deal OK
|
|
11611
11623
|
* @throws ApiError
|
|
11612
11624
|
*/
|
|
11613
|
-
getListIdName({ id, ids, target, type, discountCode, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11625
|
+
getListIdName({ id, ids, target, type, types, discountCode, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11614
11626
|
/**
|
|
11615
11627
|
* Gets or sets the queryable Deal Id.
|
|
11616
11628
|
*/
|
|
@@ -11627,6 +11639,10 @@ declare class DealsService {
|
|
|
11627
11639
|
* Gets or sets the queryable type.
|
|
11628
11640
|
*/
|
|
11629
11641
|
type?: DealType;
|
|
11642
|
+
/**
|
|
11643
|
+
* Gets or sets the queryable Deal types.
|
|
11644
|
+
*/
|
|
11645
|
+
types?: Array<DealType>;
|
|
11630
11646
|
/**
|
|
11631
11647
|
* Gets or sets the queryable discount code.
|
|
11632
11648
|
*/
|
|
@@ -13048,6 +13064,32 @@ declare class EmailSettingsService {
|
|
|
13048
13064
|
}): CancelablePromise<Array<EmailSetting>>;
|
|
13049
13065
|
}
|
|
13050
13066
|
|
|
13067
|
+
/**
|
|
13068
|
+
* Represents an end user identity within the Reach application.
|
|
13069
|
+
*/
|
|
13070
|
+
type EndUserIdentity = {
|
|
13071
|
+
/**
|
|
13072
|
+
* Gets or sets the activities Id.
|
|
13073
|
+
*/
|
|
13074
|
+
id?: string;
|
|
13075
|
+
/**
|
|
13076
|
+
* Gets or sets the canonical email.
|
|
13077
|
+
*/
|
|
13078
|
+
canonicalEmail?: string | null;
|
|
13079
|
+
/**
|
|
13080
|
+
* Gets or sets the first name.
|
|
13081
|
+
*/
|
|
13082
|
+
firstName?: string | null;
|
|
13083
|
+
/**
|
|
13084
|
+
* Gets or sets the last name.
|
|
13085
|
+
*/
|
|
13086
|
+
lastName?: string | null;
|
|
13087
|
+
/**
|
|
13088
|
+
* Gets or sets the date created.
|
|
13089
|
+
*/
|
|
13090
|
+
dateCreated?: string;
|
|
13091
|
+
};
|
|
13092
|
+
|
|
13051
13093
|
/**
|
|
13052
13094
|
* Represents an end user identity within the Reach application.
|
|
13053
13095
|
*/
|
|
@@ -13077,6 +13119,7 @@ type EndUserIdentitySecureToken = {
|
|
|
13077
13119
|
*/
|
|
13078
13120
|
isActive?: boolean;
|
|
13079
13121
|
tenant?: Tenant;
|
|
13122
|
+
endUserIdentity?: EndUserIdentity;
|
|
13080
13123
|
};
|
|
13081
13124
|
|
|
13082
13125
|
/**
|
|
@@ -21847,6 +21890,14 @@ declare class OrderItemReportService {
|
|
|
21847
21890
|
}): CancelablePromise<Array<OrderItemReport>>;
|
|
21848
21891
|
}
|
|
21849
21892
|
|
|
21893
|
+
/**
|
|
21894
|
+
* EventTiming.
|
|
21895
|
+
*/
|
|
21896
|
+
declare enum EventTiming {
|
|
21897
|
+
UPCOMING = "Upcoming",
|
|
21898
|
+
PAST = "Past"
|
|
21899
|
+
}
|
|
21900
|
+
|
|
21850
21901
|
type OrderItemPage = {
|
|
21851
21902
|
pagination: Pagination;
|
|
21852
21903
|
readonly items: Array<OrderItem>;
|
|
@@ -21958,7 +22009,7 @@ declare class OrderItemsService {
|
|
|
21958
22009
|
* @returns OrderItemPage OK
|
|
21959
22010
|
* @throws ApiError
|
|
21960
22011
|
*/
|
|
21961
|
-
getPage({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22012
|
+
getPage({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
21962
22013
|
/**
|
|
21963
22014
|
* Gets or sets the queryable order item ids.
|
|
21964
22015
|
*/
|
|
@@ -21991,6 +22042,14 @@ declare class OrderItemsService {
|
|
|
21991
22042
|
* Gets or sets the queryable parent order item id id.
|
|
21992
22043
|
*/
|
|
21993
22044
|
parentOrderItemId?: string;
|
|
22045
|
+
/**
|
|
22046
|
+
* Gets or sets the queryable order by opportunity start date value.
|
|
22047
|
+
*/
|
|
22048
|
+
orderByOpportunityStartdate?: boolean;
|
|
22049
|
+
/**
|
|
22050
|
+
* Gets or sets the queryable event timing.
|
|
22051
|
+
*/
|
|
22052
|
+
eventTiming?: EventTiming;
|
|
21994
22053
|
/**
|
|
21995
22054
|
* Gets or sets the page number for paged queries.
|
|
21996
22055
|
*/
|
|
@@ -22074,7 +22133,7 @@ declare class OrderItemsService {
|
|
|
22074
22133
|
* @returns boolean OK
|
|
22075
22134
|
* @throws ApiError
|
|
22076
22135
|
*/
|
|
22077
|
-
exists({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22136
|
+
exists({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22078
22137
|
/**
|
|
22079
22138
|
* Gets or sets the queryable order item ids.
|
|
22080
22139
|
*/
|
|
@@ -22107,6 +22166,14 @@ declare class OrderItemsService {
|
|
|
22107
22166
|
* Gets or sets the queryable parent order item id id.
|
|
22108
22167
|
*/
|
|
22109
22168
|
parentOrderItemId?: string;
|
|
22169
|
+
/**
|
|
22170
|
+
* Gets or sets the queryable order by opportunity start date value.
|
|
22171
|
+
*/
|
|
22172
|
+
orderByOpportunityStartdate?: boolean;
|
|
22173
|
+
/**
|
|
22174
|
+
* Gets or sets the queryable event timing.
|
|
22175
|
+
*/
|
|
22176
|
+
eventTiming?: EventTiming;
|
|
22110
22177
|
/**
|
|
22111
22178
|
* Gets or sets the page number for paged queries.
|
|
22112
22179
|
*/
|
|
@@ -22157,7 +22224,7 @@ declare class OrderItemsService {
|
|
|
22157
22224
|
* @returns OrderItem OK
|
|
22158
22225
|
* @throws ApiError
|
|
22159
22226
|
*/
|
|
22160
|
-
getListWithoutReferences({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22227
|
+
getListWithoutReferences({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22161
22228
|
/**
|
|
22162
22229
|
* Gets or sets the queryable order item ids.
|
|
22163
22230
|
*/
|
|
@@ -22190,6 +22257,14 @@ declare class OrderItemsService {
|
|
|
22190
22257
|
* Gets or sets the queryable parent order item id id.
|
|
22191
22258
|
*/
|
|
22192
22259
|
parentOrderItemId?: string;
|
|
22260
|
+
/**
|
|
22261
|
+
* Gets or sets the queryable order by opportunity start date value.
|
|
22262
|
+
*/
|
|
22263
|
+
orderByOpportunityStartdate?: boolean;
|
|
22264
|
+
/**
|
|
22265
|
+
* Gets or sets the queryable event timing.
|
|
22266
|
+
*/
|
|
22267
|
+
eventTiming?: EventTiming;
|
|
22193
22268
|
/**
|
|
22194
22269
|
* Gets or sets the page number for paged queries.
|
|
22195
22270
|
*/
|
|
@@ -22240,7 +22315,7 @@ declare class OrderItemsService {
|
|
|
22240
22315
|
* @returns OrderItem OK
|
|
22241
22316
|
* @throws ApiError
|
|
22242
22317
|
*/
|
|
22243
|
-
getListIdName({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22318
|
+
getListIdName({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22244
22319
|
/**
|
|
22245
22320
|
* Gets or sets the queryable order item ids.
|
|
22246
22321
|
*/
|
|
@@ -22273,6 +22348,14 @@ declare class OrderItemsService {
|
|
|
22273
22348
|
* Gets or sets the queryable parent order item id id.
|
|
22274
22349
|
*/
|
|
22275
22350
|
parentOrderItemId?: string;
|
|
22351
|
+
/**
|
|
22352
|
+
* Gets or sets the queryable order by opportunity start date value.
|
|
22353
|
+
*/
|
|
22354
|
+
orderByOpportunityStartdate?: boolean;
|
|
22355
|
+
/**
|
|
22356
|
+
* Gets or sets the queryable event timing.
|
|
22357
|
+
*/
|
|
22358
|
+
eventTiming?: EventTiming;
|
|
22276
22359
|
/**
|
|
22277
22360
|
* Gets or sets the page number for paged queries.
|
|
22278
22361
|
*/
|
|
@@ -29914,6 +29997,112 @@ declare class PublicOpportunityRegisterService {
|
|
|
29914
29997
|
declare class PublicOrderItemsService {
|
|
29915
29998
|
readonly httpRequest: BaseHttpRequest;
|
|
29916
29999
|
constructor(httpRequest: BaseHttpRequest);
|
|
30000
|
+
/**
|
|
30001
|
+
* @returns OrderItemPage OK
|
|
30002
|
+
* @throws ApiError
|
|
30003
|
+
*/
|
|
30004
|
+
getPage({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
30005
|
+
xTenantSubdomain?: string;
|
|
30006
|
+
/**
|
|
30007
|
+
* Gets or sets the queryable order item ids.
|
|
30008
|
+
*/
|
|
30009
|
+
ids?: Array<string>;
|
|
30010
|
+
/**
|
|
30011
|
+
* Gets or sets the queryable order id.
|
|
30012
|
+
*/
|
|
30013
|
+
orderId?: string;
|
|
30014
|
+
/**
|
|
30015
|
+
* Gets or sets the queryable scheduled session id.
|
|
30016
|
+
*/
|
|
30017
|
+
scheduledSessionId?: string;
|
|
30018
|
+
/**
|
|
30019
|
+
* Gets or sets the queryable slot id.
|
|
30020
|
+
*/
|
|
30021
|
+
slotId?: string;
|
|
30022
|
+
/**
|
|
30023
|
+
* Gets or sets the queryable course id.
|
|
30024
|
+
*/
|
|
30025
|
+
courseId?: string;
|
|
30026
|
+
/**
|
|
30027
|
+
* Gets or sets the queryable order item status id.
|
|
30028
|
+
*/
|
|
30029
|
+
status?: OrderItemStatus;
|
|
30030
|
+
/**
|
|
30031
|
+
* Gets or sets the queryable order statuses.
|
|
30032
|
+
*/
|
|
30033
|
+
statuses?: Array<OrderItemStatus>;
|
|
30034
|
+
/**
|
|
30035
|
+
* Gets or sets the queryable parent order item id id.
|
|
30036
|
+
*/
|
|
30037
|
+
parentOrderItemId?: string;
|
|
30038
|
+
/**
|
|
30039
|
+
* Gets or sets the queryable order by opportunity start date value.
|
|
30040
|
+
*/
|
|
30041
|
+
orderByOpportunityStartdate?: boolean;
|
|
30042
|
+
/**
|
|
30043
|
+
* Gets or sets the queryable event timing.
|
|
30044
|
+
*/
|
|
30045
|
+
eventTiming?: EventTiming;
|
|
30046
|
+
/**
|
|
30047
|
+
* Gets or sets the page number for paged queries.
|
|
30048
|
+
*/
|
|
30049
|
+
pageNumber?: number;
|
|
30050
|
+
/**
|
|
30051
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
30052
|
+
*/
|
|
30053
|
+
take?: number;
|
|
30054
|
+
/**
|
|
30055
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
30056
|
+
*/
|
|
30057
|
+
skip?: number;
|
|
30058
|
+
/**
|
|
30059
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
30060
|
+
*/
|
|
30061
|
+
limitListRequests?: boolean;
|
|
30062
|
+
/**
|
|
30063
|
+
* Gets or sets the Tenant Id.
|
|
30064
|
+
*/
|
|
30065
|
+
tenantId?: string;
|
|
30066
|
+
/**
|
|
30067
|
+
* Gets or sets the Modifed By Id.
|
|
30068
|
+
*/
|
|
30069
|
+
modifiedById?: string;
|
|
30070
|
+
/**
|
|
30071
|
+
* Gets or sets the Modifed By Ids.
|
|
30072
|
+
*/
|
|
30073
|
+
modifiedByIds?: Array<string>;
|
|
30074
|
+
/**
|
|
30075
|
+
* Gets or sets the Date Created greater than equal to.
|
|
30076
|
+
*/
|
|
30077
|
+
dateCreatedGte?: string;
|
|
30078
|
+
/**
|
|
30079
|
+
* Gets or sets the Date Created less than equal to.
|
|
30080
|
+
*/
|
|
30081
|
+
dateCreatedLte?: string;
|
|
30082
|
+
/**
|
|
30083
|
+
* Gets or sets the queryable only is live status.
|
|
30084
|
+
*/
|
|
30085
|
+
isLive?: boolean;
|
|
30086
|
+
/**
|
|
30087
|
+
* Gets or sets the sort order direction.
|
|
30088
|
+
*/
|
|
30089
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
30090
|
+
}): CancelablePromise<OrderItemPage>;
|
|
30091
|
+
/**
|
|
30092
|
+
* Deletes the resource.
|
|
30093
|
+
* @returns any OK
|
|
30094
|
+
* @throws ApiError
|
|
30095
|
+
*/
|
|
30096
|
+
deleteByObject({ xTenantSubdomain, requestBody, }: {
|
|
30097
|
+
/**
|
|
30098
|
+
* The tenants subdomain.
|
|
30099
|
+
*/
|
|
30100
|
+
xTenantSubdomain?: string;
|
|
30101
|
+
/**
|
|
30102
|
+
* The <typeparamref name="TObject" /> model.
|
|
30103
|
+
*/
|
|
30104
|
+
requestBody?: OrderItem;
|
|
30105
|
+
}): CancelablePromise<any>;
|
|
29917
30106
|
/**
|
|
29918
30107
|
* Reschedules the order item to another scheduled session.
|
|
29919
30108
|
* @returns OrderItem OK
|
|
@@ -29983,22 +30172,37 @@ declare class PublicOrderItemsService {
|
|
|
29983
30172
|
* @returns any OK
|
|
29984
30173
|
* @throws ApiError
|
|
29985
30174
|
*/
|
|
29986
|
-
|
|
30175
|
+
deleteById({ id, xTenantSubdomain, }: {
|
|
30176
|
+
/**
|
|
30177
|
+
* The <typeparamref name="TObject" /> id.
|
|
30178
|
+
*/
|
|
30179
|
+
id: string;
|
|
29987
30180
|
/**
|
|
29988
30181
|
* The tenants subdomain.
|
|
29989
30182
|
*/
|
|
29990
30183
|
xTenantSubdomain?: string;
|
|
30184
|
+
}): CancelablePromise<any>;
|
|
30185
|
+
/**
|
|
30186
|
+
* Gets the resource by its Id.
|
|
30187
|
+
* @returns OrderItem OK
|
|
30188
|
+
* @throws ApiError
|
|
30189
|
+
*/
|
|
30190
|
+
getObject({ id, xTenantSubdomain, }: {
|
|
29991
30191
|
/**
|
|
29992
|
-
* The <typeparamref name="TObject" />
|
|
30192
|
+
* The <typeparamref name="TObject" /> id.
|
|
29993
30193
|
*/
|
|
29994
|
-
|
|
29995
|
-
|
|
30194
|
+
id: string;
|
|
30195
|
+
/**
|
|
30196
|
+
* The tenants subdomain.
|
|
30197
|
+
*/
|
|
30198
|
+
xTenantSubdomain?: string;
|
|
30199
|
+
}): CancelablePromise<OrderItem>;
|
|
29996
30200
|
/**
|
|
29997
|
-
*
|
|
29998
|
-
* @returns
|
|
30201
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
30202
|
+
* @returns boolean OK
|
|
29999
30203
|
* @throws ApiError
|
|
30000
30204
|
*/
|
|
30001
|
-
|
|
30205
|
+
exists({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
30002
30206
|
/**
|
|
30003
30207
|
* The tenants subdomain.
|
|
30004
30208
|
*/
|
|
@@ -30035,6 +30239,14 @@ declare class PublicOrderItemsService {
|
|
|
30035
30239
|
* Gets or sets the queryable parent order item id id.
|
|
30036
30240
|
*/
|
|
30037
30241
|
parentOrderItemId?: string;
|
|
30242
|
+
/**
|
|
30243
|
+
* Gets or sets the queryable order by opportunity start date value.
|
|
30244
|
+
*/
|
|
30245
|
+
orderByOpportunityStartdate?: boolean;
|
|
30246
|
+
/**
|
|
30247
|
+
* Gets or sets the queryable event timing.
|
|
30248
|
+
*/
|
|
30249
|
+
eventTiming?: EventTiming;
|
|
30038
30250
|
/**
|
|
30039
30251
|
* Gets or sets the page number for paged queries.
|
|
30040
30252
|
*/
|
|
@@ -30079,7 +30291,20 @@ declare class PublicOrderItemsService {
|
|
|
30079
30291
|
* Gets or sets the sort order direction.
|
|
30080
30292
|
*/
|
|
30081
30293
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
30082
|
-
}): CancelablePromise<
|
|
30294
|
+
}): CancelablePromise<boolean>;
|
|
30295
|
+
}
|
|
30296
|
+
|
|
30297
|
+
declare class PublicOrdersService {
|
|
30298
|
+
readonly httpRequest: BaseHttpRequest;
|
|
30299
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
30300
|
+
/**
|
|
30301
|
+
* @returns Order OK
|
|
30302
|
+
* @throws ApiError
|
|
30303
|
+
*/
|
|
30304
|
+
getObject({ id, xTenantSubdomain, }: {
|
|
30305
|
+
id: string;
|
|
30306
|
+
xTenantSubdomain?: string;
|
|
30307
|
+
}): CancelablePromise<Order>;
|
|
30083
30308
|
/**
|
|
30084
30309
|
* Deletes the resource.
|
|
30085
30310
|
* @returns any OK
|
|
@@ -30096,62 +30321,79 @@ declare class PublicOrderItemsService {
|
|
|
30096
30321
|
xTenantSubdomain?: string;
|
|
30097
30322
|
}): CancelablePromise<any>;
|
|
30098
30323
|
/**
|
|
30099
|
-
*
|
|
30100
|
-
* @returns OrderItem OK
|
|
30324
|
+
* @returns OrderPage OK
|
|
30101
30325
|
* @throws ApiError
|
|
30102
30326
|
*/
|
|
30103
|
-
|
|
30327
|
+
getPage({ xTenantSubdomain, wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
30328
|
+
xTenantSubdomain?: string;
|
|
30104
30329
|
/**
|
|
30105
|
-
*
|
|
30330
|
+
* Gets or sets the wildcard for use in a query search.
|
|
30106
30331
|
*/
|
|
30107
|
-
|
|
30332
|
+
wildcard?: string;
|
|
30108
30333
|
/**
|
|
30109
|
-
*
|
|
30334
|
+
* Gets or sets the access code for use in a query search.
|
|
30110
30335
|
*/
|
|
30111
|
-
|
|
30112
|
-
}): CancelablePromise<OrderItem>;
|
|
30113
|
-
/**
|
|
30114
|
-
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
30115
|
-
* @returns boolean OK
|
|
30116
|
-
* @throws ApiError
|
|
30117
|
-
*/
|
|
30118
|
-
exists({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
30336
|
+
accessCode?: string;
|
|
30119
30337
|
/**
|
|
30120
|
-
*
|
|
30338
|
+
* Gets or sets the customer name for use in a query search.
|
|
30121
30339
|
*/
|
|
30122
|
-
|
|
30340
|
+
customerName?: string;
|
|
30123
30341
|
/**
|
|
30124
|
-
* Gets or sets the
|
|
30342
|
+
* Gets or sets the email for use in a query search.
|
|
30125
30343
|
*/
|
|
30126
|
-
|
|
30344
|
+
email?: string;
|
|
30127
30345
|
/**
|
|
30128
|
-
* Gets or sets the
|
|
30346
|
+
* Gets or sets the provider Id for use in a query search.
|
|
30129
30347
|
*/
|
|
30130
|
-
|
|
30348
|
+
providerId?: string;
|
|
30131
30349
|
/**
|
|
30132
|
-
* Gets or sets the
|
|
30350
|
+
* Gets or sets the venue Id for use in a query search.
|
|
30133
30351
|
*/
|
|
30134
|
-
|
|
30352
|
+
venueId?: string;
|
|
30135
30353
|
/**
|
|
30136
|
-
* Gets or sets the
|
|
30354
|
+
* Gets or sets the programme Id for use in a query search.
|
|
30137
30355
|
*/
|
|
30138
|
-
|
|
30356
|
+
programmeId?: string;
|
|
30139
30357
|
/**
|
|
30140
|
-
* Gets or sets the
|
|
30358
|
+
* Gets or sets the customer Id for use in a query search.
|
|
30359
|
+
*/
|
|
30360
|
+
customerId?: string;
|
|
30361
|
+
/**
|
|
30362
|
+
* Gets or sets the queryable order ids.
|
|
30363
|
+
*/
|
|
30364
|
+
orderIds?: Array<string>;
|
|
30365
|
+
/**
|
|
30366
|
+
* Gets or sets the session Id for use in a query search.
|
|
30367
|
+
*/
|
|
30368
|
+
sessionId?: string;
|
|
30369
|
+
/**
|
|
30370
|
+
* Gets or sets the facility Id for use in a query search.
|
|
30371
|
+
*/
|
|
30372
|
+
facilityId?: string;
|
|
30373
|
+
/**
|
|
30374
|
+
* Gets or sets the course Id for use in a query search.
|
|
30141
30375
|
*/
|
|
30142
30376
|
courseId?: string;
|
|
30143
30377
|
/**
|
|
30144
|
-
* Gets or sets the queryable order
|
|
30378
|
+
* Gets or sets the queryable order stage. This cannot be used in conjunction with IsBookedOrPendingPayment.
|
|
30145
30379
|
*/
|
|
30146
|
-
|
|
30380
|
+
orderStage?: OrderStage;
|
|
30147
30381
|
/**
|
|
30148
|
-
* Gets or sets
|
|
30382
|
+
* Gets or sets a value indicating whether to return orders that are either booked or pending payment. This cannot be used in conjunction with OrderStage.
|
|
30149
30383
|
*/
|
|
30150
|
-
|
|
30384
|
+
isBookedOrPendingPayment?: boolean;
|
|
30151
30385
|
/**
|
|
30152
|
-
* Gets or sets the queryable
|
|
30386
|
+
* Gets or sets the queryable order stages.
|
|
30153
30387
|
*/
|
|
30154
|
-
|
|
30388
|
+
orderStages?: Array<OrderStage>;
|
|
30389
|
+
/**
|
|
30390
|
+
* Gets or sets the queryable order date creted is greater than or equal to.
|
|
30391
|
+
*/
|
|
30392
|
+
orderDateGte?: string;
|
|
30393
|
+
/**
|
|
30394
|
+
* Gets or sets the queryable order date created is less than or equal to.
|
|
30395
|
+
*/
|
|
30396
|
+
orderDateLte?: string;
|
|
30155
30397
|
/**
|
|
30156
30398
|
* Gets or sets the page number for paged queries.
|
|
30157
30399
|
*/
|
|
@@ -30196,34 +30438,21 @@ declare class PublicOrderItemsService {
|
|
|
30196
30438
|
* Gets or sets the sort order direction.
|
|
30197
30439
|
*/
|
|
30198
30440
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
30199
|
-
}): CancelablePromise<
|
|
30200
|
-
}
|
|
30201
|
-
|
|
30202
|
-
declare class PublicOrdersService {
|
|
30203
|
-
readonly httpRequest: BaseHttpRequest;
|
|
30204
|
-
constructor(httpRequest: BaseHttpRequest);
|
|
30205
|
-
/**
|
|
30206
|
-
* @returns Order OK
|
|
30207
|
-
* @throws ApiError
|
|
30208
|
-
*/
|
|
30209
|
-
getObject({ id, xTenantSubdomain, }: {
|
|
30210
|
-
id: string;
|
|
30211
|
-
xTenantSubdomain?: string;
|
|
30212
|
-
}): CancelablePromise<Order>;
|
|
30441
|
+
}): CancelablePromise<OrderPage>;
|
|
30213
30442
|
/**
|
|
30214
30443
|
* Deletes the resource.
|
|
30215
30444
|
* @returns any OK
|
|
30216
30445
|
* @throws ApiError
|
|
30217
30446
|
*/
|
|
30218
|
-
|
|
30219
|
-
/**
|
|
30220
|
-
* The <typeparamref name="TObject" /> id.
|
|
30221
|
-
*/
|
|
30222
|
-
id: string;
|
|
30447
|
+
deleteByObject({ xTenantSubdomain, requestBody, }: {
|
|
30223
30448
|
/**
|
|
30224
30449
|
* The tenants subdomain.
|
|
30225
30450
|
*/
|
|
30226
30451
|
xTenantSubdomain?: string;
|
|
30452
|
+
/**
|
|
30453
|
+
* The <typeparamref name="TObject" /> model.
|
|
30454
|
+
*/
|
|
30455
|
+
requestBody?: Order;
|
|
30227
30456
|
}): CancelablePromise<any>;
|
|
30228
30457
|
/**
|
|
30229
30458
|
* Gets an Order and includes checks to ensure it is bookable.
|
|
@@ -30338,144 +30567,6 @@ declare class PublicOrdersService {
|
|
|
30338
30567
|
*/
|
|
30339
30568
|
requestBody?: Array<OrderPost>;
|
|
30340
30569
|
}): CancelablePromise<Array<Order>>;
|
|
30341
|
-
/**
|
|
30342
|
-
* Deletes the resource.
|
|
30343
|
-
* @returns any OK
|
|
30344
|
-
* @throws ApiError
|
|
30345
|
-
*/
|
|
30346
|
-
deleteByObject({ xTenantSubdomain, requestBody, }: {
|
|
30347
|
-
/**
|
|
30348
|
-
* The tenants subdomain.
|
|
30349
|
-
*/
|
|
30350
|
-
xTenantSubdomain?: string;
|
|
30351
|
-
/**
|
|
30352
|
-
* The <typeparamref name="TObject" /> model.
|
|
30353
|
-
*/
|
|
30354
|
-
requestBody?: Order;
|
|
30355
|
-
}): CancelablePromise<any>;
|
|
30356
|
-
/**
|
|
30357
|
-
* Gets a list of resources.
|
|
30358
|
-
* @returns OrderPage OK
|
|
30359
|
-
* @throws ApiError
|
|
30360
|
-
*/
|
|
30361
|
-
getPage({ xTenantSubdomain, wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
30362
|
-
/**
|
|
30363
|
-
* The tenants subdomain.
|
|
30364
|
-
*/
|
|
30365
|
-
xTenantSubdomain?: string;
|
|
30366
|
-
/**
|
|
30367
|
-
* Gets or sets the wildcard for use in a query search.
|
|
30368
|
-
*/
|
|
30369
|
-
wildcard?: string;
|
|
30370
|
-
/**
|
|
30371
|
-
* Gets or sets the access code for use in a query search.
|
|
30372
|
-
*/
|
|
30373
|
-
accessCode?: string;
|
|
30374
|
-
/**
|
|
30375
|
-
* Gets or sets the customer name for use in a query search.
|
|
30376
|
-
*/
|
|
30377
|
-
customerName?: string;
|
|
30378
|
-
/**
|
|
30379
|
-
* Gets or sets the email for use in a query search.
|
|
30380
|
-
*/
|
|
30381
|
-
email?: string;
|
|
30382
|
-
/**
|
|
30383
|
-
* Gets or sets the provider Id for use in a query search.
|
|
30384
|
-
*/
|
|
30385
|
-
providerId?: string;
|
|
30386
|
-
/**
|
|
30387
|
-
* Gets or sets the venue Id for use in a query search.
|
|
30388
|
-
*/
|
|
30389
|
-
venueId?: string;
|
|
30390
|
-
/**
|
|
30391
|
-
* Gets or sets the programme Id for use in a query search.
|
|
30392
|
-
*/
|
|
30393
|
-
programmeId?: string;
|
|
30394
|
-
/**
|
|
30395
|
-
* Gets or sets the customer Id for use in a query search.
|
|
30396
|
-
*/
|
|
30397
|
-
customerId?: string;
|
|
30398
|
-
/**
|
|
30399
|
-
* Gets or sets the queryable order ids.
|
|
30400
|
-
*/
|
|
30401
|
-
orderIds?: Array<string>;
|
|
30402
|
-
/**
|
|
30403
|
-
* Gets or sets the session Id for use in a query search.
|
|
30404
|
-
*/
|
|
30405
|
-
sessionId?: string;
|
|
30406
|
-
/**
|
|
30407
|
-
* Gets or sets the facility Id for use in a query search.
|
|
30408
|
-
*/
|
|
30409
|
-
facilityId?: string;
|
|
30410
|
-
/**
|
|
30411
|
-
* Gets or sets the course Id for use in a query search.
|
|
30412
|
-
*/
|
|
30413
|
-
courseId?: string;
|
|
30414
|
-
/**
|
|
30415
|
-
* Gets or sets the queryable order stage. This cannot be used in conjunction with IsBookedOrPendingPayment.
|
|
30416
|
-
*/
|
|
30417
|
-
orderStage?: OrderStage;
|
|
30418
|
-
/**
|
|
30419
|
-
* Gets or sets a value indicating whether to return orders that are either booked or pending payment. This cannot be used in conjunction with OrderStage.
|
|
30420
|
-
*/
|
|
30421
|
-
isBookedOrPendingPayment?: boolean;
|
|
30422
|
-
/**
|
|
30423
|
-
* Gets or sets the queryable order stages.
|
|
30424
|
-
*/
|
|
30425
|
-
orderStages?: Array<OrderStage>;
|
|
30426
|
-
/**
|
|
30427
|
-
* Gets or sets the queryable order date creted is greater than or equal to.
|
|
30428
|
-
*/
|
|
30429
|
-
orderDateGte?: string;
|
|
30430
|
-
/**
|
|
30431
|
-
* Gets or sets the queryable order date created is less than or equal to.
|
|
30432
|
-
*/
|
|
30433
|
-
orderDateLte?: string;
|
|
30434
|
-
/**
|
|
30435
|
-
* Gets or sets the page number for paged queries.
|
|
30436
|
-
*/
|
|
30437
|
-
pageNumber?: number;
|
|
30438
|
-
/**
|
|
30439
|
-
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
30440
|
-
*/
|
|
30441
|
-
take?: number;
|
|
30442
|
-
/**
|
|
30443
|
-
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
30444
|
-
*/
|
|
30445
|
-
skip?: number;
|
|
30446
|
-
/**
|
|
30447
|
-
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
30448
|
-
*/
|
|
30449
|
-
limitListRequests?: boolean;
|
|
30450
|
-
/**
|
|
30451
|
-
* Gets or sets the Tenant Id.
|
|
30452
|
-
*/
|
|
30453
|
-
tenantId?: string;
|
|
30454
|
-
/**
|
|
30455
|
-
* Gets or sets the Modifed By Id.
|
|
30456
|
-
*/
|
|
30457
|
-
modifiedById?: string;
|
|
30458
|
-
/**
|
|
30459
|
-
* Gets or sets the Modifed By Ids.
|
|
30460
|
-
*/
|
|
30461
|
-
modifiedByIds?: Array<string>;
|
|
30462
|
-
/**
|
|
30463
|
-
* Gets or sets the Date Created greater than equal to.
|
|
30464
|
-
*/
|
|
30465
|
-
dateCreatedGte?: string;
|
|
30466
|
-
/**
|
|
30467
|
-
* Gets or sets the Date Created less than equal to.
|
|
30468
|
-
*/
|
|
30469
|
-
dateCreatedLte?: string;
|
|
30470
|
-
/**
|
|
30471
|
-
* Gets or sets the queryable only is live status.
|
|
30472
|
-
*/
|
|
30473
|
-
isLive?: boolean;
|
|
30474
|
-
/**
|
|
30475
|
-
* Gets or sets the sort order direction.
|
|
30476
|
-
*/
|
|
30477
|
-
sortOrderDirection?: SearchSortOrderDirection;
|
|
30478
|
-
}): CancelablePromise<OrderPage>;
|
|
30479
30570
|
/**
|
|
30480
30571
|
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
30481
30572
|
* @returns boolean OK
|
|
@@ -55187,4 +55278,4 @@ type ValidationResultModel = {
|
|
|
55187
55278
|
readonly errors?: Array<ValidationError> | null;
|
|
55188
55279
|
};
|
|
55189
55280
|
|
|
55190
|
-
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, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, 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, 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, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|
|
55281
|
+
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, 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, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|