reach-api-sdk 1.0.191 → 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 +297 -51
- package/dist/reach-sdk.js +140 -1
- package/package.json +1 -1
- package/src/apiClient.ts +3 -0
- package/src/definition/swagger.yaml +361 -0
- package/src/index.ts +2 -0
- package/src/models/Course.ts +4 -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/LeasingService.ts +24 -0
- package/src/services/OrderItemsService.ts +24 -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 +12 -0
- package/src/services/PublicOrdersService.ts +12 -0
- 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
|
*/
|
|
@@ -16796,7 +16853,7 @@ declare class LeasingService {
|
|
|
16796
16853
|
* @returns OrderPage OK
|
|
16797
16854
|
* @throws ApiError
|
|
16798
16855
|
*/
|
|
16799
|
-
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, }: {
|
|
16800
16857
|
/**
|
|
16801
16858
|
* Gets or sets the wildcard for use in a query search.
|
|
16802
16859
|
*/
|
|
@@ -16865,6 +16922,10 @@ declare class LeasingService {
|
|
|
16865
16922
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
16866
16923
|
*/
|
|
16867
16924
|
orderDateLte?: string;
|
|
16925
|
+
/**
|
|
16926
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
16927
|
+
*/
|
|
16928
|
+
endUserIdentityId?: string;
|
|
16868
16929
|
/**
|
|
16869
16930
|
* Gets or sets the page number for paged queries.
|
|
16870
16931
|
*/
|
|
@@ -16948,7 +17009,7 @@ declare class LeasingService {
|
|
|
16948
17009
|
* @returns boolean OK
|
|
16949
17010
|
* @throws ApiError
|
|
16950
17011
|
*/
|
|
16951
|
-
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, }: {
|
|
16952
17013
|
/**
|
|
16953
17014
|
* Gets or sets the wildcard for use in a query search.
|
|
16954
17015
|
*/
|
|
@@ -17017,6 +17078,10 @@ declare class LeasingService {
|
|
|
17017
17078
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
17018
17079
|
*/
|
|
17019
17080
|
orderDateLte?: string;
|
|
17081
|
+
/**
|
|
17082
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
17083
|
+
*/
|
|
17084
|
+
endUserIdentityId?: string;
|
|
17020
17085
|
/**
|
|
17021
17086
|
* Gets or sets the page number for paged queries.
|
|
17022
17087
|
*/
|
|
@@ -17067,7 +17132,7 @@ declare class LeasingService {
|
|
|
17067
17132
|
* @returns Order OK
|
|
17068
17133
|
* @throws ApiError
|
|
17069
17134
|
*/
|
|
17070
|
-
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, }: {
|
|
17071
17136
|
/**
|
|
17072
17137
|
* Gets or sets the wildcard for use in a query search.
|
|
17073
17138
|
*/
|
|
@@ -17136,6 +17201,10 @@ declare class LeasingService {
|
|
|
17136
17201
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
17137
17202
|
*/
|
|
17138
17203
|
orderDateLte?: string;
|
|
17204
|
+
/**
|
|
17205
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
17206
|
+
*/
|
|
17207
|
+
endUserIdentityId?: string;
|
|
17139
17208
|
/**
|
|
17140
17209
|
* Gets or sets the page number for paged queries.
|
|
17141
17210
|
*/
|
|
@@ -17186,7 +17255,7 @@ declare class LeasingService {
|
|
|
17186
17255
|
* @returns Order OK
|
|
17187
17256
|
* @throws ApiError
|
|
17188
17257
|
*/
|
|
17189
|
-
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, }: {
|
|
17190
17259
|
/**
|
|
17191
17260
|
* Gets or sets the wildcard for use in a query search.
|
|
17192
17261
|
*/
|
|
@@ -17255,6 +17324,10 @@ declare class LeasingService {
|
|
|
17255
17324
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
17256
17325
|
*/
|
|
17257
17326
|
orderDateLte?: string;
|
|
17327
|
+
/**
|
|
17328
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
17329
|
+
*/
|
|
17330
|
+
endUserIdentityId?: string;
|
|
17258
17331
|
/**
|
|
17259
17332
|
* Gets or sets the page number for paged queries.
|
|
17260
17333
|
*/
|
|
@@ -22009,7 +22082,7 @@ declare class OrderItemsService {
|
|
|
22009
22082
|
* @returns OrderItemPage OK
|
|
22010
22083
|
* @throws ApiError
|
|
22011
22084
|
*/
|
|
22012
|
-
getPage({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, 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, }: {
|
|
22013
22086
|
/**
|
|
22014
22087
|
* Gets or sets the queryable order item ids.
|
|
22015
22088
|
*/
|
|
@@ -22050,6 +22123,10 @@ declare class OrderItemsService {
|
|
|
22050
22123
|
* Gets or sets the queryable event timing.
|
|
22051
22124
|
*/
|
|
22052
22125
|
eventTiming?: EventTiming;
|
|
22126
|
+
/**
|
|
22127
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
22128
|
+
*/
|
|
22129
|
+
endUserIdentityId?: string;
|
|
22053
22130
|
/**
|
|
22054
22131
|
* Gets or sets the page number for paged queries.
|
|
22055
22132
|
*/
|
|
@@ -22133,7 +22210,7 @@ declare class OrderItemsService {
|
|
|
22133
22210
|
* @returns boolean OK
|
|
22134
22211
|
* @throws ApiError
|
|
22135
22212
|
*/
|
|
22136
|
-
exists({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, 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, }: {
|
|
22137
22214
|
/**
|
|
22138
22215
|
* Gets or sets the queryable order item ids.
|
|
22139
22216
|
*/
|
|
@@ -22174,6 +22251,10 @@ declare class OrderItemsService {
|
|
|
22174
22251
|
* Gets or sets the queryable event timing.
|
|
22175
22252
|
*/
|
|
22176
22253
|
eventTiming?: EventTiming;
|
|
22254
|
+
/**
|
|
22255
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
22256
|
+
*/
|
|
22257
|
+
endUserIdentityId?: string;
|
|
22177
22258
|
/**
|
|
22178
22259
|
* Gets or sets the page number for paged queries.
|
|
22179
22260
|
*/
|
|
@@ -22224,7 +22305,7 @@ declare class OrderItemsService {
|
|
|
22224
22305
|
* @returns OrderItem OK
|
|
22225
22306
|
* @throws ApiError
|
|
22226
22307
|
*/
|
|
22227
|
-
getListWithoutReferences({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, 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, }: {
|
|
22228
22309
|
/**
|
|
22229
22310
|
* Gets or sets the queryable order item ids.
|
|
22230
22311
|
*/
|
|
@@ -22265,6 +22346,10 @@ declare class OrderItemsService {
|
|
|
22265
22346
|
* Gets or sets the queryable event timing.
|
|
22266
22347
|
*/
|
|
22267
22348
|
eventTiming?: EventTiming;
|
|
22349
|
+
/**
|
|
22350
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
22351
|
+
*/
|
|
22352
|
+
endUserIdentityId?: string;
|
|
22268
22353
|
/**
|
|
22269
22354
|
* Gets or sets the page number for paged queries.
|
|
22270
22355
|
*/
|
|
@@ -22315,7 +22400,7 @@ declare class OrderItemsService {
|
|
|
22315
22400
|
* @returns OrderItem OK
|
|
22316
22401
|
* @throws ApiError
|
|
22317
22402
|
*/
|
|
22318
|
-
getListIdName({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, 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, }: {
|
|
22319
22404
|
/**
|
|
22320
22405
|
* Gets or sets the queryable order item ids.
|
|
22321
22406
|
*/
|
|
@@ -22356,6 +22441,10 @@ declare class OrderItemsService {
|
|
|
22356
22441
|
* Gets or sets the queryable event timing.
|
|
22357
22442
|
*/
|
|
22358
22443
|
eventTiming?: EventTiming;
|
|
22444
|
+
/**
|
|
22445
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
22446
|
+
*/
|
|
22447
|
+
endUserIdentityId?: string;
|
|
22359
22448
|
/**
|
|
22360
22449
|
* Gets or sets the page number for paged queries.
|
|
22361
22450
|
*/
|
|
@@ -22654,7 +22743,7 @@ declare class OrdersService {
|
|
|
22654
22743
|
* @returns OrderPage OK
|
|
22655
22744
|
* @throws ApiError
|
|
22656
22745
|
*/
|
|
22657
|
-
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, }: {
|
|
22658
22747
|
/**
|
|
22659
22748
|
* Gets or sets the wildcard for use in a query search.
|
|
22660
22749
|
*/
|
|
@@ -22723,6 +22812,10 @@ declare class OrdersService {
|
|
|
22723
22812
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
22724
22813
|
*/
|
|
22725
22814
|
orderDateLte?: string;
|
|
22815
|
+
/**
|
|
22816
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
22817
|
+
*/
|
|
22818
|
+
endUserIdentityId?: string;
|
|
22726
22819
|
/**
|
|
22727
22820
|
* Gets or sets the page number for paged queries.
|
|
22728
22821
|
*/
|
|
@@ -22806,7 +22899,7 @@ declare class OrdersService {
|
|
|
22806
22899
|
* @returns boolean OK
|
|
22807
22900
|
* @throws ApiError
|
|
22808
22901
|
*/
|
|
22809
|
-
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, }: {
|
|
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, }: {
|
|
22810
22903
|
/**
|
|
22811
22904
|
* Gets or sets the wildcard for use in a query search.
|
|
22812
22905
|
*/
|
|
@@ -22875,6 +22968,10 @@ declare class OrdersService {
|
|
|
22875
22968
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
22876
22969
|
*/
|
|
22877
22970
|
orderDateLte?: string;
|
|
22971
|
+
/**
|
|
22972
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
22973
|
+
*/
|
|
22974
|
+
endUserIdentityId?: string;
|
|
22878
22975
|
/**
|
|
22879
22976
|
* Gets or sets the page number for paged queries.
|
|
22880
22977
|
*/
|
|
@@ -22925,7 +23022,7 @@ declare class OrdersService {
|
|
|
22925
23022
|
* @returns Order OK
|
|
22926
23023
|
* @throws ApiError
|
|
22927
23024
|
*/
|
|
22928
|
-
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, }: {
|
|
22929
23026
|
/**
|
|
22930
23027
|
* Gets or sets the wildcard for use in a query search.
|
|
22931
23028
|
*/
|
|
@@ -22994,6 +23091,10 @@ declare class OrdersService {
|
|
|
22994
23091
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
22995
23092
|
*/
|
|
22996
23093
|
orderDateLte?: string;
|
|
23094
|
+
/**
|
|
23095
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
23096
|
+
*/
|
|
23097
|
+
endUserIdentityId?: string;
|
|
22997
23098
|
/**
|
|
22998
23099
|
* Gets or sets the page number for paged queries.
|
|
22999
23100
|
*/
|
|
@@ -23044,7 +23145,7 @@ declare class OrdersService {
|
|
|
23044
23145
|
* @returns Order OK
|
|
23045
23146
|
* @throws ApiError
|
|
23046
23147
|
*/
|
|
23047
|
-
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, }: {
|
|
23048
23149
|
/**
|
|
23049
23150
|
* Gets or sets the wildcard for use in a query search.
|
|
23050
23151
|
*/
|
|
@@ -23113,6 +23214,10 @@ declare class OrdersService {
|
|
|
23113
23214
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
23114
23215
|
*/
|
|
23115
23216
|
orderDateLte?: string;
|
|
23217
|
+
/**
|
|
23218
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
23219
|
+
*/
|
|
23220
|
+
endUserIdentityId?: string;
|
|
23116
23221
|
/**
|
|
23117
23222
|
* Gets or sets the page number for paged queries.
|
|
23118
23223
|
*/
|
|
@@ -27104,7 +27209,7 @@ declare class PublicBookingService {
|
|
|
27104
27209
|
* @returns OrderPage OK
|
|
27105
27210
|
* @throws ApiError
|
|
27106
27211
|
*/
|
|
27107
|
-
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, }: {
|
|
27108
27213
|
/**
|
|
27109
27214
|
* The tenants subdomain.
|
|
27110
27215
|
*/
|
|
@@ -27181,6 +27286,10 @@ declare class PublicBookingService {
|
|
|
27181
27286
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
27182
27287
|
*/
|
|
27183
27288
|
orderDateLte?: string;
|
|
27289
|
+
/**
|
|
27290
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
27291
|
+
*/
|
|
27292
|
+
endUserIdentityId?: string;
|
|
27184
27293
|
/**
|
|
27185
27294
|
* Gets or sets the page number for paged queries.
|
|
27186
27295
|
*/
|
|
@@ -27261,7 +27370,7 @@ declare class PublicBookingService {
|
|
|
27261
27370
|
* @returns boolean OK
|
|
27262
27371
|
* @throws ApiError
|
|
27263
27372
|
*/
|
|
27264
|
-
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, }: {
|
|
27265
27374
|
/**
|
|
27266
27375
|
* The tenants subdomain.
|
|
27267
27376
|
*/
|
|
@@ -27338,6 +27447,10 @@ declare class PublicBookingService {
|
|
|
27338
27447
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
27339
27448
|
*/
|
|
27340
27449
|
orderDateLte?: string;
|
|
27450
|
+
/**
|
|
27451
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
27452
|
+
*/
|
|
27453
|
+
endUserIdentityId?: string;
|
|
27341
27454
|
/**
|
|
27342
27455
|
* Gets or sets the page number for paged queries.
|
|
27343
27456
|
*/
|
|
@@ -27385,6 +27498,34 @@ declare class PublicBookingService {
|
|
|
27385
27498
|
}): CancelablePromise<boolean>;
|
|
27386
27499
|
}
|
|
27387
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
|
+
|
|
27388
27529
|
declare class PublicCoursesService {
|
|
27389
27530
|
readonly httpRequest: BaseHttpRequest;
|
|
27390
27531
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -27415,7 +27556,7 @@ declare class PublicCoursesService {
|
|
|
27415
27556
|
* @returns CoursePage OK
|
|
27416
27557
|
* @throws ApiError
|
|
27417
27558
|
*/
|
|
27418
|
-
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, }: {
|
|
27419
27560
|
xTenantSubdomain?: string;
|
|
27420
27561
|
/**
|
|
27421
27562
|
* Gets or sets the queryable Course Id.
|
|
@@ -27497,6 +27638,10 @@ declare class PublicCoursesService {
|
|
|
27497
27638
|
* Gets or sets a value indicating whether return online courses.
|
|
27498
27639
|
*/
|
|
27499
27640
|
online?: boolean;
|
|
27641
|
+
/**
|
|
27642
|
+
* Gets or sets a value indicating whether the course is featured on the storefront.
|
|
27643
|
+
*/
|
|
27644
|
+
featured?: boolean;
|
|
27500
27645
|
/**
|
|
27501
27646
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
27502
27647
|
*/
|
|
@@ -27643,7 +27788,7 @@ declare class PublicCoursesService {
|
|
|
27643
27788
|
* @returns boolean OK
|
|
27644
27789
|
* @throws ApiError
|
|
27645
27790
|
*/
|
|
27646
|
-
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, }: {
|
|
27647
27792
|
/**
|
|
27648
27793
|
* The tenants subdomain.
|
|
27649
27794
|
*/
|
|
@@ -27728,6 +27873,10 @@ declare class PublicCoursesService {
|
|
|
27728
27873
|
* Gets or sets a value indicating whether return online courses.
|
|
27729
27874
|
*/
|
|
27730
27875
|
online?: boolean;
|
|
27876
|
+
/**
|
|
27877
|
+
* Gets or sets a value indicating whether the course is featured on the storefront.
|
|
27878
|
+
*/
|
|
27879
|
+
featured?: boolean;
|
|
27731
27880
|
/**
|
|
27732
27881
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
27733
27882
|
*/
|
|
@@ -29259,7 +29408,7 @@ declare class PublicLeasingService {
|
|
|
29259
29408
|
* @returns OrderPage OK
|
|
29260
29409
|
* @throws ApiError
|
|
29261
29410
|
*/
|
|
29262
|
-
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, }: {
|
|
29263
29412
|
/**
|
|
29264
29413
|
* The tenants subdomain.
|
|
29265
29414
|
*/
|
|
@@ -29332,6 +29481,10 @@ declare class PublicLeasingService {
|
|
|
29332
29481
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
29333
29482
|
*/
|
|
29334
29483
|
orderDateLte?: string;
|
|
29484
|
+
/**
|
|
29485
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
29486
|
+
*/
|
|
29487
|
+
endUserIdentityId?: string;
|
|
29335
29488
|
/**
|
|
29336
29489
|
* Gets or sets the page number for paged queries.
|
|
29337
29490
|
*/
|
|
@@ -29382,7 +29535,7 @@ declare class PublicLeasingService {
|
|
|
29382
29535
|
* @returns boolean OK
|
|
29383
29536
|
* @throws ApiError
|
|
29384
29537
|
*/
|
|
29385
|
-
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, }: {
|
|
29386
29539
|
/**
|
|
29387
29540
|
* The tenants subdomain.
|
|
29388
29541
|
*/
|
|
@@ -29455,6 +29608,10 @@ declare class PublicLeasingService {
|
|
|
29455
29608
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
29456
29609
|
*/
|
|
29457
29610
|
orderDateLte?: string;
|
|
29611
|
+
/**
|
|
29612
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
29613
|
+
*/
|
|
29614
|
+
endUserIdentityId?: string;
|
|
29458
29615
|
/**
|
|
29459
29616
|
* Gets or sets the page number for paged queries.
|
|
29460
29617
|
*/
|
|
@@ -29515,7 +29672,7 @@ declare class PublicNetworksService {
|
|
|
29515
29672
|
* @returns SessionPage OK
|
|
29516
29673
|
* @throws ApiError
|
|
29517
29674
|
*/
|
|
29518
|
-
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, }: {
|
|
29519
29676
|
/**
|
|
29520
29677
|
* Gets or sets the queryable session ids.
|
|
29521
29678
|
*/
|
|
@@ -29544,6 +29701,10 @@ declare class PublicNetworksService {
|
|
|
29544
29701
|
* Gets or sets a value indicating whether return online sessions.
|
|
29545
29702
|
*/
|
|
29546
29703
|
online?: boolean;
|
|
29704
|
+
/**
|
|
29705
|
+
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
29706
|
+
*/
|
|
29707
|
+
featured?: boolean;
|
|
29547
29708
|
/**
|
|
29548
29709
|
* Gets or sets the queryable Programme Id.
|
|
29549
29710
|
*/
|
|
@@ -30001,7 +30162,7 @@ declare class PublicOrderItemsService {
|
|
|
30001
30162
|
* @returns OrderItemPage OK
|
|
30002
30163
|
* @throws ApiError
|
|
30003
30164
|
*/
|
|
30004
|
-
getPage({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
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.
|
|
@@ -30043,6 +30204,10 @@ declare class PublicOrderItemsService {
|
|
|
30043
30204
|
* Gets or sets the queryable event timing.
|
|
30044
30205
|
*/
|
|
30045
30206
|
eventTiming?: EventTiming;
|
|
30207
|
+
/**
|
|
30208
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
30209
|
+
*/
|
|
30210
|
+
endUserIdentityId?: string;
|
|
30046
30211
|
/**
|
|
30047
30212
|
* Gets or sets the page number for paged queries.
|
|
30048
30213
|
*/
|
|
@@ -30202,7 +30367,7 @@ declare class PublicOrderItemsService {
|
|
|
30202
30367
|
* @returns boolean OK
|
|
30203
30368
|
* @throws ApiError
|
|
30204
30369
|
*/
|
|
30205
|
-
exists({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, 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, }: {
|
|
30206
30371
|
/**
|
|
30207
30372
|
* The tenants subdomain.
|
|
30208
30373
|
*/
|
|
@@ -30247,6 +30412,10 @@ declare class PublicOrderItemsService {
|
|
|
30247
30412
|
* Gets or sets the queryable event timing.
|
|
30248
30413
|
*/
|
|
30249
30414
|
eventTiming?: EventTiming;
|
|
30415
|
+
/**
|
|
30416
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
30417
|
+
*/
|
|
30418
|
+
endUserIdentityId?: string;
|
|
30250
30419
|
/**
|
|
30251
30420
|
* Gets or sets the page number for paged queries.
|
|
30252
30421
|
*/
|
|
@@ -30324,7 +30493,7 @@ declare class PublicOrdersService {
|
|
|
30324
30493
|
* @returns OrderPage OK
|
|
30325
30494
|
* @throws ApiError
|
|
30326
30495
|
*/
|
|
30327
|
-
getPage({ xTenantSubdomain, wildcard, accessCode, customerName, email, providerId, venueId, programmeId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
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, }: {
|
|
30328
30497
|
xTenantSubdomain?: string;
|
|
30329
30498
|
/**
|
|
30330
30499
|
* Gets or sets the wildcard for use in a query search.
|
|
@@ -30394,6 +30563,10 @@ declare class PublicOrdersService {
|
|
|
30394
30563
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
30395
30564
|
*/
|
|
30396
30565
|
orderDateLte?: string;
|
|
30566
|
+
/**
|
|
30567
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
30568
|
+
*/
|
|
30569
|
+
endUserIdentityId?: string;
|
|
30397
30570
|
/**
|
|
30398
30571
|
* Gets or sets the page number for paged queries.
|
|
30399
30572
|
*/
|
|
@@ -30572,7 +30745,7 @@ declare class PublicOrdersService {
|
|
|
30572
30745
|
* @returns boolean OK
|
|
30573
30746
|
* @throws ApiError
|
|
30574
30747
|
*/
|
|
30575
|
-
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, }: {
|
|
30576
30749
|
/**
|
|
30577
30750
|
* The tenants subdomain.
|
|
30578
30751
|
*/
|
|
@@ -30645,6 +30818,10 @@ declare class PublicOrdersService {
|
|
|
30645
30818
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
30646
30819
|
*/
|
|
30647
30820
|
orderDateLte?: string;
|
|
30821
|
+
/**
|
|
30822
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
30823
|
+
*/
|
|
30824
|
+
endUserIdentityId?: string;
|
|
30648
30825
|
/**
|
|
30649
30826
|
* Gets or sets the page number for paged queries.
|
|
30650
30827
|
*/
|
|
@@ -31769,7 +31946,7 @@ declare class PublicScheduledSessionsService {
|
|
|
31769
31946
|
* @returns ScheduledSessionPage OK
|
|
31770
31947
|
* @throws ApiError
|
|
31771
31948
|
*/
|
|
31772
|
-
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, }: {
|
|
31773
31950
|
xTenantSubdomain?: string;
|
|
31774
31951
|
/**
|
|
31775
31952
|
* Gets or sets the queryable scheduled session ids.
|
|
@@ -31835,6 +32012,10 @@ declare class PublicScheduledSessionsService {
|
|
|
31835
32012
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
31836
32013
|
*/
|
|
31837
32014
|
futureOnly?: boolean;
|
|
32015
|
+
/**
|
|
32016
|
+
* Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
32017
|
+
*/
|
|
32018
|
+
bookableOnly?: boolean;
|
|
31838
32019
|
/**
|
|
31839
32020
|
* Gets or sets a value indicating whether to include image detail in the results.
|
|
31840
32021
|
*/
|
|
@@ -31981,7 +32162,7 @@ declare class PublicScheduledSessionsService {
|
|
|
31981
32162
|
* @returns boolean OK
|
|
31982
32163
|
* @throws ApiError
|
|
31983
32164
|
*/
|
|
31984
|
-
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, }: {
|
|
31985
32166
|
/**
|
|
31986
32167
|
* The tenants subdomain.
|
|
31987
32168
|
*/
|
|
@@ -32050,6 +32231,10 @@ declare class PublicScheduledSessionsService {
|
|
|
32050
32231
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
32051
32232
|
*/
|
|
32052
32233
|
futureOnly?: boolean;
|
|
32234
|
+
/**
|
|
32235
|
+
* Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
32236
|
+
*/
|
|
32237
|
+
bookableOnly?: boolean;
|
|
32053
32238
|
/**
|
|
32054
32239
|
* Gets or sets a value indicating whether to include image detail in the results.
|
|
32055
32240
|
*/
|
|
@@ -32319,7 +32504,7 @@ declare class PublicSessionsService {
|
|
|
32319
32504
|
* @returns SessionPage OK
|
|
32320
32505
|
* @throws ApiError
|
|
32321
32506
|
*/
|
|
32322
|
-
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, }: {
|
|
32323
32508
|
xTenantSubdomain?: string;
|
|
32324
32509
|
/**
|
|
32325
32510
|
* Gets or sets the queryable session ids.
|
|
@@ -32349,6 +32534,10 @@ declare class PublicSessionsService {
|
|
|
32349
32534
|
* Gets or sets a value indicating whether return online sessions.
|
|
32350
32535
|
*/
|
|
32351
32536
|
online?: boolean;
|
|
32537
|
+
/**
|
|
32538
|
+
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
32539
|
+
*/
|
|
32540
|
+
featured?: boolean;
|
|
32352
32541
|
/**
|
|
32353
32542
|
* Gets or sets the queryable Programme Id.
|
|
32354
32543
|
*/
|
|
@@ -32521,7 +32710,7 @@ declare class PublicSessionsService {
|
|
|
32521
32710
|
* @returns any OK
|
|
32522
32711
|
* @throws ApiError
|
|
32523
32712
|
*/
|
|
32524
|
-
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, }: {
|
|
32525
32714
|
/**
|
|
32526
32715
|
* The tenants subdomain.
|
|
32527
32716
|
*/
|
|
@@ -32590,6 +32779,10 @@ declare class PublicSessionsService {
|
|
|
32590
32779
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
32591
32780
|
*/
|
|
32592
32781
|
futureOnly?: boolean;
|
|
32782
|
+
/**
|
|
32783
|
+
* Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
32784
|
+
*/
|
|
32785
|
+
bookableOnly?: boolean;
|
|
32593
32786
|
/**
|
|
32594
32787
|
* Gets or sets a value indicating whether to include image detail in the results.
|
|
32595
32788
|
*/
|
|
@@ -32721,7 +32914,7 @@ declare class PublicSessionsService {
|
|
|
32721
32914
|
* @returns boolean OK
|
|
32722
32915
|
* @throws ApiError
|
|
32723
32916
|
*/
|
|
32724
|
-
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, }: {
|
|
32725
32918
|
/**
|
|
32726
32919
|
* The tenants subdomain.
|
|
32727
32920
|
*/
|
|
@@ -32754,6 +32947,10 @@ declare class PublicSessionsService {
|
|
|
32754
32947
|
* Gets or sets a value indicating whether return online sessions.
|
|
32755
32948
|
*/
|
|
32756
32949
|
online?: boolean;
|
|
32950
|
+
/**
|
|
32951
|
+
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
32952
|
+
*/
|
|
32953
|
+
featured?: boolean;
|
|
32757
32954
|
/**
|
|
32758
32955
|
* Gets or sets the queryable Programme Id.
|
|
32759
32956
|
*/
|
|
@@ -38078,7 +38275,7 @@ declare class ScheduledSessionsService {
|
|
|
38078
38275
|
* @returns ScheduledSessionPage OK
|
|
38079
38276
|
* @throws ApiError
|
|
38080
38277
|
*/
|
|
38081
|
-
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, }: {
|
|
38082
38279
|
/**
|
|
38083
38280
|
* Gets or sets the queryable scheduled session ids.
|
|
38084
38281
|
*/
|
|
@@ -38143,6 +38340,10 @@ declare class ScheduledSessionsService {
|
|
|
38143
38340
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
38144
38341
|
*/
|
|
38145
38342
|
futureOnly?: boolean;
|
|
38343
|
+
/**
|
|
38344
|
+
* Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
38345
|
+
*/
|
|
38346
|
+
bookableOnly?: boolean;
|
|
38146
38347
|
/**
|
|
38147
38348
|
* Gets or sets a value indicating whether to include image detail in the results.
|
|
38148
38349
|
*/
|
|
@@ -38262,7 +38463,7 @@ declare class ScheduledSessionsService {
|
|
|
38262
38463
|
* @returns boolean OK
|
|
38263
38464
|
* @throws ApiError
|
|
38264
38465
|
*/
|
|
38265
|
-
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, }: {
|
|
38266
38467
|
/**
|
|
38267
38468
|
* Gets or sets the queryable scheduled session ids.
|
|
38268
38469
|
*/
|
|
@@ -38327,6 +38528,10 @@ declare class ScheduledSessionsService {
|
|
|
38327
38528
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
38328
38529
|
*/
|
|
38329
38530
|
futureOnly?: boolean;
|
|
38531
|
+
/**
|
|
38532
|
+
* Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
38533
|
+
*/
|
|
38534
|
+
bookableOnly?: boolean;
|
|
38330
38535
|
/**
|
|
38331
38536
|
* Gets or sets a value indicating whether to include image detail in the results.
|
|
38332
38537
|
*/
|
|
@@ -38413,7 +38618,7 @@ declare class ScheduledSessionsService {
|
|
|
38413
38618
|
* @returns ScheduledSession OK
|
|
38414
38619
|
* @throws ApiError
|
|
38415
38620
|
*/
|
|
38416
|
-
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, }: {
|
|
38417
38622
|
/**
|
|
38418
38623
|
* Gets or sets the queryable scheduled session ids.
|
|
38419
38624
|
*/
|
|
@@ -38478,6 +38683,10 @@ declare class ScheduledSessionsService {
|
|
|
38478
38683
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
38479
38684
|
*/
|
|
38480
38685
|
futureOnly?: boolean;
|
|
38686
|
+
/**
|
|
38687
|
+
* Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
38688
|
+
*/
|
|
38689
|
+
bookableOnly?: boolean;
|
|
38481
38690
|
/**
|
|
38482
38691
|
* Gets or sets a value indicating whether to include image detail in the results.
|
|
38483
38692
|
*/
|
|
@@ -38564,7 +38773,7 @@ declare class ScheduledSessionsService {
|
|
|
38564
38773
|
* @returns ScheduledSession OK
|
|
38565
38774
|
* @throws ApiError
|
|
38566
38775
|
*/
|
|
38567
|
-
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, }: {
|
|
38568
38777
|
/**
|
|
38569
38778
|
* Gets or sets the queryable scheduled session ids.
|
|
38570
38779
|
*/
|
|
@@ -38629,6 +38838,10 @@ declare class ScheduledSessionsService {
|
|
|
38629
38838
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
38630
38839
|
*/
|
|
38631
38840
|
futureOnly?: boolean;
|
|
38841
|
+
/**
|
|
38842
|
+
* Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
38843
|
+
*/
|
|
38844
|
+
bookableOnly?: boolean;
|
|
38632
38845
|
/**
|
|
38633
38846
|
* Gets or sets a value indicating whether to include image detail in the results.
|
|
38634
38847
|
*/
|
|
@@ -38863,7 +39076,7 @@ declare class ScheduledSessionsSchedulesService {
|
|
|
38863
39076
|
* @returns ScheduledSessionSchedulePage OK
|
|
38864
39077
|
* @throws ApiError
|
|
38865
39078
|
*/
|
|
38866
|
-
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, }: {
|
|
38867
39080
|
/**
|
|
38868
39081
|
* Gets or sets the queryable session id.
|
|
38869
39082
|
*/
|
|
@@ -38884,6 +39097,10 @@ declare class ScheduledSessionsSchedulesService {
|
|
|
38884
39097
|
* Gets or sets the queryable schedule statuses.
|
|
38885
39098
|
*/
|
|
38886
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;
|
|
38887
39104
|
/**
|
|
38888
39105
|
* Gets or sets the page number for paged queries.
|
|
38889
39106
|
*/
|
|
@@ -38967,7 +39184,7 @@ declare class ScheduledSessionsSchedulesService {
|
|
|
38967
39184
|
* @returns boolean OK
|
|
38968
39185
|
* @throws ApiError
|
|
38969
39186
|
*/
|
|
38970
|
-
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, }: {
|
|
38971
39188
|
/**
|
|
38972
39189
|
* Gets or sets the queryable session id.
|
|
38973
39190
|
*/
|
|
@@ -38988,6 +39205,10 @@ declare class ScheduledSessionsSchedulesService {
|
|
|
38988
39205
|
* Gets or sets the queryable schedule statuses.
|
|
38989
39206
|
*/
|
|
38990
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;
|
|
38991
39212
|
/**
|
|
38992
39213
|
* Gets or sets the page number for paged queries.
|
|
38993
39214
|
*/
|
|
@@ -39038,7 +39259,7 @@ declare class ScheduledSessionsSchedulesService {
|
|
|
39038
39259
|
* @returns ScheduledSessionSchedule OK
|
|
39039
39260
|
* @throws ApiError
|
|
39040
39261
|
*/
|
|
39041
|
-
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, }: {
|
|
39042
39263
|
/**
|
|
39043
39264
|
* Gets or sets the queryable session id.
|
|
39044
39265
|
*/
|
|
@@ -39059,6 +39280,10 @@ declare class ScheduledSessionsSchedulesService {
|
|
|
39059
39280
|
* Gets or sets the queryable schedule statuses.
|
|
39060
39281
|
*/
|
|
39061
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;
|
|
39062
39287
|
/**
|
|
39063
39288
|
* Gets or sets the page number for paged queries.
|
|
39064
39289
|
*/
|
|
@@ -39109,7 +39334,7 @@ declare class ScheduledSessionsSchedulesService {
|
|
|
39109
39334
|
* @returns ScheduledSessionSchedule OK
|
|
39110
39335
|
* @throws ApiError
|
|
39111
39336
|
*/
|
|
39112
|
-
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, }: {
|
|
39113
39338
|
/**
|
|
39114
39339
|
* Gets or sets the queryable session id.
|
|
39115
39340
|
*/
|
|
@@ -39130,6 +39355,10 @@ declare class ScheduledSessionsSchedulesService {
|
|
|
39130
39355
|
* Gets or sets the queryable schedule statuses.
|
|
39131
39356
|
*/
|
|
39132
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;
|
|
39133
39362
|
/**
|
|
39134
39363
|
* Gets or sets the page number for paged queries.
|
|
39135
39364
|
*/
|
|
@@ -39492,7 +39721,7 @@ declare class SessionsService {
|
|
|
39492
39721
|
* @returns SessionPage OK
|
|
39493
39722
|
* @throws ApiError
|
|
39494
39723
|
*/
|
|
39495
|
-
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, }: {
|
|
39496
39725
|
/**
|
|
39497
39726
|
* Gets or sets the queryable session ids.
|
|
39498
39727
|
*/
|
|
@@ -39521,6 +39750,10 @@ declare class SessionsService {
|
|
|
39521
39750
|
* Gets or sets a value indicating whether return online sessions.
|
|
39522
39751
|
*/
|
|
39523
39752
|
online?: boolean;
|
|
39753
|
+
/**
|
|
39754
|
+
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
39755
|
+
*/
|
|
39756
|
+
featured?: boolean;
|
|
39524
39757
|
/**
|
|
39525
39758
|
* Gets or sets the queryable Programme Id.
|
|
39526
39759
|
*/
|
|
@@ -39692,7 +39925,7 @@ declare class SessionsService {
|
|
|
39692
39925
|
* @returns boolean OK
|
|
39693
39926
|
* @throws ApiError
|
|
39694
39927
|
*/
|
|
39695
|
-
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, }: {
|
|
39696
39929
|
/**
|
|
39697
39930
|
* Gets or sets the queryable session ids.
|
|
39698
39931
|
*/
|
|
@@ -39721,6 +39954,10 @@ declare class SessionsService {
|
|
|
39721
39954
|
* Gets or sets a value indicating whether return online sessions.
|
|
39722
39955
|
*/
|
|
39723
39956
|
online?: boolean;
|
|
39957
|
+
/**
|
|
39958
|
+
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
39959
|
+
*/
|
|
39960
|
+
featured?: boolean;
|
|
39724
39961
|
/**
|
|
39725
39962
|
* Gets or sets the queryable Programme Id.
|
|
39726
39963
|
*/
|
|
@@ -39859,7 +40096,7 @@ declare class SessionsService {
|
|
|
39859
40096
|
* @returns Session OK
|
|
39860
40097
|
* @throws ApiError
|
|
39861
40098
|
*/
|
|
39862
|
-
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, }: {
|
|
39863
40100
|
/**
|
|
39864
40101
|
* Gets or sets the queryable session ids.
|
|
39865
40102
|
*/
|
|
@@ -39888,6 +40125,10 @@ declare class SessionsService {
|
|
|
39888
40125
|
* Gets or sets a value indicating whether return online sessions.
|
|
39889
40126
|
*/
|
|
39890
40127
|
online?: boolean;
|
|
40128
|
+
/**
|
|
40129
|
+
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
40130
|
+
*/
|
|
40131
|
+
featured?: boolean;
|
|
39891
40132
|
/**
|
|
39892
40133
|
* Gets or sets the queryable Programme Id.
|
|
39893
40134
|
*/
|
|
@@ -40026,7 +40267,7 @@ declare class SessionsService {
|
|
|
40026
40267
|
* @returns Session OK
|
|
40027
40268
|
* @throws ApiError
|
|
40028
40269
|
*/
|
|
40029
|
-
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, }: {
|
|
40030
40271
|
/**
|
|
40031
40272
|
* Gets or sets the queryable session ids.
|
|
40032
40273
|
*/
|
|
@@ -40055,6 +40296,10 @@ declare class SessionsService {
|
|
|
40055
40296
|
* Gets or sets a value indicating whether return online sessions.
|
|
40056
40297
|
*/
|
|
40057
40298
|
online?: boolean;
|
|
40299
|
+
/**
|
|
40300
|
+
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
40301
|
+
*/
|
|
40302
|
+
featured?: boolean;
|
|
40058
40303
|
/**
|
|
40059
40304
|
* Gets or sets the queryable Programme Id.
|
|
40060
40305
|
*/
|
|
@@ -55084,6 +55329,7 @@ declare class ApiClient {
|
|
|
55084
55329
|
readonly providers: ProvidersService;
|
|
55085
55330
|
readonly providerTypes: ProviderTypesService;
|
|
55086
55331
|
readonly publicBooking: PublicBookingService;
|
|
55332
|
+
readonly publicCalendar: PublicCalendarService;
|
|
55087
55333
|
readonly publicCourses: PublicCoursesService;
|
|
55088
55334
|
readonly publicCustomers: PublicCustomersService;
|
|
55089
55335
|
readonly publicFacilities: PublicFacilitiesService;
|
|
@@ -55278,4 +55524,4 @@ type ValidationResultModel = {
|
|
|
55278
55524
|
readonly errors?: Array<ValidationError> | null;
|
|
55279
55525
|
};
|
|
55280
55526
|
|
|
55281
|
-
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateTemplateFieldPermission, CreateVenue, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EndUserIdentity, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, EventTiming, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FieldPermission, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationReportSummary, LocationsReportService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderApplyDiscountCode, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProviderType, ProviderTypesService, ProvidersService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ResolveSecureAccessTokenRequest, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|
|
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 };
|