reach-api-sdk 1.0.190 → 1.0.192
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 +756 -419
- package/dist/reach-sdk.js +355 -182
- package/package.json +1 -1
- package/src/apiClient.ts +3 -0
- package/src/definition/swagger.yaml +1129 -651
- package/src/index.ts +4 -0
- package/src/models/Course.ts +4 -0
- package/src/models/EndUserIdentity.ts +30 -0
- package/src/models/EndUserIdentitySecureToken.ts +2 -0
- package/src/models/EventTiming.ts +12 -0
- package/src/models/Session.ts +4 -0
- package/src/models/TenantWebsiteSetting.ts +3 -0
- package/src/models/UpcomingLayout.ts +12 -0
- package/src/services/BookingService.ts +36 -0
- package/src/services/CoursesService.ts +24 -0
- package/src/services/DealsService.ts +24 -0
- package/src/services/EndUserIdentitySecureTokenService.ts +4 -4
- package/src/services/LeasingService.ts +24 -0
- package/src/services/OrderItemsService.ts +73 -0
- package/src/services/OrdersService.ts +24 -0
- package/src/services/PublicBookingService.ts +12 -0
- package/src/services/PublicCalendarService.ts +57 -0
- package/src/services/PublicCoursesService.ts +12 -0
- package/src/services/PublicLeasingService.ts +12 -0
- package/src/services/PublicNetworksService.ts +6 -0
- package/src/services/PublicOrderItemsService.ts +201 -168
- package/src/services/PublicOrdersService.ts +239 -231
- package/src/services/PublicScheduledSessionsService.ts +12 -0
- package/src/services/PublicSessionsService.ts +18 -0
- package/src/services/ScheduledSessionsSchedulesService.ts +24 -0
- package/src/services/ScheduledSessionsService.ts +24 -0
- package/src/services/SessionsService.ts +24 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -2418,6 +2418,14 @@ declare enum TenantTier {
|
|
|
2418
2418
|
PRO = "Pro"
|
|
2419
2419
|
}
|
|
2420
2420
|
|
|
2421
|
+
/**
|
|
2422
|
+
* UpcomingLayout.
|
|
2423
|
+
*/
|
|
2424
|
+
declare enum UpcomingLayout {
|
|
2425
|
+
GRID = "Grid",
|
|
2426
|
+
CALENDAR = "Calendar"
|
|
2427
|
+
}
|
|
2428
|
+
|
|
2421
2429
|
/**
|
|
2422
2430
|
* Represents an organisation within the Reach application.
|
|
2423
2431
|
*/
|
|
@@ -2510,6 +2518,7 @@ type TenantWebsiteSetting = {
|
|
|
2510
2518
|
* Gets or sets the tenants website marketing optin text.
|
|
2511
2519
|
*/
|
|
2512
2520
|
tenantMarketingOptinText?: string | null;
|
|
2521
|
+
upcomingLayout?: UpcomingLayout;
|
|
2513
2522
|
};
|
|
2514
2523
|
|
|
2515
2524
|
/**
|
|
@@ -3846,6 +3855,10 @@ type Session = {
|
|
|
3846
3855
|
* Gets or sets the booking link override if checkout will occur externally.
|
|
3847
3856
|
*/
|
|
3848
3857
|
bookingLinkOverride?: string | null;
|
|
3858
|
+
/**
|
|
3859
|
+
* Gets or sets a value indicating whether the activity should be featured on the storefront.
|
|
3860
|
+
*/
|
|
3861
|
+
featured?: boolean;
|
|
3849
3862
|
/**
|
|
3850
3863
|
* Gets the computed image url.
|
|
3851
3864
|
*/
|
|
@@ -5030,6 +5043,10 @@ type Course = {
|
|
|
5030
5043
|
* Gets or sets the booking link override if checkout will occur externally.
|
|
5031
5044
|
*/
|
|
5032
5045
|
bookingLinkOverride?: string | null;
|
|
5046
|
+
/**
|
|
5047
|
+
* Gets or sets a value indicating whether the activity should be featured on the storefront.
|
|
5048
|
+
*/
|
|
5049
|
+
featured?: boolean;
|
|
5033
5050
|
/**
|
|
5034
5051
|
* Gets the computed image url.
|
|
5035
5052
|
*/
|
|
@@ -5917,7 +5934,7 @@ declare class BookingService {
|
|
|
5917
5934
|
* @returns any OK
|
|
5918
5935
|
* @throws ApiError
|
|
5919
5936
|
*/
|
|
5920
|
-
exportToCsv({ userId, 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, formData, }: {
|
|
5937
|
+
exportToCsv({ userId, wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
5921
5938
|
/**
|
|
5922
5939
|
* Gets or sets the queryable User Id.
|
|
5923
5940
|
*/
|
|
@@ -5990,6 +6007,10 @@ declare class BookingService {
|
|
|
5990
6007
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
5991
6008
|
*/
|
|
5992
6009
|
orderDateLte?: string;
|
|
6010
|
+
/**
|
|
6011
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
6012
|
+
*/
|
|
6013
|
+
endUserIdentityId?: string;
|
|
5993
6014
|
/**
|
|
5994
6015
|
* Gets or sets the page number for paged queries.
|
|
5995
6016
|
*/
|
|
@@ -6047,7 +6068,7 @@ declare class BookingService {
|
|
|
6047
6068
|
* @returns any OK
|
|
6048
6069
|
* @throws ApiError
|
|
6049
6070
|
*/
|
|
6050
|
-
exportToXlsx({ userId, 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, formData, }: {
|
|
6071
|
+
exportToXlsx({ userId, wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
6051
6072
|
/**
|
|
6052
6073
|
* Gets or sets the queryable User Id.
|
|
6053
6074
|
*/
|
|
@@ -6120,6 +6141,10 @@ declare class BookingService {
|
|
|
6120
6141
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
6121
6142
|
*/
|
|
6122
6143
|
orderDateLte?: string;
|
|
6144
|
+
/**
|
|
6145
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
6146
|
+
*/
|
|
6147
|
+
endUserIdentityId?: string;
|
|
6123
6148
|
/**
|
|
6124
6149
|
* Gets or sets the page number for paged queries.
|
|
6125
6150
|
*/
|
|
@@ -6231,7 +6256,7 @@ declare class BookingService {
|
|
|
6231
6256
|
* @returns OrderPage OK
|
|
6232
6257
|
* @throws ApiError
|
|
6233
6258
|
*/
|
|
6234
|
-
getPage({ userId, 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, }: {
|
|
6259
|
+
getPage({ userId, wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
6235
6260
|
/**
|
|
6236
6261
|
* Gets or sets the queryable User Id.
|
|
6237
6262
|
*/
|
|
@@ -6304,6 +6329,10 @@ declare class BookingService {
|
|
|
6304
6329
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
6305
6330
|
*/
|
|
6306
6331
|
orderDateLte?: string;
|
|
6332
|
+
/**
|
|
6333
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
6334
|
+
*/
|
|
6335
|
+
endUserIdentityId?: string;
|
|
6307
6336
|
/**
|
|
6308
6337
|
* Gets or sets the page number for paged queries.
|
|
6309
6338
|
*/
|
|
@@ -6387,7 +6416,7 @@ declare class BookingService {
|
|
|
6387
6416
|
* @returns boolean OK
|
|
6388
6417
|
* @throws ApiError
|
|
6389
6418
|
*/
|
|
6390
|
-
exists({ userId, 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, }: {
|
|
6419
|
+
exists({ userId, wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
6391
6420
|
/**
|
|
6392
6421
|
* Gets or sets the queryable User Id.
|
|
6393
6422
|
*/
|
|
@@ -6460,6 +6489,10 @@ declare class BookingService {
|
|
|
6460
6489
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
6461
6490
|
*/
|
|
6462
6491
|
orderDateLte?: string;
|
|
6492
|
+
/**
|
|
6493
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
6494
|
+
*/
|
|
6495
|
+
endUserIdentityId?: string;
|
|
6463
6496
|
/**
|
|
6464
6497
|
* Gets or sets the page number for paged queries.
|
|
6465
6498
|
*/
|
|
@@ -6510,7 +6543,7 @@ declare class BookingService {
|
|
|
6510
6543
|
* @returns Order OK
|
|
6511
6544
|
* @throws ApiError
|
|
6512
6545
|
*/
|
|
6513
|
-
getListWithoutReferences({ userId, 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, }: {
|
|
6546
|
+
getListWithoutReferences({ userId, wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
6514
6547
|
/**
|
|
6515
6548
|
* Gets or sets the queryable User Id.
|
|
6516
6549
|
*/
|
|
@@ -6583,6 +6616,10 @@ declare class BookingService {
|
|
|
6583
6616
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
6584
6617
|
*/
|
|
6585
6618
|
orderDateLte?: string;
|
|
6619
|
+
/**
|
|
6620
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
6621
|
+
*/
|
|
6622
|
+
endUserIdentityId?: string;
|
|
6586
6623
|
/**
|
|
6587
6624
|
* Gets or sets the page number for paged queries.
|
|
6588
6625
|
*/
|
|
@@ -6633,7 +6670,7 @@ declare class BookingService {
|
|
|
6633
6670
|
* @returns Order OK
|
|
6634
6671
|
* @throws ApiError
|
|
6635
6672
|
*/
|
|
6636
|
-
getListIdName({ userId, 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, }: {
|
|
6673
|
+
getListIdName({ userId, wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
6637
6674
|
/**
|
|
6638
6675
|
* Gets or sets the queryable User Id.
|
|
6639
6676
|
*/
|
|
@@ -6706,6 +6743,10 @@ declare class BookingService {
|
|
|
6706
6743
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
6707
6744
|
*/
|
|
6708
6745
|
orderDateLte?: string;
|
|
6746
|
+
/**
|
|
6747
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
6748
|
+
*/
|
|
6749
|
+
endUserIdentityId?: string;
|
|
6709
6750
|
/**
|
|
6710
6751
|
* Gets or sets the page number for paged queries.
|
|
6711
6752
|
*/
|
|
@@ -8076,7 +8117,7 @@ declare class CoursesService {
|
|
|
8076
8117
|
* @returns CoursePage OK
|
|
8077
8118
|
* @throws ApiError
|
|
8078
8119
|
*/
|
|
8079
|
-
getPage({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8120
|
+
getPage({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8080
8121
|
/**
|
|
8081
8122
|
* Gets or sets the queryable Course Id.
|
|
8082
8123
|
*/
|
|
@@ -8157,6 +8198,10 @@ declare class CoursesService {
|
|
|
8157
8198
|
* Gets or sets a value indicating whether return online courses.
|
|
8158
8199
|
*/
|
|
8159
8200
|
online?: boolean;
|
|
8201
|
+
/**
|
|
8202
|
+
* Gets or sets a value indicating whether the course is featured on the storefront.
|
|
8203
|
+
*/
|
|
8204
|
+
featured?: boolean;
|
|
8160
8205
|
/**
|
|
8161
8206
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
8162
8207
|
*/
|
|
@@ -8276,7 +8321,7 @@ declare class CoursesService {
|
|
|
8276
8321
|
* @returns boolean OK
|
|
8277
8322
|
* @throws ApiError
|
|
8278
8323
|
*/
|
|
8279
|
-
exists({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8324
|
+
exists({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8280
8325
|
/**
|
|
8281
8326
|
* Gets or sets the queryable Course Id.
|
|
8282
8327
|
*/
|
|
@@ -8357,6 +8402,10 @@ declare class CoursesService {
|
|
|
8357
8402
|
* Gets or sets a value indicating whether return online courses.
|
|
8358
8403
|
*/
|
|
8359
8404
|
online?: boolean;
|
|
8405
|
+
/**
|
|
8406
|
+
* Gets or sets a value indicating whether the course is featured on the storefront.
|
|
8407
|
+
*/
|
|
8408
|
+
featured?: boolean;
|
|
8360
8409
|
/**
|
|
8361
8410
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
8362
8411
|
*/
|
|
@@ -8443,7 +8492,7 @@ declare class CoursesService {
|
|
|
8443
8492
|
* @returns Course OK
|
|
8444
8493
|
* @throws ApiError
|
|
8445
8494
|
*/
|
|
8446
|
-
getListWithoutReferences({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8495
|
+
getListWithoutReferences({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8447
8496
|
/**
|
|
8448
8497
|
* Gets or sets the queryable Course Id.
|
|
8449
8498
|
*/
|
|
@@ -8524,6 +8573,10 @@ declare class CoursesService {
|
|
|
8524
8573
|
* Gets or sets a value indicating whether return online courses.
|
|
8525
8574
|
*/
|
|
8526
8575
|
online?: boolean;
|
|
8576
|
+
/**
|
|
8577
|
+
* Gets or sets a value indicating whether the course is featured on the storefront.
|
|
8578
|
+
*/
|
|
8579
|
+
featured?: boolean;
|
|
8527
8580
|
/**
|
|
8528
8581
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
8529
8582
|
*/
|
|
@@ -8610,7 +8663,7 @@ declare class CoursesService {
|
|
|
8610
8663
|
* @returns Course OK
|
|
8611
8664
|
* @throws ApiError
|
|
8612
8665
|
*/
|
|
8613
|
-
getListIdName({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8666
|
+
getListIdName({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8614
8667
|
/**
|
|
8615
8668
|
* Gets or sets the queryable Course Id.
|
|
8616
8669
|
*/
|
|
@@ -8691,6 +8744,10 @@ declare class CoursesService {
|
|
|
8691
8744
|
* Gets or sets a value indicating whether return online courses.
|
|
8692
8745
|
*/
|
|
8693
8746
|
online?: boolean;
|
|
8747
|
+
/**
|
|
8748
|
+
* Gets or sets a value indicating whether the course is featured on the storefront.
|
|
8749
|
+
*/
|
|
8750
|
+
featured?: boolean;
|
|
8694
8751
|
/**
|
|
8695
8752
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
8696
8753
|
*/
|
|
@@ -11364,7 +11421,7 @@ declare class DealsService {
|
|
|
11364
11421
|
* @returns DealPage OK
|
|
11365
11422
|
* @throws ApiError
|
|
11366
11423
|
*/
|
|
11367
|
-
getPage({ id, ids, target, type, discountCode, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11424
|
+
getPage({ id, ids, target, type, types, discountCode, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11368
11425
|
/**
|
|
11369
11426
|
* Gets or sets the queryable Deal Id.
|
|
11370
11427
|
*/
|
|
@@ -11381,6 +11438,10 @@ declare class DealsService {
|
|
|
11381
11438
|
* Gets or sets the queryable type.
|
|
11382
11439
|
*/
|
|
11383
11440
|
type?: DealType;
|
|
11441
|
+
/**
|
|
11442
|
+
* Gets or sets the queryable Deal types.
|
|
11443
|
+
*/
|
|
11444
|
+
types?: Array<DealType>;
|
|
11384
11445
|
/**
|
|
11385
11446
|
* Gets or sets the queryable discount code.
|
|
11386
11447
|
*/
|
|
@@ -11468,7 +11529,7 @@ declare class DealsService {
|
|
|
11468
11529
|
* @returns boolean OK
|
|
11469
11530
|
* @throws ApiError
|
|
11470
11531
|
*/
|
|
11471
|
-
exists({ id, ids, target, type, discountCode, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11532
|
+
exists({ id, ids, target, type, types, discountCode, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11472
11533
|
/**
|
|
11473
11534
|
* Gets or sets the queryable Deal Id.
|
|
11474
11535
|
*/
|
|
@@ -11485,6 +11546,10 @@ declare class DealsService {
|
|
|
11485
11546
|
* Gets or sets the queryable type.
|
|
11486
11547
|
*/
|
|
11487
11548
|
type?: DealType;
|
|
11549
|
+
/**
|
|
11550
|
+
* Gets or sets the queryable Deal types.
|
|
11551
|
+
*/
|
|
11552
|
+
types?: Array<DealType>;
|
|
11488
11553
|
/**
|
|
11489
11554
|
* Gets or sets the queryable discount code.
|
|
11490
11555
|
*/
|
|
@@ -11539,7 +11604,7 @@ declare class DealsService {
|
|
|
11539
11604
|
* @returns Deal OK
|
|
11540
11605
|
* @throws ApiError
|
|
11541
11606
|
*/
|
|
11542
|
-
getListWithoutReferences({ id, ids, target, type, discountCode, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11607
|
+
getListWithoutReferences({ id, ids, target, type, types, discountCode, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11543
11608
|
/**
|
|
11544
11609
|
* Gets or sets the queryable Deal Id.
|
|
11545
11610
|
*/
|
|
@@ -11556,6 +11621,10 @@ declare class DealsService {
|
|
|
11556
11621
|
* Gets or sets the queryable type.
|
|
11557
11622
|
*/
|
|
11558
11623
|
type?: DealType;
|
|
11624
|
+
/**
|
|
11625
|
+
* Gets or sets the queryable Deal types.
|
|
11626
|
+
*/
|
|
11627
|
+
types?: Array<DealType>;
|
|
11559
11628
|
/**
|
|
11560
11629
|
* Gets or sets the queryable discount code.
|
|
11561
11630
|
*/
|
|
@@ -11610,7 +11679,7 @@ declare class DealsService {
|
|
|
11610
11679
|
* @returns Deal OK
|
|
11611
11680
|
* @throws ApiError
|
|
11612
11681
|
*/
|
|
11613
|
-
getListIdName({ id, ids, target, type, discountCode, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11682
|
+
getListIdName({ id, ids, target, type, types, discountCode, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11614
11683
|
/**
|
|
11615
11684
|
* Gets or sets the queryable Deal Id.
|
|
11616
11685
|
*/
|
|
@@ -11627,6 +11696,10 @@ declare class DealsService {
|
|
|
11627
11696
|
* Gets or sets the queryable type.
|
|
11628
11697
|
*/
|
|
11629
11698
|
type?: DealType;
|
|
11699
|
+
/**
|
|
11700
|
+
* Gets or sets the queryable Deal types.
|
|
11701
|
+
*/
|
|
11702
|
+
types?: Array<DealType>;
|
|
11630
11703
|
/**
|
|
11631
11704
|
* Gets or sets the queryable discount code.
|
|
11632
11705
|
*/
|
|
@@ -13048,6 +13121,32 @@ declare class EmailSettingsService {
|
|
|
13048
13121
|
}): CancelablePromise<Array<EmailSetting>>;
|
|
13049
13122
|
}
|
|
13050
13123
|
|
|
13124
|
+
/**
|
|
13125
|
+
* Represents an end user identity within the Reach application.
|
|
13126
|
+
*/
|
|
13127
|
+
type EndUserIdentity = {
|
|
13128
|
+
/**
|
|
13129
|
+
* Gets or sets the activities Id.
|
|
13130
|
+
*/
|
|
13131
|
+
id?: string;
|
|
13132
|
+
/**
|
|
13133
|
+
* Gets or sets the canonical email.
|
|
13134
|
+
*/
|
|
13135
|
+
canonicalEmail?: string | null;
|
|
13136
|
+
/**
|
|
13137
|
+
* Gets or sets the first name.
|
|
13138
|
+
*/
|
|
13139
|
+
firstName?: string | null;
|
|
13140
|
+
/**
|
|
13141
|
+
* Gets or sets the last name.
|
|
13142
|
+
*/
|
|
13143
|
+
lastName?: string | null;
|
|
13144
|
+
/**
|
|
13145
|
+
* Gets or sets the date created.
|
|
13146
|
+
*/
|
|
13147
|
+
dateCreated?: string;
|
|
13148
|
+
};
|
|
13149
|
+
|
|
13051
13150
|
/**
|
|
13052
13151
|
* Represents an end user identity within the Reach application.
|
|
13053
13152
|
*/
|
|
@@ -13077,6 +13176,7 @@ type EndUserIdentitySecureToken = {
|
|
|
13077
13176
|
*/
|
|
13078
13177
|
isActive?: boolean;
|
|
13079
13178
|
tenant?: Tenant;
|
|
13179
|
+
endUserIdentity?: EndUserIdentity;
|
|
13080
13180
|
};
|
|
13081
13181
|
|
|
13082
13182
|
/**
|
|
@@ -16753,7 +16853,7 @@ declare class LeasingService {
|
|
|
16753
16853
|
* @returns OrderPage OK
|
|
16754
16854
|
* @throws ApiError
|
|
16755
16855
|
*/
|
|
16756
|
-
getPage({ 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, }: {
|
|
16856
|
+
getPage({ wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16757
16857
|
/**
|
|
16758
16858
|
* Gets or sets the wildcard for use in a query search.
|
|
16759
16859
|
*/
|
|
@@ -16822,6 +16922,10 @@ declare class LeasingService {
|
|
|
16822
16922
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
16823
16923
|
*/
|
|
16824
16924
|
orderDateLte?: string;
|
|
16925
|
+
/**
|
|
16926
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
16927
|
+
*/
|
|
16928
|
+
endUserIdentityId?: string;
|
|
16825
16929
|
/**
|
|
16826
16930
|
* Gets or sets the page number for paged queries.
|
|
16827
16931
|
*/
|
|
@@ -16905,7 +17009,7 @@ declare class LeasingService {
|
|
|
16905
17009
|
* @returns boolean OK
|
|
16906
17010
|
* @throws ApiError
|
|
16907
17011
|
*/
|
|
16908
|
-
exists({ 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, }: {
|
|
17012
|
+
exists({ wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16909
17013
|
/**
|
|
16910
17014
|
* Gets or sets the wildcard for use in a query search.
|
|
16911
17015
|
*/
|
|
@@ -16974,6 +17078,10 @@ declare class LeasingService {
|
|
|
16974
17078
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
16975
17079
|
*/
|
|
16976
17080
|
orderDateLte?: string;
|
|
17081
|
+
/**
|
|
17082
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
17083
|
+
*/
|
|
17084
|
+
endUserIdentityId?: string;
|
|
16977
17085
|
/**
|
|
16978
17086
|
* Gets or sets the page number for paged queries.
|
|
16979
17087
|
*/
|
|
@@ -17024,7 +17132,7 @@ declare class LeasingService {
|
|
|
17024
17132
|
* @returns Order OK
|
|
17025
17133
|
* @throws ApiError
|
|
17026
17134
|
*/
|
|
17027
|
-
getListWithoutReferences({ 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, }: {
|
|
17135
|
+
getListWithoutReferences({ wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17028
17136
|
/**
|
|
17029
17137
|
* Gets or sets the wildcard for use in a query search.
|
|
17030
17138
|
*/
|
|
@@ -17093,6 +17201,10 @@ declare class LeasingService {
|
|
|
17093
17201
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
17094
17202
|
*/
|
|
17095
17203
|
orderDateLte?: string;
|
|
17204
|
+
/**
|
|
17205
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
17206
|
+
*/
|
|
17207
|
+
endUserIdentityId?: string;
|
|
17096
17208
|
/**
|
|
17097
17209
|
* Gets or sets the page number for paged queries.
|
|
17098
17210
|
*/
|
|
@@ -17143,7 +17255,7 @@ declare class LeasingService {
|
|
|
17143
17255
|
* @returns Order OK
|
|
17144
17256
|
* @throws ApiError
|
|
17145
17257
|
*/
|
|
17146
|
-
getListIdName({ 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, }: {
|
|
17258
|
+
getListIdName({ wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17147
17259
|
/**
|
|
17148
17260
|
* Gets or sets the wildcard for use in a query search.
|
|
17149
17261
|
*/
|
|
@@ -17212,6 +17324,10 @@ declare class LeasingService {
|
|
|
17212
17324
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
17213
17325
|
*/
|
|
17214
17326
|
orderDateLte?: string;
|
|
17327
|
+
/**
|
|
17328
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
17329
|
+
*/
|
|
17330
|
+
endUserIdentityId?: string;
|
|
17215
17331
|
/**
|
|
17216
17332
|
* Gets or sets the page number for paged queries.
|
|
17217
17333
|
*/
|
|
@@ -21847,6 +21963,14 @@ declare class OrderItemReportService {
|
|
|
21847
21963
|
}): CancelablePromise<Array<OrderItemReport>>;
|
|
21848
21964
|
}
|
|
21849
21965
|
|
|
21966
|
+
/**
|
|
21967
|
+
* EventTiming.
|
|
21968
|
+
*/
|
|
21969
|
+
declare enum EventTiming {
|
|
21970
|
+
UPCOMING = "Upcoming",
|
|
21971
|
+
PAST = "Past"
|
|
21972
|
+
}
|
|
21973
|
+
|
|
21850
21974
|
type OrderItemPage = {
|
|
21851
21975
|
pagination: Pagination;
|
|
21852
21976
|
readonly items: Array<OrderItem>;
|
|
@@ -21958,7 +22082,7 @@ declare class OrderItemsService {
|
|
|
21958
22082
|
* @returns OrderItemPage OK
|
|
21959
22083
|
* @throws ApiError
|
|
21960
22084
|
*/
|
|
21961
|
-
getPage({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22085
|
+
getPage({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
21962
22086
|
/**
|
|
21963
22087
|
* Gets or sets the queryable order item ids.
|
|
21964
22088
|
*/
|
|
@@ -21991,6 +22115,18 @@ declare class OrderItemsService {
|
|
|
21991
22115
|
* Gets or sets the queryable parent order item id id.
|
|
21992
22116
|
*/
|
|
21993
22117
|
parentOrderItemId?: string;
|
|
22118
|
+
/**
|
|
22119
|
+
* Gets or sets the queryable order by opportunity start date value.
|
|
22120
|
+
*/
|
|
22121
|
+
orderByOpportunityStartdate?: boolean;
|
|
22122
|
+
/**
|
|
22123
|
+
* Gets or sets the queryable event timing.
|
|
22124
|
+
*/
|
|
22125
|
+
eventTiming?: EventTiming;
|
|
22126
|
+
/**
|
|
22127
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
22128
|
+
*/
|
|
22129
|
+
endUserIdentityId?: string;
|
|
21994
22130
|
/**
|
|
21995
22131
|
* Gets or sets the page number for paged queries.
|
|
21996
22132
|
*/
|
|
@@ -22074,7 +22210,7 @@ declare class OrderItemsService {
|
|
|
22074
22210
|
* @returns boolean OK
|
|
22075
22211
|
* @throws ApiError
|
|
22076
22212
|
*/
|
|
22077
|
-
exists({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22213
|
+
exists({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22078
22214
|
/**
|
|
22079
22215
|
* Gets or sets the queryable order item ids.
|
|
22080
22216
|
*/
|
|
@@ -22107,6 +22243,18 @@ declare class OrderItemsService {
|
|
|
22107
22243
|
* Gets or sets the queryable parent order item id id.
|
|
22108
22244
|
*/
|
|
22109
22245
|
parentOrderItemId?: string;
|
|
22246
|
+
/**
|
|
22247
|
+
* Gets or sets the queryable order by opportunity start date value.
|
|
22248
|
+
*/
|
|
22249
|
+
orderByOpportunityStartdate?: boolean;
|
|
22250
|
+
/**
|
|
22251
|
+
* Gets or sets the queryable event timing.
|
|
22252
|
+
*/
|
|
22253
|
+
eventTiming?: EventTiming;
|
|
22254
|
+
/**
|
|
22255
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
22256
|
+
*/
|
|
22257
|
+
endUserIdentityId?: string;
|
|
22110
22258
|
/**
|
|
22111
22259
|
* Gets or sets the page number for paged queries.
|
|
22112
22260
|
*/
|
|
@@ -22157,7 +22305,7 @@ declare class OrderItemsService {
|
|
|
22157
22305
|
* @returns OrderItem OK
|
|
22158
22306
|
* @throws ApiError
|
|
22159
22307
|
*/
|
|
22160
|
-
getListWithoutReferences({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22308
|
+
getListWithoutReferences({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22161
22309
|
/**
|
|
22162
22310
|
* Gets or sets the queryable order item ids.
|
|
22163
22311
|
*/
|
|
@@ -22190,6 +22338,18 @@ declare class OrderItemsService {
|
|
|
22190
22338
|
* Gets or sets the queryable parent order item id id.
|
|
22191
22339
|
*/
|
|
22192
22340
|
parentOrderItemId?: string;
|
|
22341
|
+
/**
|
|
22342
|
+
* Gets or sets the queryable order by opportunity start date value.
|
|
22343
|
+
*/
|
|
22344
|
+
orderByOpportunityStartdate?: boolean;
|
|
22345
|
+
/**
|
|
22346
|
+
* Gets or sets the queryable event timing.
|
|
22347
|
+
*/
|
|
22348
|
+
eventTiming?: EventTiming;
|
|
22349
|
+
/**
|
|
22350
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
22351
|
+
*/
|
|
22352
|
+
endUserIdentityId?: string;
|
|
22193
22353
|
/**
|
|
22194
22354
|
* Gets or sets the page number for paged queries.
|
|
22195
22355
|
*/
|
|
@@ -22240,7 +22400,7 @@ declare class OrderItemsService {
|
|
|
22240
22400
|
* @returns OrderItem OK
|
|
22241
22401
|
* @throws ApiError
|
|
22242
22402
|
*/
|
|
22243
|
-
getListIdName({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22403
|
+
getListIdName({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22244
22404
|
/**
|
|
22245
22405
|
* Gets or sets the queryable order item ids.
|
|
22246
22406
|
*/
|
|
@@ -22273,6 +22433,18 @@ declare class OrderItemsService {
|
|
|
22273
22433
|
* Gets or sets the queryable parent order item id id.
|
|
22274
22434
|
*/
|
|
22275
22435
|
parentOrderItemId?: string;
|
|
22436
|
+
/**
|
|
22437
|
+
* Gets or sets the queryable order by opportunity start date value.
|
|
22438
|
+
*/
|
|
22439
|
+
orderByOpportunityStartdate?: boolean;
|
|
22440
|
+
/**
|
|
22441
|
+
* Gets or sets the queryable event timing.
|
|
22442
|
+
*/
|
|
22443
|
+
eventTiming?: EventTiming;
|
|
22444
|
+
/**
|
|
22445
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
22446
|
+
*/
|
|
22447
|
+
endUserIdentityId?: string;
|
|
22276
22448
|
/**
|
|
22277
22449
|
* Gets or sets the page number for paged queries.
|
|
22278
22450
|
*/
|
|
@@ -22571,7 +22743,7 @@ declare class OrdersService {
|
|
|
22571
22743
|
* @returns OrderPage OK
|
|
22572
22744
|
* @throws ApiError
|
|
22573
22745
|
*/
|
|
22574
|
-
getPage({ 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, }: {
|
|
22746
|
+
getPage({ wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22575
22747
|
/**
|
|
22576
22748
|
* Gets or sets the wildcard for use in a query search.
|
|
22577
22749
|
*/
|
|
@@ -22641,157 +22813,165 @@ declare class OrdersService {
|
|
|
22641
22813
|
*/
|
|
22642
22814
|
orderDateLte?: string;
|
|
22643
22815
|
/**
|
|
22644
|
-
* Gets or sets the
|
|
22645
|
-
*/
|
|
22646
|
-
pageNumber?: number;
|
|
22647
|
-
/**
|
|
22648
|
-
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
22649
|
-
*/
|
|
22650
|
-
take?: number;
|
|
22651
|
-
/**
|
|
22652
|
-
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
22653
|
-
*/
|
|
22654
|
-
skip?: number;
|
|
22655
|
-
/**
|
|
22656
|
-
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
22657
|
-
*/
|
|
22658
|
-
limitListRequests?: boolean;
|
|
22659
|
-
/**
|
|
22660
|
-
* Gets or sets the Tenant Id.
|
|
22661
|
-
*/
|
|
22662
|
-
tenantId?: string;
|
|
22663
|
-
/**
|
|
22664
|
-
* Gets or sets the Modifed By Id.
|
|
22816
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
22665
22817
|
*/
|
|
22666
|
-
|
|
22667
|
-
/**
|
|
22668
|
-
* Gets or sets the
|
|
22669
|
-
*/
|
|
22670
|
-
|
|
22671
|
-
/**
|
|
22672
|
-
* Gets or sets the
|
|
22673
|
-
*/
|
|
22674
|
-
|
|
22675
|
-
/**
|
|
22676
|
-
* Gets or sets
|
|
22677
|
-
*/
|
|
22678
|
-
|
|
22679
|
-
/**
|
|
22680
|
-
* Gets or sets the
|
|
22681
|
-
*/
|
|
22682
|
-
|
|
22683
|
-
/**
|
|
22684
|
-
* Gets or sets the
|
|
22685
|
-
*/
|
|
22686
|
-
|
|
22687
|
-
|
|
22688
|
-
|
|
22689
|
-
|
|
22690
|
-
|
|
22691
|
-
|
|
22692
|
-
|
|
22693
|
-
|
|
22694
|
-
|
|
22695
|
-
|
|
22696
|
-
|
|
22697
|
-
|
|
22698
|
-
|
|
22699
|
-
|
|
22700
|
-
|
|
22701
|
-
|
|
22702
|
-
|
|
22703
|
-
|
|
22704
|
-
|
|
22705
|
-
|
|
22706
|
-
|
|
22707
|
-
|
|
22708
|
-
|
|
22709
|
-
|
|
22710
|
-
|
|
22711
|
-
|
|
22712
|
-
|
|
22713
|
-
*
|
|
22714
|
-
|
|
22715
|
-
|
|
22716
|
-
|
|
22717
|
-
|
|
22718
|
-
|
|
22719
|
-
|
|
22720
|
-
|
|
22721
|
-
|
|
22722
|
-
|
|
22723
|
-
|
|
22724
|
-
*
|
|
22725
|
-
|
|
22726
|
-
|
|
22727
|
-
|
|
22728
|
-
|
|
22729
|
-
|
|
22730
|
-
|
|
22731
|
-
|
|
22732
|
-
|
|
22733
|
-
|
|
22734
|
-
|
|
22735
|
-
|
|
22736
|
-
|
|
22737
|
-
|
|
22738
|
-
|
|
22739
|
-
|
|
22740
|
-
|
|
22741
|
-
|
|
22742
|
-
|
|
22743
|
-
|
|
22744
|
-
|
|
22745
|
-
|
|
22746
|
-
|
|
22747
|
-
|
|
22748
|
-
|
|
22749
|
-
|
|
22750
|
-
|
|
22751
|
-
/**
|
|
22752
|
-
* Gets or sets the
|
|
22753
|
-
*/
|
|
22754
|
-
|
|
22755
|
-
/**
|
|
22756
|
-
* Gets or sets the
|
|
22757
|
-
*/
|
|
22758
|
-
|
|
22759
|
-
/**
|
|
22760
|
-
* Gets or sets the
|
|
22761
|
-
*/
|
|
22762
|
-
|
|
22763
|
-
/**
|
|
22764
|
-
* Gets or sets the
|
|
22765
|
-
*/
|
|
22766
|
-
|
|
22767
|
-
/**
|
|
22768
|
-
* Gets or sets the
|
|
22769
|
-
*/
|
|
22770
|
-
|
|
22771
|
-
/**
|
|
22772
|
-
* Gets or sets the
|
|
22773
|
-
*/
|
|
22774
|
-
|
|
22775
|
-
/**
|
|
22776
|
-
* Gets or sets the
|
|
22777
|
-
*/
|
|
22778
|
-
|
|
22779
|
-
/**
|
|
22780
|
-
* Gets or sets
|
|
22781
|
-
*/
|
|
22782
|
-
|
|
22783
|
-
/**
|
|
22784
|
-
* Gets or sets the queryable order
|
|
22785
|
-
*/
|
|
22786
|
-
|
|
22787
|
-
/**
|
|
22788
|
-
* Gets or sets the
|
|
22789
|
-
*/
|
|
22790
|
-
|
|
22791
|
-
/**
|
|
22792
|
-
* Gets or sets the
|
|
22793
|
-
*/
|
|
22794
|
-
|
|
22818
|
+
endUserIdentityId?: string;
|
|
22819
|
+
/**
|
|
22820
|
+
* Gets or sets the page number for paged queries.
|
|
22821
|
+
*/
|
|
22822
|
+
pageNumber?: number;
|
|
22823
|
+
/**
|
|
22824
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
22825
|
+
*/
|
|
22826
|
+
take?: number;
|
|
22827
|
+
/**
|
|
22828
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
22829
|
+
*/
|
|
22830
|
+
skip?: number;
|
|
22831
|
+
/**
|
|
22832
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
22833
|
+
*/
|
|
22834
|
+
limitListRequests?: boolean;
|
|
22835
|
+
/**
|
|
22836
|
+
* Gets or sets the Tenant Id.
|
|
22837
|
+
*/
|
|
22838
|
+
tenantId?: string;
|
|
22839
|
+
/**
|
|
22840
|
+
* Gets or sets the Modifed By Id.
|
|
22841
|
+
*/
|
|
22842
|
+
modifiedById?: string;
|
|
22843
|
+
/**
|
|
22844
|
+
* Gets or sets the Modifed By Ids.
|
|
22845
|
+
*/
|
|
22846
|
+
modifiedByIds?: Array<string>;
|
|
22847
|
+
/**
|
|
22848
|
+
* Gets or sets the Date Created greater than equal to.
|
|
22849
|
+
*/
|
|
22850
|
+
dateCreatedGte?: string;
|
|
22851
|
+
/**
|
|
22852
|
+
* Gets or sets the Date Created less than equal to.
|
|
22853
|
+
*/
|
|
22854
|
+
dateCreatedLte?: string;
|
|
22855
|
+
/**
|
|
22856
|
+
* Gets or sets the queryable only is live status.
|
|
22857
|
+
*/
|
|
22858
|
+
isLive?: boolean;
|
|
22859
|
+
/**
|
|
22860
|
+
* Gets or sets the sort order direction.
|
|
22861
|
+
*/
|
|
22862
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
22863
|
+
}): CancelablePromise<OrderPage>;
|
|
22864
|
+
/**
|
|
22865
|
+
* Deletes the resource.
|
|
22866
|
+
* @returns any OK
|
|
22867
|
+
* @throws ApiError
|
|
22868
|
+
*/
|
|
22869
|
+
deleteById({ id, }: {
|
|
22870
|
+
/**
|
|
22871
|
+
* The <typeparamref name="TObject" /> id.
|
|
22872
|
+
*/
|
|
22873
|
+
id: string;
|
|
22874
|
+
}): CancelablePromise<any>;
|
|
22875
|
+
/**
|
|
22876
|
+
* Gets the resource by its Id.
|
|
22877
|
+
* @returns Order OK
|
|
22878
|
+
* @throws ApiError
|
|
22879
|
+
*/
|
|
22880
|
+
getObject({ id, }: {
|
|
22881
|
+
/**
|
|
22882
|
+
* The <typeparamref name="TObject" /> id.
|
|
22883
|
+
*/
|
|
22884
|
+
id: string;
|
|
22885
|
+
}): CancelablePromise<Order>;
|
|
22886
|
+
/**
|
|
22887
|
+
* Returns a value indicating whether the resource is deletable.
|
|
22888
|
+
* @returns boolean OK
|
|
22889
|
+
* @throws ApiError
|
|
22890
|
+
*/
|
|
22891
|
+
canDelete({ id, }: {
|
|
22892
|
+
/**
|
|
22893
|
+
* The <typeparamref name="TObject" /> id.
|
|
22894
|
+
*/
|
|
22895
|
+
id: string;
|
|
22896
|
+
}): CancelablePromise<boolean>;
|
|
22897
|
+
/**
|
|
22898
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
22899
|
+
* @returns boolean OK
|
|
22900
|
+
* @throws ApiError
|
|
22901
|
+
*/
|
|
22902
|
+
exists({ wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22903
|
+
/**
|
|
22904
|
+
* Gets or sets the wildcard for use in a query search.
|
|
22905
|
+
*/
|
|
22906
|
+
wildcard?: string;
|
|
22907
|
+
/**
|
|
22908
|
+
* Gets or sets the access code for use in a query search.
|
|
22909
|
+
*/
|
|
22910
|
+
accessCode?: string;
|
|
22911
|
+
/**
|
|
22912
|
+
* Gets or sets the customer name for use in a query search.
|
|
22913
|
+
*/
|
|
22914
|
+
customerName?: string;
|
|
22915
|
+
/**
|
|
22916
|
+
* Gets or sets the email for use in a query search.
|
|
22917
|
+
*/
|
|
22918
|
+
email?: string;
|
|
22919
|
+
/**
|
|
22920
|
+
* Gets or sets the provider Id for use in a query search.
|
|
22921
|
+
*/
|
|
22922
|
+
providerId?: string;
|
|
22923
|
+
/**
|
|
22924
|
+
* Gets or sets the venue Id for use in a query search.
|
|
22925
|
+
*/
|
|
22926
|
+
venueId?: string;
|
|
22927
|
+
/**
|
|
22928
|
+
* Gets or sets the programme Id for use in a query search.
|
|
22929
|
+
*/
|
|
22930
|
+
programmeId?: string;
|
|
22931
|
+
/**
|
|
22932
|
+
* Gets or sets the customer Id for use in a query search.
|
|
22933
|
+
*/
|
|
22934
|
+
customerId?: string;
|
|
22935
|
+
/**
|
|
22936
|
+
* Gets or sets the queryable order ids.
|
|
22937
|
+
*/
|
|
22938
|
+
orderIds?: Array<string>;
|
|
22939
|
+
/**
|
|
22940
|
+
* Gets or sets the session Id for use in a query search.
|
|
22941
|
+
*/
|
|
22942
|
+
sessionId?: string;
|
|
22943
|
+
/**
|
|
22944
|
+
* Gets or sets the facility Id for use in a query search.
|
|
22945
|
+
*/
|
|
22946
|
+
facilityId?: string;
|
|
22947
|
+
/**
|
|
22948
|
+
* Gets or sets the course Id for use in a query search.
|
|
22949
|
+
*/
|
|
22950
|
+
courseId?: string;
|
|
22951
|
+
/**
|
|
22952
|
+
* Gets or sets the queryable order stage. This cannot be used in conjunction with IsBookedOrPendingPayment.
|
|
22953
|
+
*/
|
|
22954
|
+
orderStage?: OrderStage;
|
|
22955
|
+
/**
|
|
22956
|
+
* 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.
|
|
22957
|
+
*/
|
|
22958
|
+
isBookedOrPendingPayment?: boolean;
|
|
22959
|
+
/**
|
|
22960
|
+
* Gets or sets the queryable order stages.
|
|
22961
|
+
*/
|
|
22962
|
+
orderStages?: Array<OrderStage>;
|
|
22963
|
+
/**
|
|
22964
|
+
* Gets or sets the queryable order date creted is greater than or equal to.
|
|
22965
|
+
*/
|
|
22966
|
+
orderDateGte?: string;
|
|
22967
|
+
/**
|
|
22968
|
+
* Gets or sets the queryable order date created is less than or equal to.
|
|
22969
|
+
*/
|
|
22970
|
+
orderDateLte?: string;
|
|
22971
|
+
/**
|
|
22972
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
22973
|
+
*/
|
|
22974
|
+
endUserIdentityId?: string;
|
|
22795
22975
|
/**
|
|
22796
22976
|
* Gets or sets the page number for paged queries.
|
|
22797
22977
|
*/
|
|
@@ -22842,7 +23022,7 @@ declare class OrdersService {
|
|
|
22842
23022
|
* @returns Order OK
|
|
22843
23023
|
* @throws ApiError
|
|
22844
23024
|
*/
|
|
22845
|
-
getListWithoutReferences({ 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, }: {
|
|
23025
|
+
getListWithoutReferences({ wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22846
23026
|
/**
|
|
22847
23027
|
* Gets or sets the wildcard for use in a query search.
|
|
22848
23028
|
*/
|
|
@@ -22911,6 +23091,10 @@ declare class OrdersService {
|
|
|
22911
23091
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
22912
23092
|
*/
|
|
22913
23093
|
orderDateLte?: string;
|
|
23094
|
+
/**
|
|
23095
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
23096
|
+
*/
|
|
23097
|
+
endUserIdentityId?: string;
|
|
22914
23098
|
/**
|
|
22915
23099
|
* Gets or sets the page number for paged queries.
|
|
22916
23100
|
*/
|
|
@@ -22961,7 +23145,7 @@ declare class OrdersService {
|
|
|
22961
23145
|
* @returns Order OK
|
|
22962
23146
|
* @throws ApiError
|
|
22963
23147
|
*/
|
|
22964
|
-
getListIdName({ 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, }: {
|
|
23148
|
+
getListIdName({ wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22965
23149
|
/**
|
|
22966
23150
|
* Gets or sets the wildcard for use in a query search.
|
|
22967
23151
|
*/
|
|
@@ -23030,6 +23214,10 @@ declare class OrdersService {
|
|
|
23030
23214
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
23031
23215
|
*/
|
|
23032
23216
|
orderDateLte?: string;
|
|
23217
|
+
/**
|
|
23218
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
23219
|
+
*/
|
|
23220
|
+
endUserIdentityId?: string;
|
|
23033
23221
|
/**
|
|
23034
23222
|
* Gets or sets the page number for paged queries.
|
|
23035
23223
|
*/
|
|
@@ -27021,7 +27209,7 @@ declare class PublicBookingService {
|
|
|
27021
27209
|
* @returns OrderPage OK
|
|
27022
27210
|
* @throws ApiError
|
|
27023
27211
|
*/
|
|
27024
|
-
getPage({ xTenantSubdomain, userId, 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, }: {
|
|
27212
|
+
getPage({ xTenantSubdomain, userId, wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27025
27213
|
/**
|
|
27026
27214
|
* The tenants subdomain.
|
|
27027
27215
|
*/
|
|
@@ -27098,6 +27286,10 @@ declare class PublicBookingService {
|
|
|
27098
27286
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
27099
27287
|
*/
|
|
27100
27288
|
orderDateLte?: string;
|
|
27289
|
+
/**
|
|
27290
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
27291
|
+
*/
|
|
27292
|
+
endUserIdentityId?: string;
|
|
27101
27293
|
/**
|
|
27102
27294
|
* Gets or sets the page number for paged queries.
|
|
27103
27295
|
*/
|
|
@@ -27178,7 +27370,7 @@ declare class PublicBookingService {
|
|
|
27178
27370
|
* @returns boolean OK
|
|
27179
27371
|
* @throws ApiError
|
|
27180
27372
|
*/
|
|
27181
|
-
exists({ xTenantSubdomain, userId, 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, }: {
|
|
27373
|
+
exists({ xTenantSubdomain, userId, wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27182
27374
|
/**
|
|
27183
27375
|
* The tenants subdomain.
|
|
27184
27376
|
*/
|
|
@@ -27255,6 +27447,10 @@ declare class PublicBookingService {
|
|
|
27255
27447
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
27256
27448
|
*/
|
|
27257
27449
|
orderDateLte?: string;
|
|
27450
|
+
/**
|
|
27451
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
27452
|
+
*/
|
|
27453
|
+
endUserIdentityId?: string;
|
|
27258
27454
|
/**
|
|
27259
27455
|
* Gets or sets the page number for paged queries.
|
|
27260
27456
|
*/
|
|
@@ -27302,6 +27498,34 @@ declare class PublicBookingService {
|
|
|
27302
27498
|
}): CancelablePromise<boolean>;
|
|
27303
27499
|
}
|
|
27304
27500
|
|
|
27501
|
+
declare class PublicCalendarService {
|
|
27502
|
+
readonly httpRequest: BaseHttpRequest;
|
|
27503
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
27504
|
+
/**
|
|
27505
|
+
* Gets calendar data.
|
|
27506
|
+
* @returns any OK
|
|
27507
|
+
* @throws ApiError
|
|
27508
|
+
*/
|
|
27509
|
+
getCalendarView({ xTenantSubdomain, startDateTimeGte, venueId, programmeId, }: {
|
|
27510
|
+
/**
|
|
27511
|
+
* The tenants subdomain.
|
|
27512
|
+
*/
|
|
27513
|
+
xTenantSubdomain?: string;
|
|
27514
|
+
/**
|
|
27515
|
+
* Gets or sets the queryable calendar item start date time is greater than or equal to.
|
|
27516
|
+
*/
|
|
27517
|
+
startDateTimeGte?: string;
|
|
27518
|
+
/**
|
|
27519
|
+
* Gets or sets the venue Id for use in a query search.
|
|
27520
|
+
*/
|
|
27521
|
+
venueId?: string;
|
|
27522
|
+
/**
|
|
27523
|
+
* Gets or sets the programme Id for use in a query search.
|
|
27524
|
+
*/
|
|
27525
|
+
programmeId?: string;
|
|
27526
|
+
}): CancelablePromise<any>;
|
|
27527
|
+
}
|
|
27528
|
+
|
|
27305
27529
|
declare class PublicCoursesService {
|
|
27306
27530
|
readonly httpRequest: BaseHttpRequest;
|
|
27307
27531
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -27332,7 +27556,7 @@ declare class PublicCoursesService {
|
|
|
27332
27556
|
* @returns CoursePage OK
|
|
27333
27557
|
* @throws ApiError
|
|
27334
27558
|
*/
|
|
27335
|
-
getPage({ xTenantSubdomain, id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27559
|
+
getPage({ xTenantSubdomain, id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27336
27560
|
xTenantSubdomain?: string;
|
|
27337
27561
|
/**
|
|
27338
27562
|
* Gets or sets the queryable Course Id.
|
|
@@ -27414,6 +27638,10 @@ declare class PublicCoursesService {
|
|
|
27414
27638
|
* Gets or sets a value indicating whether return online courses.
|
|
27415
27639
|
*/
|
|
27416
27640
|
online?: boolean;
|
|
27641
|
+
/**
|
|
27642
|
+
* Gets or sets a value indicating whether the course is featured on the storefront.
|
|
27643
|
+
*/
|
|
27644
|
+
featured?: boolean;
|
|
27417
27645
|
/**
|
|
27418
27646
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
27419
27647
|
*/
|
|
@@ -27560,7 +27788,7 @@ declare class PublicCoursesService {
|
|
|
27560
27788
|
* @returns boolean OK
|
|
27561
27789
|
* @throws ApiError
|
|
27562
27790
|
*/
|
|
27563
|
-
exists({ xTenantSubdomain, id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27791
|
+
exists({ xTenantSubdomain, id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27564
27792
|
/**
|
|
27565
27793
|
* The tenants subdomain.
|
|
27566
27794
|
*/
|
|
@@ -27645,6 +27873,10 @@ declare class PublicCoursesService {
|
|
|
27645
27873
|
* Gets or sets a value indicating whether return online courses.
|
|
27646
27874
|
*/
|
|
27647
27875
|
online?: boolean;
|
|
27876
|
+
/**
|
|
27877
|
+
* Gets or sets a value indicating whether the course is featured on the storefront.
|
|
27878
|
+
*/
|
|
27879
|
+
featured?: boolean;
|
|
27648
27880
|
/**
|
|
27649
27881
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
27650
27882
|
*/
|
|
@@ -29176,7 +29408,7 @@ declare class PublicLeasingService {
|
|
|
29176
29408
|
* @returns OrderPage OK
|
|
29177
29409
|
* @throws ApiError
|
|
29178
29410
|
*/
|
|
29179
|
-
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, }: {
|
|
29411
|
+
getPage({ xTenantSubdomain, wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
29180
29412
|
/**
|
|
29181
29413
|
* The tenants subdomain.
|
|
29182
29414
|
*/
|
|
@@ -29249,6 +29481,10 @@ declare class PublicLeasingService {
|
|
|
29249
29481
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
29250
29482
|
*/
|
|
29251
29483
|
orderDateLte?: string;
|
|
29484
|
+
/**
|
|
29485
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
29486
|
+
*/
|
|
29487
|
+
endUserIdentityId?: string;
|
|
29252
29488
|
/**
|
|
29253
29489
|
* Gets or sets the page number for paged queries.
|
|
29254
29490
|
*/
|
|
@@ -29299,7 +29535,7 @@ declare class PublicLeasingService {
|
|
|
29299
29535
|
* @returns boolean OK
|
|
29300
29536
|
* @throws ApiError
|
|
29301
29537
|
*/
|
|
29302
|
-
exists({ 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, }: {
|
|
29538
|
+
exists({ xTenantSubdomain, wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
29303
29539
|
/**
|
|
29304
29540
|
* The tenants subdomain.
|
|
29305
29541
|
*/
|
|
@@ -29372,6 +29608,10 @@ declare class PublicLeasingService {
|
|
|
29372
29608
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
29373
29609
|
*/
|
|
29374
29610
|
orderDateLte?: string;
|
|
29611
|
+
/**
|
|
29612
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
29613
|
+
*/
|
|
29614
|
+
endUserIdentityId?: string;
|
|
29375
29615
|
/**
|
|
29376
29616
|
* Gets or sets the page number for paged queries.
|
|
29377
29617
|
*/
|
|
@@ -29432,7 +29672,7 @@ declare class PublicNetworksService {
|
|
|
29432
29672
|
* @returns SessionPage OK
|
|
29433
29673
|
* @throws ApiError
|
|
29434
29674
|
*/
|
|
29435
|
-
getSessions({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
29675
|
+
getSessions({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
29436
29676
|
/**
|
|
29437
29677
|
* Gets or sets the queryable session ids.
|
|
29438
29678
|
*/
|
|
@@ -29461,6 +29701,10 @@ declare class PublicNetworksService {
|
|
|
29461
29701
|
* Gets or sets a value indicating whether return online sessions.
|
|
29462
29702
|
*/
|
|
29463
29703
|
online?: boolean;
|
|
29704
|
+
/**
|
|
29705
|
+
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
29706
|
+
*/
|
|
29707
|
+
featured?: boolean;
|
|
29464
29708
|
/**
|
|
29465
29709
|
* Gets or sets the queryable Programme Id.
|
|
29466
29710
|
*/
|
|
@@ -29915,93 +30159,10 @@ declare class PublicOrderItemsService {
|
|
|
29915
30159
|
readonly httpRequest: BaseHttpRequest;
|
|
29916
30160
|
constructor(httpRequest: BaseHttpRequest);
|
|
29917
30161
|
/**
|
|
29918
|
-
* Reschedules the order item to another scheduled session.
|
|
29919
|
-
* @returns OrderItem OK
|
|
29920
|
-
* @throws ApiError
|
|
29921
|
-
*/
|
|
29922
|
-
reschedule({ orderItemId, scheduledSessionId, xTenantSubdomain, }: {
|
|
29923
|
-
/**
|
|
29924
|
-
* The current register the attendee is assigned to.
|
|
29925
|
-
*/
|
|
29926
|
-
orderItemId: string;
|
|
29927
|
-
/**
|
|
29928
|
-
* The scheduled session the attendee needs to be moved to.
|
|
29929
|
-
*/
|
|
29930
|
-
scheduledSessionId: string;
|
|
29931
|
-
/**
|
|
29932
|
-
* The tenants subdomain.
|
|
29933
|
-
*/
|
|
29934
|
-
xTenantSubdomain?: string;
|
|
29935
|
-
}): CancelablePromise<OrderItem>;
|
|
29936
|
-
/**
|
|
29937
|
-
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
29938
|
-
* @returns OrderItem OK
|
|
29939
|
-
* @throws ApiError
|
|
29940
|
-
*/
|
|
29941
|
-
post({ xTenantSubdomain, requestBody, }: {
|
|
29942
|
-
/**
|
|
29943
|
-
* The tenants subdomain.
|
|
29944
|
-
*/
|
|
29945
|
-
xTenantSubdomain?: string;
|
|
29946
|
-
/**
|
|
29947
|
-
* The <typeparamref name="TObject" /> model.
|
|
29948
|
-
*/
|
|
29949
|
-
requestBody?: OrderItemPost;
|
|
29950
|
-
}): CancelablePromise<OrderItem>;
|
|
29951
|
-
/**
|
|
29952
|
-
* Patches the resource.
|
|
29953
|
-
* @returns OrderItem OK
|
|
29954
|
-
* @throws ApiError
|
|
29955
|
-
*/
|
|
29956
|
-
patch({ xTenantSubdomain, requestBody, }: {
|
|
29957
|
-
/**
|
|
29958
|
-
* The tenants subdomain.
|
|
29959
|
-
*/
|
|
29960
|
-
xTenantSubdomain?: string;
|
|
29961
|
-
/**
|
|
29962
|
-
* The <typeparamref name="TObject" /> model.
|
|
29963
|
-
*/
|
|
29964
|
-
requestBody?: OrderItemPatch;
|
|
29965
|
-
}): CancelablePromise<OrderItem>;
|
|
29966
|
-
/**
|
|
29967
|
-
* Inserts a list of resources.
|
|
29968
|
-
* @returns OrderItem OK
|
|
29969
|
-
* @throws ApiError
|
|
29970
|
-
*/
|
|
29971
|
-
postList({ xTenantSubdomain, requestBody, }: {
|
|
29972
|
-
/**
|
|
29973
|
-
* The tenants subdomain.
|
|
29974
|
-
*/
|
|
29975
|
-
xTenantSubdomain?: string;
|
|
29976
|
-
/**
|
|
29977
|
-
* The list of <typeparamref name="TObject" />.
|
|
29978
|
-
*/
|
|
29979
|
-
requestBody?: Array<OrderItemPost>;
|
|
29980
|
-
}): CancelablePromise<Array<OrderItem>>;
|
|
29981
|
-
/**
|
|
29982
|
-
* Deletes the resource.
|
|
29983
|
-
* @returns any OK
|
|
29984
|
-
* @throws ApiError
|
|
29985
|
-
*/
|
|
29986
|
-
deleteByObject({ xTenantSubdomain, requestBody, }: {
|
|
29987
|
-
/**
|
|
29988
|
-
* The tenants subdomain.
|
|
29989
|
-
*/
|
|
29990
|
-
xTenantSubdomain?: string;
|
|
29991
|
-
/**
|
|
29992
|
-
* The <typeparamref name="TObject" /> model.
|
|
29993
|
-
*/
|
|
29994
|
-
requestBody?: OrderItem;
|
|
29995
|
-
}): CancelablePromise<any>;
|
|
29996
|
-
/**
|
|
29997
|
-
* Gets a list of resources.
|
|
29998
30162
|
* @returns OrderItemPage OK
|
|
29999
30163
|
* @throws ApiError
|
|
30000
30164
|
*/
|
|
30001
|
-
getPage({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
30002
|
-
/**
|
|
30003
|
-
* The tenants subdomain.
|
|
30004
|
-
*/
|
|
30165
|
+
getPage({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
30005
30166
|
xTenantSubdomain?: string;
|
|
30006
30167
|
/**
|
|
30007
30168
|
* Gets or sets the queryable order item ids.
|
|
@@ -30035,6 +30196,18 @@ declare class PublicOrderItemsService {
|
|
|
30035
30196
|
* Gets or sets the queryable parent order item id id.
|
|
30036
30197
|
*/
|
|
30037
30198
|
parentOrderItemId?: string;
|
|
30199
|
+
/**
|
|
30200
|
+
* Gets or sets the queryable order by opportunity start date value.
|
|
30201
|
+
*/
|
|
30202
|
+
orderByOpportunityStartdate?: boolean;
|
|
30203
|
+
/**
|
|
30204
|
+
* Gets or sets the queryable event timing.
|
|
30205
|
+
*/
|
|
30206
|
+
eventTiming?: EventTiming;
|
|
30207
|
+
/**
|
|
30208
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
30209
|
+
*/
|
|
30210
|
+
endUserIdentityId?: string;
|
|
30038
30211
|
/**
|
|
30039
30212
|
* Gets or sets the page number for paged queries.
|
|
30040
30213
|
*/
|
|
@@ -30080,6 +30253,85 @@ declare class PublicOrderItemsService {
|
|
|
30080
30253
|
*/
|
|
30081
30254
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
30082
30255
|
}): CancelablePromise<OrderItemPage>;
|
|
30256
|
+
/**
|
|
30257
|
+
* Deletes the resource.
|
|
30258
|
+
* @returns any OK
|
|
30259
|
+
* @throws ApiError
|
|
30260
|
+
*/
|
|
30261
|
+
deleteByObject({ xTenantSubdomain, requestBody, }: {
|
|
30262
|
+
/**
|
|
30263
|
+
* The tenants subdomain.
|
|
30264
|
+
*/
|
|
30265
|
+
xTenantSubdomain?: string;
|
|
30266
|
+
/**
|
|
30267
|
+
* The <typeparamref name="TObject" /> model.
|
|
30268
|
+
*/
|
|
30269
|
+
requestBody?: OrderItem;
|
|
30270
|
+
}): CancelablePromise<any>;
|
|
30271
|
+
/**
|
|
30272
|
+
* Reschedules the order item to another scheduled session.
|
|
30273
|
+
* @returns OrderItem OK
|
|
30274
|
+
* @throws ApiError
|
|
30275
|
+
*/
|
|
30276
|
+
reschedule({ orderItemId, scheduledSessionId, xTenantSubdomain, }: {
|
|
30277
|
+
/**
|
|
30278
|
+
* The current register the attendee is assigned to.
|
|
30279
|
+
*/
|
|
30280
|
+
orderItemId: string;
|
|
30281
|
+
/**
|
|
30282
|
+
* The scheduled session the attendee needs to be moved to.
|
|
30283
|
+
*/
|
|
30284
|
+
scheduledSessionId: string;
|
|
30285
|
+
/**
|
|
30286
|
+
* The tenants subdomain.
|
|
30287
|
+
*/
|
|
30288
|
+
xTenantSubdomain?: string;
|
|
30289
|
+
}): CancelablePromise<OrderItem>;
|
|
30290
|
+
/**
|
|
30291
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
30292
|
+
* @returns OrderItem OK
|
|
30293
|
+
* @throws ApiError
|
|
30294
|
+
*/
|
|
30295
|
+
post({ xTenantSubdomain, requestBody, }: {
|
|
30296
|
+
/**
|
|
30297
|
+
* The tenants subdomain.
|
|
30298
|
+
*/
|
|
30299
|
+
xTenantSubdomain?: string;
|
|
30300
|
+
/**
|
|
30301
|
+
* The <typeparamref name="TObject" /> model.
|
|
30302
|
+
*/
|
|
30303
|
+
requestBody?: OrderItemPost;
|
|
30304
|
+
}): CancelablePromise<OrderItem>;
|
|
30305
|
+
/**
|
|
30306
|
+
* Patches the resource.
|
|
30307
|
+
* @returns OrderItem OK
|
|
30308
|
+
* @throws ApiError
|
|
30309
|
+
*/
|
|
30310
|
+
patch({ xTenantSubdomain, requestBody, }: {
|
|
30311
|
+
/**
|
|
30312
|
+
* The tenants subdomain.
|
|
30313
|
+
*/
|
|
30314
|
+
xTenantSubdomain?: string;
|
|
30315
|
+
/**
|
|
30316
|
+
* The <typeparamref name="TObject" /> model.
|
|
30317
|
+
*/
|
|
30318
|
+
requestBody?: OrderItemPatch;
|
|
30319
|
+
}): CancelablePromise<OrderItem>;
|
|
30320
|
+
/**
|
|
30321
|
+
* Inserts a list of resources.
|
|
30322
|
+
* @returns OrderItem OK
|
|
30323
|
+
* @throws ApiError
|
|
30324
|
+
*/
|
|
30325
|
+
postList({ xTenantSubdomain, requestBody, }: {
|
|
30326
|
+
/**
|
|
30327
|
+
* The tenants subdomain.
|
|
30328
|
+
*/
|
|
30329
|
+
xTenantSubdomain?: string;
|
|
30330
|
+
/**
|
|
30331
|
+
* The list of <typeparamref name="TObject" />.
|
|
30332
|
+
*/
|
|
30333
|
+
requestBody?: Array<OrderItemPost>;
|
|
30334
|
+
}): CancelablePromise<Array<OrderItem>>;
|
|
30083
30335
|
/**
|
|
30084
30336
|
* Deletes the resource.
|
|
30085
30337
|
* @returns any OK
|
|
@@ -30115,7 +30367,7 @@ declare class PublicOrderItemsService {
|
|
|
30115
30367
|
* @returns boolean OK
|
|
30116
30368
|
* @throws ApiError
|
|
30117
30369
|
*/
|
|
30118
|
-
exists({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
30370
|
+
exists({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
30119
30371
|
/**
|
|
30120
30372
|
* The tenants subdomain.
|
|
30121
30373
|
*/
|
|
@@ -30152,6 +30404,18 @@ declare class PublicOrderItemsService {
|
|
|
30152
30404
|
* Gets or sets the queryable parent order item id id.
|
|
30153
30405
|
*/
|
|
30154
30406
|
parentOrderItemId?: string;
|
|
30407
|
+
/**
|
|
30408
|
+
* Gets or sets the queryable order by opportunity start date value.
|
|
30409
|
+
*/
|
|
30410
|
+
orderByOpportunityStartdate?: boolean;
|
|
30411
|
+
/**
|
|
30412
|
+
* Gets or sets the queryable event timing.
|
|
30413
|
+
*/
|
|
30414
|
+
eventTiming?: EventTiming;
|
|
30415
|
+
/**
|
|
30416
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
30417
|
+
*/
|
|
30418
|
+
endUserIdentityId?: string;
|
|
30155
30419
|
/**
|
|
30156
30420
|
* Gets or sets the page number for paged queries.
|
|
30157
30421
|
*/
|
|
@@ -30226,142 +30490,10 @@ declare class PublicOrdersService {
|
|
|
30226
30490
|
xTenantSubdomain?: string;
|
|
30227
30491
|
}): CancelablePromise<any>;
|
|
30228
30492
|
/**
|
|
30229
|
-
* Gets an Order and includes checks to ensure it is bookable.
|
|
30230
|
-
* @returns Order OK
|
|
30231
|
-
* @throws ApiError
|
|
30232
|
-
*/
|
|
30233
|
-
getObjectWithOrderValidation({ id, xTenantSubdomain, }: {
|
|
30234
|
-
/**
|
|
30235
|
-
* The order id.
|
|
30236
|
-
*/
|
|
30237
|
-
id: string;
|
|
30238
|
-
/**
|
|
30239
|
-
* The tenants subdomain.
|
|
30240
|
-
*/
|
|
30241
|
-
xTenantSubdomain?: string;
|
|
30242
|
-
}): CancelablePromise<Order>;
|
|
30243
|
-
/**
|
|
30244
|
-
* Cancels the order and requests a refund.
|
|
30245
|
-
* @returns Order OK
|
|
30246
|
-
* @throws ApiError
|
|
30247
|
-
*/
|
|
30248
|
-
cancelWithRefund({ id, xTenantSubdomain, requestBody, }: {
|
|
30249
|
-
/**
|
|
30250
|
-
* The order id.
|
|
30251
|
-
*/
|
|
30252
|
-
id: string;
|
|
30253
|
-
/**
|
|
30254
|
-
* The tenants subdomain.
|
|
30255
|
-
*/
|
|
30256
|
-
xTenantSubdomain?: string;
|
|
30257
|
-
/**
|
|
30258
|
-
* The order items in the case of a partial refund.
|
|
30259
|
-
*/
|
|
30260
|
-
requestBody?: Array<string>;
|
|
30261
|
-
}): CancelablePromise<Order>;
|
|
30262
|
-
/**
|
|
30263
|
-
* Cancels the order.
|
|
30264
|
-
* @returns Order OK
|
|
30265
|
-
* @throws ApiError
|
|
30266
|
-
*/
|
|
30267
|
-
cancel({ id, xTenantSubdomain, requestBody, }: {
|
|
30268
|
-
/**
|
|
30269
|
-
* The order id.
|
|
30270
|
-
*/
|
|
30271
|
-
id: string;
|
|
30272
|
-
/**
|
|
30273
|
-
* The tenants subdomain.
|
|
30274
|
-
*/
|
|
30275
|
-
xTenantSubdomain?: string;
|
|
30276
|
-
/**
|
|
30277
|
-
* The order items in the case of a partial refund.
|
|
30278
|
-
*/
|
|
30279
|
-
requestBody?: Array<string>;
|
|
30280
|
-
}): CancelablePromise<Order>;
|
|
30281
|
-
/**
|
|
30282
|
-
* Update basket for order.
|
|
30283
|
-
* @returns Order OK
|
|
30284
|
-
* @throws ApiError
|
|
30285
|
-
*/
|
|
30286
|
-
updateBasket({ xTenantSubdomain, requestBody, }: {
|
|
30287
|
-
/**
|
|
30288
|
-
* The tenants subdomain.
|
|
30289
|
-
*/
|
|
30290
|
-
xTenantSubdomain?: string;
|
|
30291
|
-
/**
|
|
30292
|
-
* The Order id.
|
|
30293
|
-
*/
|
|
30294
|
-
requestBody?: Order;
|
|
30295
|
-
}): CancelablePromise<Order>;
|
|
30296
|
-
/**
|
|
30297
|
-
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
30298
|
-
* @returns Order OK
|
|
30299
|
-
* @throws ApiError
|
|
30300
|
-
*/
|
|
30301
|
-
post({ xTenantSubdomain, requestBody, }: {
|
|
30302
|
-
/**
|
|
30303
|
-
* The tenants subdomain.
|
|
30304
|
-
*/
|
|
30305
|
-
xTenantSubdomain?: string;
|
|
30306
|
-
/**
|
|
30307
|
-
* The <typeparamref name="TObject" /> model.
|
|
30308
|
-
*/
|
|
30309
|
-
requestBody?: OrderPost;
|
|
30310
|
-
}): CancelablePromise<Order>;
|
|
30311
|
-
/**
|
|
30312
|
-
* Patches the resource.
|
|
30313
|
-
* @returns Order OK
|
|
30314
|
-
* @throws ApiError
|
|
30315
|
-
*/
|
|
30316
|
-
patch({ xTenantSubdomain, requestBody, }: {
|
|
30317
|
-
/**
|
|
30318
|
-
* The tenants subdomain.
|
|
30319
|
-
*/
|
|
30320
|
-
xTenantSubdomain?: string;
|
|
30321
|
-
/**
|
|
30322
|
-
* The <typeparamref name="TObject" /> model.
|
|
30323
|
-
*/
|
|
30324
|
-
requestBody?: OrderPatch;
|
|
30325
|
-
}): CancelablePromise<Order>;
|
|
30326
|
-
/**
|
|
30327
|
-
* Inserts a list of resources.
|
|
30328
|
-
* @returns Order OK
|
|
30329
|
-
* @throws ApiError
|
|
30330
|
-
*/
|
|
30331
|
-
postList({ xTenantSubdomain, requestBody, }: {
|
|
30332
|
-
/**
|
|
30333
|
-
* The tenants subdomain.
|
|
30334
|
-
*/
|
|
30335
|
-
xTenantSubdomain?: string;
|
|
30336
|
-
/**
|
|
30337
|
-
* The list of <typeparamref name="TObject" />.
|
|
30338
|
-
*/
|
|
30339
|
-
requestBody?: Array<OrderPost>;
|
|
30340
|
-
}): 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
30493
|
* @returns OrderPage OK
|
|
30359
30494
|
* @throws ApiError
|
|
30360
30495
|
*/
|
|
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
|
-
*/
|
|
30496
|
+
getPage({ xTenantSubdomain, wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
30365
30497
|
xTenantSubdomain?: string;
|
|
30366
30498
|
/**
|
|
30367
30499
|
* Gets or sets the wildcard for use in a query search.
|
|
@@ -30431,6 +30563,10 @@ declare class PublicOrdersService {
|
|
|
30431
30563
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
30432
30564
|
*/
|
|
30433
30565
|
orderDateLte?: string;
|
|
30566
|
+
/**
|
|
30567
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
30568
|
+
*/
|
|
30569
|
+
endUserIdentityId?: string;
|
|
30434
30570
|
/**
|
|
30435
30571
|
* Gets or sets the page number for paged queries.
|
|
30436
30572
|
*/
|
|
@@ -30476,12 +30612,140 @@ declare class PublicOrdersService {
|
|
|
30476
30612
|
*/
|
|
30477
30613
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
30478
30614
|
}): CancelablePromise<OrderPage>;
|
|
30615
|
+
/**
|
|
30616
|
+
* Deletes the resource.
|
|
30617
|
+
* @returns any OK
|
|
30618
|
+
* @throws ApiError
|
|
30619
|
+
*/
|
|
30620
|
+
deleteByObject({ xTenantSubdomain, requestBody, }: {
|
|
30621
|
+
/**
|
|
30622
|
+
* The tenants subdomain.
|
|
30623
|
+
*/
|
|
30624
|
+
xTenantSubdomain?: string;
|
|
30625
|
+
/**
|
|
30626
|
+
* The <typeparamref name="TObject" /> model.
|
|
30627
|
+
*/
|
|
30628
|
+
requestBody?: Order;
|
|
30629
|
+
}): CancelablePromise<any>;
|
|
30630
|
+
/**
|
|
30631
|
+
* Gets an Order and includes checks to ensure it is bookable.
|
|
30632
|
+
* @returns Order OK
|
|
30633
|
+
* @throws ApiError
|
|
30634
|
+
*/
|
|
30635
|
+
getObjectWithOrderValidation({ id, xTenantSubdomain, }: {
|
|
30636
|
+
/**
|
|
30637
|
+
* The order id.
|
|
30638
|
+
*/
|
|
30639
|
+
id: string;
|
|
30640
|
+
/**
|
|
30641
|
+
* The tenants subdomain.
|
|
30642
|
+
*/
|
|
30643
|
+
xTenantSubdomain?: string;
|
|
30644
|
+
}): CancelablePromise<Order>;
|
|
30645
|
+
/**
|
|
30646
|
+
* Cancels the order and requests a refund.
|
|
30647
|
+
* @returns Order OK
|
|
30648
|
+
* @throws ApiError
|
|
30649
|
+
*/
|
|
30650
|
+
cancelWithRefund({ id, xTenantSubdomain, requestBody, }: {
|
|
30651
|
+
/**
|
|
30652
|
+
* The order id.
|
|
30653
|
+
*/
|
|
30654
|
+
id: string;
|
|
30655
|
+
/**
|
|
30656
|
+
* The tenants subdomain.
|
|
30657
|
+
*/
|
|
30658
|
+
xTenantSubdomain?: string;
|
|
30659
|
+
/**
|
|
30660
|
+
* The order items in the case of a partial refund.
|
|
30661
|
+
*/
|
|
30662
|
+
requestBody?: Array<string>;
|
|
30663
|
+
}): CancelablePromise<Order>;
|
|
30664
|
+
/**
|
|
30665
|
+
* Cancels the order.
|
|
30666
|
+
* @returns Order OK
|
|
30667
|
+
* @throws ApiError
|
|
30668
|
+
*/
|
|
30669
|
+
cancel({ id, xTenantSubdomain, requestBody, }: {
|
|
30670
|
+
/**
|
|
30671
|
+
* The order id.
|
|
30672
|
+
*/
|
|
30673
|
+
id: string;
|
|
30674
|
+
/**
|
|
30675
|
+
* The tenants subdomain.
|
|
30676
|
+
*/
|
|
30677
|
+
xTenantSubdomain?: string;
|
|
30678
|
+
/**
|
|
30679
|
+
* The order items in the case of a partial refund.
|
|
30680
|
+
*/
|
|
30681
|
+
requestBody?: Array<string>;
|
|
30682
|
+
}): CancelablePromise<Order>;
|
|
30683
|
+
/**
|
|
30684
|
+
* Update basket for order.
|
|
30685
|
+
* @returns Order OK
|
|
30686
|
+
* @throws ApiError
|
|
30687
|
+
*/
|
|
30688
|
+
updateBasket({ xTenantSubdomain, requestBody, }: {
|
|
30689
|
+
/**
|
|
30690
|
+
* The tenants subdomain.
|
|
30691
|
+
*/
|
|
30692
|
+
xTenantSubdomain?: string;
|
|
30693
|
+
/**
|
|
30694
|
+
* The Order id.
|
|
30695
|
+
*/
|
|
30696
|
+
requestBody?: Order;
|
|
30697
|
+
}): CancelablePromise<Order>;
|
|
30698
|
+
/**
|
|
30699
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
30700
|
+
* @returns Order OK
|
|
30701
|
+
* @throws ApiError
|
|
30702
|
+
*/
|
|
30703
|
+
post({ xTenantSubdomain, requestBody, }: {
|
|
30704
|
+
/**
|
|
30705
|
+
* The tenants subdomain.
|
|
30706
|
+
*/
|
|
30707
|
+
xTenantSubdomain?: string;
|
|
30708
|
+
/**
|
|
30709
|
+
* The <typeparamref name="TObject" /> model.
|
|
30710
|
+
*/
|
|
30711
|
+
requestBody?: OrderPost;
|
|
30712
|
+
}): CancelablePromise<Order>;
|
|
30713
|
+
/**
|
|
30714
|
+
* Patches the resource.
|
|
30715
|
+
* @returns Order OK
|
|
30716
|
+
* @throws ApiError
|
|
30717
|
+
*/
|
|
30718
|
+
patch({ xTenantSubdomain, requestBody, }: {
|
|
30719
|
+
/**
|
|
30720
|
+
* The tenants subdomain.
|
|
30721
|
+
*/
|
|
30722
|
+
xTenantSubdomain?: string;
|
|
30723
|
+
/**
|
|
30724
|
+
* The <typeparamref name="TObject" /> model.
|
|
30725
|
+
*/
|
|
30726
|
+
requestBody?: OrderPatch;
|
|
30727
|
+
}): CancelablePromise<Order>;
|
|
30728
|
+
/**
|
|
30729
|
+
* Inserts a list of resources.
|
|
30730
|
+
* @returns Order OK
|
|
30731
|
+
* @throws ApiError
|
|
30732
|
+
*/
|
|
30733
|
+
postList({ xTenantSubdomain, requestBody, }: {
|
|
30734
|
+
/**
|
|
30735
|
+
* The tenants subdomain.
|
|
30736
|
+
*/
|
|
30737
|
+
xTenantSubdomain?: string;
|
|
30738
|
+
/**
|
|
30739
|
+
* The list of <typeparamref name="TObject" />.
|
|
30740
|
+
*/
|
|
30741
|
+
requestBody?: Array<OrderPost>;
|
|
30742
|
+
}): CancelablePromise<Array<Order>>;
|
|
30479
30743
|
/**
|
|
30480
30744
|
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
30481
30745
|
* @returns boolean OK
|
|
30482
30746
|
* @throws ApiError
|
|
30483
30747
|
*/
|
|
30484
|
-
exists({ 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, }: {
|
|
30748
|
+
exists({ xTenantSubdomain, wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
30485
30749
|
/**
|
|
30486
30750
|
* The tenants subdomain.
|
|
30487
30751
|
*/
|
|
@@ -30554,6 +30818,10 @@ declare class PublicOrdersService {
|
|
|
30554
30818
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
30555
30819
|
*/
|
|
30556
30820
|
orderDateLte?: string;
|
|
30821
|
+
/**
|
|
30822
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
30823
|
+
*/
|
|
30824
|
+
endUserIdentityId?: string;
|
|
30557
30825
|
/**
|
|
30558
30826
|
* Gets or sets the page number for paged queries.
|
|
30559
30827
|
*/
|
|
@@ -31678,7 +31946,7 @@ declare class PublicScheduledSessionsService {
|
|
|
31678
31946
|
* @returns ScheduledSessionPage OK
|
|
31679
31947
|
* @throws ApiError
|
|
31680
31948
|
*/
|
|
31681
|
-
getPage({ xTenantSubdomain, ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
31949
|
+
getPage({ xTenantSubdomain, ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
31682
31950
|
xTenantSubdomain?: string;
|
|
31683
31951
|
/**
|
|
31684
31952
|
* Gets or sets the queryable scheduled session ids.
|
|
@@ -31744,6 +32012,10 @@ declare class PublicScheduledSessionsService {
|
|
|
31744
32012
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
31745
32013
|
*/
|
|
31746
32014
|
futureOnly?: boolean;
|
|
32015
|
+
/**
|
|
32016
|
+
* Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
32017
|
+
*/
|
|
32018
|
+
bookableOnly?: boolean;
|
|
31747
32019
|
/**
|
|
31748
32020
|
* Gets or sets a value indicating whether to include image detail in the results.
|
|
31749
32021
|
*/
|
|
@@ -31890,7 +32162,7 @@ declare class PublicScheduledSessionsService {
|
|
|
31890
32162
|
* @returns boolean OK
|
|
31891
32163
|
* @throws ApiError
|
|
31892
32164
|
*/
|
|
31893
|
-
exists({ xTenantSubdomain, ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32165
|
+
exists({ xTenantSubdomain, ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
31894
32166
|
/**
|
|
31895
32167
|
* The tenants subdomain.
|
|
31896
32168
|
*/
|
|
@@ -31959,6 +32231,10 @@ declare class PublicScheduledSessionsService {
|
|
|
31959
32231
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
31960
32232
|
*/
|
|
31961
32233
|
futureOnly?: boolean;
|
|
32234
|
+
/**
|
|
32235
|
+
* Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
32236
|
+
*/
|
|
32237
|
+
bookableOnly?: boolean;
|
|
31962
32238
|
/**
|
|
31963
32239
|
* Gets or sets a value indicating whether to include image detail in the results.
|
|
31964
32240
|
*/
|
|
@@ -32228,7 +32504,7 @@ declare class PublicSessionsService {
|
|
|
32228
32504
|
* @returns SessionPage OK
|
|
32229
32505
|
* @throws ApiError
|
|
32230
32506
|
*/
|
|
32231
|
-
getPage({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32507
|
+
getPage({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32232
32508
|
xTenantSubdomain?: string;
|
|
32233
32509
|
/**
|
|
32234
32510
|
* Gets or sets the queryable session ids.
|
|
@@ -32258,6 +32534,10 @@ declare class PublicSessionsService {
|
|
|
32258
32534
|
* Gets or sets a value indicating whether return online sessions.
|
|
32259
32535
|
*/
|
|
32260
32536
|
online?: boolean;
|
|
32537
|
+
/**
|
|
32538
|
+
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
32539
|
+
*/
|
|
32540
|
+
featured?: boolean;
|
|
32261
32541
|
/**
|
|
32262
32542
|
* Gets or sets the queryable Programme Id.
|
|
32263
32543
|
*/
|
|
@@ -32430,7 +32710,7 @@ declare class PublicSessionsService {
|
|
|
32430
32710
|
* @returns any OK
|
|
32431
32711
|
* @throws ApiError
|
|
32432
32712
|
*/
|
|
32433
|
-
getDistinctSlotDates({ xTenantSubdomain, ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32713
|
+
getDistinctSlotDates({ xTenantSubdomain, ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32434
32714
|
/**
|
|
32435
32715
|
* The tenants subdomain.
|
|
32436
32716
|
*/
|
|
@@ -32499,6 +32779,10 @@ declare class PublicSessionsService {
|
|
|
32499
32779
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
32500
32780
|
*/
|
|
32501
32781
|
futureOnly?: boolean;
|
|
32782
|
+
/**
|
|
32783
|
+
* Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
32784
|
+
*/
|
|
32785
|
+
bookableOnly?: boolean;
|
|
32502
32786
|
/**
|
|
32503
32787
|
* Gets or sets a value indicating whether to include image detail in the results.
|
|
32504
32788
|
*/
|
|
@@ -32630,7 +32914,7 @@ declare class PublicSessionsService {
|
|
|
32630
32914
|
* @returns boolean OK
|
|
32631
32915
|
* @throws ApiError
|
|
32632
32916
|
*/
|
|
32633
|
-
exists({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32917
|
+
exists({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32634
32918
|
/**
|
|
32635
32919
|
* The tenants subdomain.
|
|
32636
32920
|
*/
|
|
@@ -32663,6 +32947,10 @@ declare class PublicSessionsService {
|
|
|
32663
32947
|
* Gets or sets a value indicating whether return online sessions.
|
|
32664
32948
|
*/
|
|
32665
32949
|
online?: boolean;
|
|
32950
|
+
/**
|
|
32951
|
+
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
32952
|
+
*/
|
|
32953
|
+
featured?: boolean;
|
|
32666
32954
|
/**
|
|
32667
32955
|
* Gets or sets the queryable Programme Id.
|
|
32668
32956
|
*/
|
|
@@ -37987,7 +38275,7 @@ declare class ScheduledSessionsService {
|
|
|
37987
38275
|
* @returns ScheduledSessionPage OK
|
|
37988
38276
|
* @throws ApiError
|
|
37989
38277
|
*/
|
|
37990
|
-
getPage({ ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
38278
|
+
getPage({ ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
37991
38279
|
/**
|
|
37992
38280
|
* Gets or sets the queryable scheduled session ids.
|
|
37993
38281
|
*/
|
|
@@ -38052,6 +38340,10 @@ declare class ScheduledSessionsService {
|
|
|
38052
38340
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
38053
38341
|
*/
|
|
38054
38342
|
futureOnly?: boolean;
|
|
38343
|
+
/**
|
|
38344
|
+
* Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
38345
|
+
*/
|
|
38346
|
+
bookableOnly?: boolean;
|
|
38055
38347
|
/**
|
|
38056
38348
|
* Gets or sets a value indicating whether to include image detail in the results.
|
|
38057
38349
|
*/
|
|
@@ -38171,7 +38463,7 @@ declare class ScheduledSessionsService {
|
|
|
38171
38463
|
* @returns boolean OK
|
|
38172
38464
|
* @throws ApiError
|
|
38173
38465
|
*/
|
|
38174
|
-
exists({ ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
38466
|
+
exists({ ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
38175
38467
|
/**
|
|
38176
38468
|
* Gets or sets the queryable scheduled session ids.
|
|
38177
38469
|
*/
|
|
@@ -38236,6 +38528,10 @@ declare class ScheduledSessionsService {
|
|
|
38236
38528
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
38237
38529
|
*/
|
|
38238
38530
|
futureOnly?: boolean;
|
|
38531
|
+
/**
|
|
38532
|
+
* Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
38533
|
+
*/
|
|
38534
|
+
bookableOnly?: boolean;
|
|
38239
38535
|
/**
|
|
38240
38536
|
* Gets or sets a value indicating whether to include image detail in the results.
|
|
38241
38537
|
*/
|
|
@@ -38322,7 +38618,7 @@ declare class ScheduledSessionsService {
|
|
|
38322
38618
|
* @returns ScheduledSession OK
|
|
38323
38619
|
* @throws ApiError
|
|
38324
38620
|
*/
|
|
38325
|
-
getListWithoutReferences({ ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
38621
|
+
getListWithoutReferences({ ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
38326
38622
|
/**
|
|
38327
38623
|
* Gets or sets the queryable scheduled session ids.
|
|
38328
38624
|
*/
|
|
@@ -38387,6 +38683,10 @@ declare class ScheduledSessionsService {
|
|
|
38387
38683
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
38388
38684
|
*/
|
|
38389
38685
|
futureOnly?: boolean;
|
|
38686
|
+
/**
|
|
38687
|
+
* Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
38688
|
+
*/
|
|
38689
|
+
bookableOnly?: boolean;
|
|
38390
38690
|
/**
|
|
38391
38691
|
* Gets or sets a value indicating whether to include image detail in the results.
|
|
38392
38692
|
*/
|
|
@@ -38473,7 +38773,7 @@ declare class ScheduledSessionsService {
|
|
|
38473
38773
|
* @returns ScheduledSession OK
|
|
38474
38774
|
* @throws ApiError
|
|
38475
38775
|
*/
|
|
38476
|
-
getListIdName({ ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
38776
|
+
getListIdName({ ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
38477
38777
|
/**
|
|
38478
38778
|
* Gets or sets the queryable scheduled session ids.
|
|
38479
38779
|
*/
|
|
@@ -38538,6 +38838,10 @@ declare class ScheduledSessionsService {
|
|
|
38538
38838
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
38539
38839
|
*/
|
|
38540
38840
|
futureOnly?: boolean;
|
|
38841
|
+
/**
|
|
38842
|
+
* Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
38843
|
+
*/
|
|
38844
|
+
bookableOnly?: boolean;
|
|
38541
38845
|
/**
|
|
38542
38846
|
* Gets or sets a value indicating whether to include image detail in the results.
|
|
38543
38847
|
*/
|
|
@@ -38772,7 +39076,7 @@ declare class ScheduledSessionsSchedulesService {
|
|
|
38772
39076
|
* @returns ScheduledSessionSchedulePage OK
|
|
38773
39077
|
* @throws ApiError
|
|
38774
39078
|
*/
|
|
38775
|
-
getPage({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39079
|
+
getPage({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, bookableOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
38776
39080
|
/**
|
|
38777
39081
|
* Gets or sets the queryable session id.
|
|
38778
39082
|
*/
|
|
@@ -38793,6 +39097,10 @@ declare class ScheduledSessionsSchedulesService {
|
|
|
38793
39097
|
* Gets or sets the queryable schedule statuses.
|
|
38794
39098
|
*/
|
|
38795
39099
|
statuses?: Array<ScheduleStatus>;
|
|
39100
|
+
/**
|
|
39101
|
+
* Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
|
|
39102
|
+
*/
|
|
39103
|
+
bookableOnly?: boolean;
|
|
38796
39104
|
/**
|
|
38797
39105
|
* Gets or sets the page number for paged queries.
|
|
38798
39106
|
*/
|
|
@@ -38876,7 +39184,7 @@ declare class ScheduledSessionsSchedulesService {
|
|
|
38876
39184
|
* @returns boolean OK
|
|
38877
39185
|
* @throws ApiError
|
|
38878
39186
|
*/
|
|
38879
|
-
exists({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39187
|
+
exists({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, bookableOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
38880
39188
|
/**
|
|
38881
39189
|
* Gets or sets the queryable session id.
|
|
38882
39190
|
*/
|
|
@@ -38897,6 +39205,10 @@ declare class ScheduledSessionsSchedulesService {
|
|
|
38897
39205
|
* Gets or sets the queryable schedule statuses.
|
|
38898
39206
|
*/
|
|
38899
39207
|
statuses?: Array<ScheduleStatus>;
|
|
39208
|
+
/**
|
|
39209
|
+
* Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
|
|
39210
|
+
*/
|
|
39211
|
+
bookableOnly?: boolean;
|
|
38900
39212
|
/**
|
|
38901
39213
|
* Gets or sets the page number for paged queries.
|
|
38902
39214
|
*/
|
|
@@ -38947,7 +39259,7 @@ declare class ScheduledSessionsSchedulesService {
|
|
|
38947
39259
|
* @returns ScheduledSessionSchedule OK
|
|
38948
39260
|
* @throws ApiError
|
|
38949
39261
|
*/
|
|
38950
|
-
getListWithoutReferences({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39262
|
+
getListWithoutReferences({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, bookableOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
38951
39263
|
/**
|
|
38952
39264
|
* Gets or sets the queryable session id.
|
|
38953
39265
|
*/
|
|
@@ -38968,6 +39280,10 @@ declare class ScheduledSessionsSchedulesService {
|
|
|
38968
39280
|
* Gets or sets the queryable schedule statuses.
|
|
38969
39281
|
*/
|
|
38970
39282
|
statuses?: Array<ScheduleStatus>;
|
|
39283
|
+
/**
|
|
39284
|
+
* Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
|
|
39285
|
+
*/
|
|
39286
|
+
bookableOnly?: boolean;
|
|
38971
39287
|
/**
|
|
38972
39288
|
* Gets or sets the page number for paged queries.
|
|
38973
39289
|
*/
|
|
@@ -39018,7 +39334,7 @@ declare class ScheduledSessionsSchedulesService {
|
|
|
39018
39334
|
* @returns ScheduledSessionSchedule OK
|
|
39019
39335
|
* @throws ApiError
|
|
39020
39336
|
*/
|
|
39021
|
-
getListIdName({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39337
|
+
getListIdName({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, bookableOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39022
39338
|
/**
|
|
39023
39339
|
* Gets or sets the queryable session id.
|
|
39024
39340
|
*/
|
|
@@ -39039,6 +39355,10 @@ declare class ScheduledSessionsSchedulesService {
|
|
|
39039
39355
|
* Gets or sets the queryable schedule statuses.
|
|
39040
39356
|
*/
|
|
39041
39357
|
statuses?: Array<ScheduleStatus>;
|
|
39358
|
+
/**
|
|
39359
|
+
* Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
|
|
39360
|
+
*/
|
|
39361
|
+
bookableOnly?: boolean;
|
|
39042
39362
|
/**
|
|
39043
39363
|
* Gets or sets the page number for paged queries.
|
|
39044
39364
|
*/
|
|
@@ -39401,7 +39721,7 @@ declare class SessionsService {
|
|
|
39401
39721
|
* @returns SessionPage OK
|
|
39402
39722
|
* @throws ApiError
|
|
39403
39723
|
*/
|
|
39404
|
-
getPage({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39724
|
+
getPage({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39405
39725
|
/**
|
|
39406
39726
|
* Gets or sets the queryable session ids.
|
|
39407
39727
|
*/
|
|
@@ -39430,6 +39750,10 @@ declare class SessionsService {
|
|
|
39430
39750
|
* Gets or sets a value indicating whether return online sessions.
|
|
39431
39751
|
*/
|
|
39432
39752
|
online?: boolean;
|
|
39753
|
+
/**
|
|
39754
|
+
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
39755
|
+
*/
|
|
39756
|
+
featured?: boolean;
|
|
39433
39757
|
/**
|
|
39434
39758
|
* Gets or sets the queryable Programme Id.
|
|
39435
39759
|
*/
|
|
@@ -39601,7 +39925,7 @@ declare class SessionsService {
|
|
|
39601
39925
|
* @returns boolean OK
|
|
39602
39926
|
* @throws ApiError
|
|
39603
39927
|
*/
|
|
39604
|
-
exists({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39928
|
+
exists({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39605
39929
|
/**
|
|
39606
39930
|
* Gets or sets the queryable session ids.
|
|
39607
39931
|
*/
|
|
@@ -39630,6 +39954,10 @@ declare class SessionsService {
|
|
|
39630
39954
|
* Gets or sets a value indicating whether return online sessions.
|
|
39631
39955
|
*/
|
|
39632
39956
|
online?: boolean;
|
|
39957
|
+
/**
|
|
39958
|
+
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
39959
|
+
*/
|
|
39960
|
+
featured?: boolean;
|
|
39633
39961
|
/**
|
|
39634
39962
|
* Gets or sets the queryable Programme Id.
|
|
39635
39963
|
*/
|
|
@@ -39768,7 +40096,7 @@ declare class SessionsService {
|
|
|
39768
40096
|
* @returns Session OK
|
|
39769
40097
|
* @throws ApiError
|
|
39770
40098
|
*/
|
|
39771
|
-
getListWithoutReferences({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
40099
|
+
getListWithoutReferences({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39772
40100
|
/**
|
|
39773
40101
|
* Gets or sets the queryable session ids.
|
|
39774
40102
|
*/
|
|
@@ -39797,6 +40125,10 @@ declare class SessionsService {
|
|
|
39797
40125
|
* Gets or sets a value indicating whether return online sessions.
|
|
39798
40126
|
*/
|
|
39799
40127
|
online?: boolean;
|
|
40128
|
+
/**
|
|
40129
|
+
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
40130
|
+
*/
|
|
40131
|
+
featured?: boolean;
|
|
39800
40132
|
/**
|
|
39801
40133
|
* Gets or sets the queryable Programme Id.
|
|
39802
40134
|
*/
|
|
@@ -39935,7 +40267,7 @@ declare class SessionsService {
|
|
|
39935
40267
|
* @returns Session OK
|
|
39936
40268
|
* @throws ApiError
|
|
39937
40269
|
*/
|
|
39938
|
-
getListIdName({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
40270
|
+
getListIdName({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39939
40271
|
/**
|
|
39940
40272
|
* Gets or sets the queryable session ids.
|
|
39941
40273
|
*/
|
|
@@ -39964,6 +40296,10 @@ declare class SessionsService {
|
|
|
39964
40296
|
* Gets or sets a value indicating whether return online sessions.
|
|
39965
40297
|
*/
|
|
39966
40298
|
online?: boolean;
|
|
40299
|
+
/**
|
|
40300
|
+
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
40301
|
+
*/
|
|
40302
|
+
featured?: boolean;
|
|
39967
40303
|
/**
|
|
39968
40304
|
* Gets or sets the queryable Programme Id.
|
|
39969
40305
|
*/
|
|
@@ -54993,6 +55329,7 @@ declare class ApiClient {
|
|
|
54993
55329
|
readonly providers: ProvidersService;
|
|
54994
55330
|
readonly providerTypes: ProviderTypesService;
|
|
54995
55331
|
readonly publicBooking: PublicBookingService;
|
|
55332
|
+
readonly publicCalendar: PublicCalendarService;
|
|
54996
55333
|
readonly publicCourses: PublicCoursesService;
|
|
54997
55334
|
readonly publicCustomers: PublicCustomersService;
|
|
54998
55335
|
readonly publicFacilities: PublicFacilitiesService;
|
|
@@ -55187,4 +55524,4 @@ type ValidationResultModel = {
|
|
|
55187
55524
|
readonly errors?: Array<ValidationError> | null;
|
|
55188
55525
|
};
|
|
55189
55526
|
|
|
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 };
|
|
55527
|
+
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, 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, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|