reach-api-sdk 1.0.191 → 1.0.193

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.
Files changed (32) hide show
  1. package/dist/reach-sdk.d.ts +515 -73
  2. package/dist/reach-sdk.js +298 -5
  3. package/package.json +1 -1
  4. package/src/apiClient.ts +3 -0
  5. package/src/definition/swagger.yaml +806 -6
  6. package/src/index.ts +2 -0
  7. package/src/models/Course.ts +8 -0
  8. package/src/models/GenericActivity.ts +4 -0
  9. package/src/models/Session.ts +8 -0
  10. package/src/models/TenantWebsiteSetting.ts +3 -0
  11. package/src/models/UpcomingLayout.ts +12 -0
  12. package/src/services/BookingService.ts +36 -0
  13. package/src/services/CoursesService.ts +104 -2
  14. package/src/services/GenericActivityService.ts +30 -0
  15. package/src/services/LeasingService.ts +24 -0
  16. package/src/services/OrderItemsService.ts +48 -0
  17. package/src/services/OrdersService.ts +24 -0
  18. package/src/services/PublicBookingService.ts +12 -0
  19. package/src/services/PublicCalendarService.ts +57 -0
  20. package/src/services/PublicCoursesService.ts +24 -0
  21. package/src/services/PublicGenericActivityService.ts +24 -0
  22. package/src/services/PublicLeasingService.ts +12 -0
  23. package/src/services/PublicNetworksService.ts +12 -0
  24. package/src/services/PublicOrderItemsService.ts +24 -0
  25. package/src/services/PublicOrdersService.ts +12 -0
  26. package/src/services/PublicScheduledSessionsService.ts +12 -0
  27. package/src/services/PublicSessionsService.ts +30 -0
  28. package/src/services/PublicVenuesService.ts +18 -0
  29. package/src/services/ScheduledSessionsSchedulesService.ts +24 -0
  30. package/src/services/ScheduledSessionsService.ts +24 -0
  31. package/src/services/SessionsService.ts +106 -4
  32. package/src/services/VenuesService.ts +24 -0
@@ -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
  /**
@@ -3837,6 +3846,10 @@ type Session = {
3837
3846
  * Gets or sets the admin contact email.
3838
3847
  */
3839
3848
  adminContactEmail?: string | null;
3849
+ /**
3850
+ * Gets or sets a valu indicating whether to send the reminder email.
3851
+ */
3852
+ sendReminder?: boolean | null;
3840
3853
  /**
3841
3854
  * Gets or sets the reminder hours before start.
3842
3855
  */
@@ -3846,6 +3859,10 @@ type Session = {
3846
3859
  * Gets or sets the booking link override if checkout will occur externally.
3847
3860
  */
3848
3861
  bookingLinkOverride?: string | null;
3862
+ /**
3863
+ * Gets or sets a value indicating whether the activity should be featured on the storefront.
3864
+ */
3865
+ featured?: boolean;
3849
3866
  /**
3850
3867
  * Gets the computed image url.
3851
3868
  */
@@ -5021,6 +5038,10 @@ type Course = {
5021
5038
  * Gets or sets the admin contact email.
5022
5039
  */
5023
5040
  adminContactEmail?: string | null;
5041
+ /**
5042
+ * Gets or sets a valu indicating whether to send the reminder email.
5043
+ */
5044
+ sendReminder?: boolean | null;
5024
5045
  /**
5025
5046
  * Gets or sets the reminder hours before start.
5026
5047
  */
@@ -5030,6 +5051,10 @@ type Course = {
5030
5051
  * Gets or sets the booking link override if checkout will occur externally.
5031
5052
  */
5032
5053
  bookingLinkOverride?: string | null;
5054
+ /**
5055
+ * Gets or sets a value indicating whether the activity should be featured on the storefront.
5056
+ */
5057
+ featured?: boolean;
5033
5058
  /**
5034
5059
  * Gets the computed image url.
5035
5060
  */
@@ -5917,7 +5942,7 @@ declare class BookingService {
5917
5942
  * @returns any OK
5918
5943
  * @throws ApiError
5919
5944
  */
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, }: {
5945
+ 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
5946
  /**
5922
5947
  * Gets or sets the queryable User Id.
5923
5948
  */
@@ -5990,6 +6015,10 @@ declare class BookingService {
5990
6015
  * Gets or sets the queryable order date created is less than or equal to.
5991
6016
  */
5992
6017
  orderDateLte?: string;
6018
+ /**
6019
+ * Gets or sets the end user identity Id for use in a query search.
6020
+ */
6021
+ endUserIdentityId?: string;
5993
6022
  /**
5994
6023
  * Gets or sets the page number for paged queries.
5995
6024
  */
@@ -6047,7 +6076,7 @@ declare class BookingService {
6047
6076
  * @returns any OK
6048
6077
  * @throws ApiError
6049
6078
  */
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, }: {
6079
+ 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
6080
  /**
6052
6081
  * Gets or sets the queryable User Id.
6053
6082
  */
@@ -6120,6 +6149,10 @@ declare class BookingService {
6120
6149
  * Gets or sets the queryable order date created is less than or equal to.
6121
6150
  */
6122
6151
  orderDateLte?: string;
6152
+ /**
6153
+ * Gets or sets the end user identity Id for use in a query search.
6154
+ */
6155
+ endUserIdentityId?: string;
6123
6156
  /**
6124
6157
  * Gets or sets the page number for paged queries.
6125
6158
  */
@@ -6231,7 +6264,7 @@ declare class BookingService {
6231
6264
  * @returns OrderPage OK
6232
6265
  * @throws ApiError
6233
6266
  */
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, }: {
6267
+ 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
6268
  /**
6236
6269
  * Gets or sets the queryable User Id.
6237
6270
  */
@@ -6304,6 +6337,10 @@ declare class BookingService {
6304
6337
  * Gets or sets the queryable order date created is less than or equal to.
6305
6338
  */
6306
6339
  orderDateLte?: string;
6340
+ /**
6341
+ * Gets or sets the end user identity Id for use in a query search.
6342
+ */
6343
+ endUserIdentityId?: string;
6307
6344
  /**
6308
6345
  * Gets or sets the page number for paged queries.
6309
6346
  */
@@ -6387,7 +6424,7 @@ declare class BookingService {
6387
6424
  * @returns boolean OK
6388
6425
  * @throws ApiError
6389
6426
  */
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, }: {
6427
+ 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
6428
  /**
6392
6429
  * Gets or sets the queryable User Id.
6393
6430
  */
@@ -6460,6 +6497,10 @@ declare class BookingService {
6460
6497
  * Gets or sets the queryable order date created is less than or equal to.
6461
6498
  */
6462
6499
  orderDateLte?: string;
6500
+ /**
6501
+ * Gets or sets the end user identity Id for use in a query search.
6502
+ */
6503
+ endUserIdentityId?: string;
6463
6504
  /**
6464
6505
  * Gets or sets the page number for paged queries.
6465
6506
  */
@@ -6510,7 +6551,7 @@ declare class BookingService {
6510
6551
  * @returns Order OK
6511
6552
  * @throws ApiError
6512
6553
  */
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, }: {
6554
+ 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
6555
  /**
6515
6556
  * Gets or sets the queryable User Id.
6516
6557
  */
@@ -6583,6 +6624,10 @@ declare class BookingService {
6583
6624
  * Gets or sets the queryable order date created is less than or equal to.
6584
6625
  */
6585
6626
  orderDateLte?: string;
6627
+ /**
6628
+ * Gets or sets the end user identity Id for use in a query search.
6629
+ */
6630
+ endUserIdentityId?: string;
6586
6631
  /**
6587
6632
  * Gets or sets the page number for paged queries.
6588
6633
  */
@@ -6633,7 +6678,7 @@ declare class BookingService {
6633
6678
  * @returns Order OK
6634
6679
  * @throws ApiError
6635
6680
  */
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, }: {
6681
+ 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
6682
  /**
6638
6683
  * Gets or sets the queryable User Id.
6639
6684
  */
@@ -6706,6 +6751,10 @@ declare class BookingService {
6706
6751
  * Gets or sets the queryable order date created is less than or equal to.
6707
6752
  */
6708
6753
  orderDateLte?: string;
6754
+ /**
6755
+ * Gets or sets the end user identity Id for use in a query search.
6756
+ */
6757
+ endUserIdentityId?: string;
6709
6758
  /**
6710
6759
  * Gets or sets the page number for paged queries.
6711
6760
  */
@@ -7987,7 +8036,7 @@ declare class CoursesService {
7987
8036
  */
7988
8037
  batchSendPostActivityCompletionsEmails(): CancelablePromise<any>;
7989
8038
  /**
7990
- * Asign deal to course />.
8039
+ * Assign deal to course />.
7991
8040
  * @returns Course OK
7992
8041
  * @throws ApiError
7993
8042
  */
@@ -8002,7 +8051,7 @@ declare class CoursesService {
8002
8051
  dealId: string;
8003
8052
  }): CancelablePromise<Course>;
8004
8053
  /**
8005
- * Unasign deal from course />.
8054
+ * Unassign deal from course />.
8006
8055
  * @returns Course OK
8007
8056
  * @throws ApiError
8008
8057
  */
@@ -8016,6 +8065,28 @@ declare class CoursesService {
8016
8065
  */
8017
8066
  dealId: string;
8018
8067
  }): CancelablePromise<Course>;
8068
+ /**
8069
+ * Set the course as featured (displays more prominently on the storefront).
8070
+ * @returns Course OK
8071
+ * @throws ApiError
8072
+ */
8073
+ setFeatured({ id, }: {
8074
+ /**
8075
+ * The course Id.
8076
+ */
8077
+ id: string;
8078
+ }): CancelablePromise<Course>;
8079
+ /**
8080
+ * Remove the course as featured (displays as standard on the storefront).
8081
+ * @returns Course OK
8082
+ * @throws ApiError
8083
+ */
8084
+ removeFeatured({ id, }: {
8085
+ /**
8086
+ * The course Id.
8087
+ */
8088
+ id: string;
8089
+ }): CancelablePromise<Course>;
8019
8090
  /**
8020
8091
  * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
8021
8092
  * @returns Course OK
@@ -8076,7 +8147,7 @@ declare class CoursesService {
8076
8147
  * @returns CoursePage OK
8077
8148
  * @throws ApiError
8078
8149
  */
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, }: {
8150
+ getPage({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, 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
8151
  /**
8081
8152
  * Gets or sets the queryable Course Id.
8082
8153
  */
@@ -8121,6 +8192,10 @@ declare class CoursesService {
8121
8192
  * Gets or sets a value indicating this an openactive reaquest.
8122
8193
  */
8123
8194
  openActiveUpdate?: boolean;
8195
+ /**
8196
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
8197
+ */
8198
+ dashboardRequest?: boolean;
8124
8199
  /**
8125
8200
  * Gets or sets the queryable booking status.
8126
8201
  */
@@ -8157,6 +8232,10 @@ declare class CoursesService {
8157
8232
  * Gets or sets a value indicating whether return online courses.
8158
8233
  */
8159
8234
  online?: boolean;
8235
+ /**
8236
+ * Gets or sets a value indicating whether the course is featured on the storefront.
8237
+ */
8238
+ featured?: boolean;
8160
8239
  /**
8161
8240
  * Gets or sets a value indicating whether the scheduled session has availability.
8162
8241
  */
@@ -8276,7 +8355,7 @@ declare class CoursesService {
8276
8355
  * @returns boolean OK
8277
8356
  * @throws ApiError
8278
8357
  */
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, }: {
8358
+ exists({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, 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
8359
  /**
8281
8360
  * Gets or sets the queryable Course Id.
8282
8361
  */
@@ -8321,6 +8400,10 @@ declare class CoursesService {
8321
8400
  * Gets or sets a value indicating this an openactive reaquest.
8322
8401
  */
8323
8402
  openActiveUpdate?: boolean;
8403
+ /**
8404
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
8405
+ */
8406
+ dashboardRequest?: boolean;
8324
8407
  /**
8325
8408
  * Gets or sets the queryable booking status.
8326
8409
  */
@@ -8357,6 +8440,10 @@ declare class CoursesService {
8357
8440
  * Gets or sets a value indicating whether return online courses.
8358
8441
  */
8359
8442
  online?: boolean;
8443
+ /**
8444
+ * Gets or sets a value indicating whether the course is featured on the storefront.
8445
+ */
8446
+ featured?: boolean;
8360
8447
  /**
8361
8448
  * Gets or sets a value indicating whether the scheduled session has availability.
8362
8449
  */
@@ -8443,7 +8530,7 @@ declare class CoursesService {
8443
8530
  * @returns Course OK
8444
8531
  * @throws ApiError
8445
8532
  */
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, }: {
8533
+ getListWithoutReferences({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, 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
8534
  /**
8448
8535
  * Gets or sets the queryable Course Id.
8449
8536
  */
@@ -8488,6 +8575,10 @@ declare class CoursesService {
8488
8575
  * Gets or sets a value indicating this an openactive reaquest.
8489
8576
  */
8490
8577
  openActiveUpdate?: boolean;
8578
+ /**
8579
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
8580
+ */
8581
+ dashboardRequest?: boolean;
8491
8582
  /**
8492
8583
  * Gets or sets the queryable booking status.
8493
8584
  */
@@ -8524,6 +8615,10 @@ declare class CoursesService {
8524
8615
  * Gets or sets a value indicating whether return online courses.
8525
8616
  */
8526
8617
  online?: boolean;
8618
+ /**
8619
+ * Gets or sets a value indicating whether the course is featured on the storefront.
8620
+ */
8621
+ featured?: boolean;
8527
8622
  /**
8528
8623
  * Gets or sets a value indicating whether the scheduled session has availability.
8529
8624
  */
@@ -8610,7 +8705,7 @@ declare class CoursesService {
8610
8705
  * @returns Course OK
8611
8706
  * @throws ApiError
8612
8707
  */
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, }: {
8708
+ getListIdName({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, 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
8709
  /**
8615
8710
  * Gets or sets the queryable Course Id.
8616
8711
  */
@@ -8655,6 +8750,10 @@ declare class CoursesService {
8655
8750
  * Gets or sets a value indicating this an openactive reaquest.
8656
8751
  */
8657
8752
  openActiveUpdate?: boolean;
8753
+ /**
8754
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
8755
+ */
8756
+ dashboardRequest?: boolean;
8658
8757
  /**
8659
8758
  * Gets or sets the queryable booking status.
8660
8759
  */
@@ -8691,6 +8790,10 @@ declare class CoursesService {
8691
8790
  * Gets or sets a value indicating whether return online courses.
8692
8791
  */
8693
8792
  online?: boolean;
8793
+ /**
8794
+ * Gets or sets a value indicating whether the course is featured on the storefront.
8795
+ */
8796
+ featured?: boolean;
8694
8797
  /**
8695
8798
  * Gets or sets a value indicating whether the scheduled session has availability.
8696
8799
  */
@@ -14222,6 +14325,10 @@ type GenericActivity = {
14222
14325
  * Gets or sets a value indicating whether there is an age restriction.
14223
14326
  */
14224
14327
  noAgeRestriction?: boolean;
14328
+ /**
14329
+ * Gets or sets a value indicating whether the activity should be featured on the storefront.
14330
+ */
14331
+ featured?: boolean;
14225
14332
  /**
14226
14333
  * Gets or sets the start date.
14227
14334
  */
@@ -14340,7 +14447,7 @@ declare class GenericActivityService {
14340
14447
  * @returns GenericActivity OK
14341
14448
  * @throws ApiError
14342
14449
  */
14343
- getUpcoming({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14450
+ getUpcoming({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14344
14451
  /**
14345
14452
  * Gets or sets the wildcard for use in a query search.
14346
14453
  */
@@ -14377,6 +14484,10 @@ declare class GenericActivityService {
14377
14484
  * Gets or sets a value indicating whether to inlcude the activities next availability.
14378
14485
  */
14379
14486
  includeNextOpportunity?: boolean;
14487
+ /**
14488
+ * Gets or sets a value indicating whether to filter on whether the activity is featured.
14489
+ */
14490
+ featured?: boolean;
14380
14491
  /**
14381
14492
  * Gets or sets SearchGeoCenter.
14382
14493
  */
@@ -14522,7 +14633,7 @@ declare class GenericActivityService {
14522
14633
  * @returns boolean OK
14523
14634
  * @throws ApiError
14524
14635
  */
14525
- exists({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14636
+ exists({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14526
14637
  /**
14527
14638
  * Gets or sets the wildcard for use in a query search.
14528
14639
  */
@@ -14559,6 +14670,10 @@ declare class GenericActivityService {
14559
14670
  * Gets or sets a value indicating whether to inlcude the activities next availability.
14560
14671
  */
14561
14672
  includeNextOpportunity?: boolean;
14673
+ /**
14674
+ * Gets or sets a value indicating whether to filter on whether the activity is featured.
14675
+ */
14676
+ featured?: boolean;
14562
14677
  /**
14563
14678
  * Gets or sets SearchGeoCenter.
14564
14679
  */
@@ -14693,7 +14808,7 @@ declare class GenericActivityService {
14693
14808
  * @returns GenericActivityPage OK
14694
14809
  * @throws ApiError
14695
14810
  */
14696
- getPage({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14811
+ getPage({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14697
14812
  /**
14698
14813
  * Gets or sets the wildcard for use in a query search.
14699
14814
  */
@@ -14730,6 +14845,10 @@ declare class GenericActivityService {
14730
14845
  * Gets or sets a value indicating whether to inlcude the activities next availability.
14731
14846
  */
14732
14847
  includeNextOpportunity?: boolean;
14848
+ /**
14849
+ * Gets or sets a value indicating whether to filter on whether the activity is featured.
14850
+ */
14851
+ featured?: boolean;
14733
14852
  /**
14734
14853
  * Gets or sets SearchGeoCenter.
14735
14854
  */
@@ -14864,7 +14983,7 @@ declare class GenericActivityService {
14864
14983
  * @returns GenericActivity OK
14865
14984
  * @throws ApiError
14866
14985
  */
14867
- getListWithoutReferences({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14986
+ getListWithoutReferences({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14868
14987
  /**
14869
14988
  * Gets or sets the wildcard for use in a query search.
14870
14989
  */
@@ -14901,6 +15020,10 @@ declare class GenericActivityService {
14901
15020
  * Gets or sets a value indicating whether to inlcude the activities next availability.
14902
15021
  */
14903
15022
  includeNextOpportunity?: boolean;
15023
+ /**
15024
+ * Gets or sets a value indicating whether to filter on whether the activity is featured.
15025
+ */
15026
+ featured?: boolean;
14904
15027
  /**
14905
15028
  * Gets or sets SearchGeoCenter.
14906
15029
  */
@@ -15035,7 +15158,7 @@ declare class GenericActivityService {
15035
15158
  * @returns GenericActivity OK
15036
15159
  * @throws ApiError
15037
15160
  */
15038
- getListIdName({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
15161
+ getListIdName({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
15039
15162
  /**
15040
15163
  * Gets or sets the wildcard for use in a query search.
15041
15164
  */
@@ -15072,6 +15195,10 @@ declare class GenericActivityService {
15072
15195
  * Gets or sets a value indicating whether to inlcude the activities next availability.
15073
15196
  */
15074
15197
  includeNextOpportunity?: boolean;
15198
+ /**
15199
+ * Gets or sets a value indicating whether to filter on whether the activity is featured.
15200
+ */
15201
+ featured?: boolean;
15075
15202
  /**
15076
15203
  * Gets or sets SearchGeoCenter.
15077
15204
  */
@@ -16796,7 +16923,7 @@ declare class LeasingService {
16796
16923
  * @returns OrderPage OK
16797
16924
  * @throws ApiError
16798
16925
  */
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, }: {
16926
+ 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
16927
  /**
16801
16928
  * Gets or sets the wildcard for use in a query search.
16802
16929
  */
@@ -16865,6 +16992,10 @@ declare class LeasingService {
16865
16992
  * Gets or sets the queryable order date created is less than or equal to.
16866
16993
  */
16867
16994
  orderDateLte?: string;
16995
+ /**
16996
+ * Gets or sets the end user identity Id for use in a query search.
16997
+ */
16998
+ endUserIdentityId?: string;
16868
16999
  /**
16869
17000
  * Gets or sets the page number for paged queries.
16870
17001
  */
@@ -16948,7 +17079,7 @@ declare class LeasingService {
16948
17079
  * @returns boolean OK
16949
17080
  * @throws ApiError
16950
17081
  */
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, }: {
17082
+ 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
17083
  /**
16953
17084
  * Gets or sets the wildcard for use in a query search.
16954
17085
  */
@@ -17017,6 +17148,10 @@ declare class LeasingService {
17017
17148
  * Gets or sets the queryable order date created is less than or equal to.
17018
17149
  */
17019
17150
  orderDateLte?: string;
17151
+ /**
17152
+ * Gets or sets the end user identity Id for use in a query search.
17153
+ */
17154
+ endUserIdentityId?: string;
17020
17155
  /**
17021
17156
  * Gets or sets the page number for paged queries.
17022
17157
  */
@@ -17067,7 +17202,7 @@ declare class LeasingService {
17067
17202
  * @returns Order OK
17068
17203
  * @throws ApiError
17069
17204
  */
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, }: {
17205
+ 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
17206
  /**
17072
17207
  * Gets or sets the wildcard for use in a query search.
17073
17208
  */
@@ -17136,6 +17271,10 @@ declare class LeasingService {
17136
17271
  * Gets or sets the queryable order date created is less than or equal to.
17137
17272
  */
17138
17273
  orderDateLte?: string;
17274
+ /**
17275
+ * Gets or sets the end user identity Id for use in a query search.
17276
+ */
17277
+ endUserIdentityId?: string;
17139
17278
  /**
17140
17279
  * Gets or sets the page number for paged queries.
17141
17280
  */
@@ -17186,7 +17325,7 @@ declare class LeasingService {
17186
17325
  * @returns Order OK
17187
17326
  * @throws ApiError
17188
17327
  */
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, }: {
17328
+ 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
17329
  /**
17191
17330
  * Gets or sets the wildcard for use in a query search.
17192
17331
  */
@@ -17255,6 +17394,10 @@ declare class LeasingService {
17255
17394
  * Gets or sets the queryable order date created is less than or equal to.
17256
17395
  */
17257
17396
  orderDateLte?: string;
17397
+ /**
17398
+ * Gets or sets the end user identity Id for use in a query search.
17399
+ */
17400
+ endUserIdentityId?: string;
17258
17401
  /**
17259
17402
  * Gets or sets the page number for paged queries.
17260
17403
  */
@@ -22009,7 +22152,7 @@ declare class OrderItemsService {
22009
22152
  * @returns OrderItemPage OK
22010
22153
  * @throws ApiError
22011
22154
  */
22012
- getPage({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
22155
+ getPage({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
22013
22156
  /**
22014
22157
  * Gets or sets the queryable order item ids.
22015
22158
  */
@@ -22050,6 +22193,14 @@ declare class OrderItemsService {
22050
22193
  * Gets or sets the queryable event timing.
22051
22194
  */
22052
22195
  eventTiming?: EventTiming;
22196
+ /**
22197
+ * Gets or sets the end user identity Id for use in a query search.
22198
+ */
22199
+ endUserIdentityId?: string;
22200
+ /**
22201
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
22202
+ */
22203
+ dashboardRequest?: boolean;
22053
22204
  /**
22054
22205
  * Gets or sets the page number for paged queries.
22055
22206
  */
@@ -22133,7 +22284,7 @@ declare class OrderItemsService {
22133
22284
  * @returns boolean OK
22134
22285
  * @throws ApiError
22135
22286
  */
22136
- exists({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
22287
+ exists({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
22137
22288
  /**
22138
22289
  * Gets or sets the queryable order item ids.
22139
22290
  */
@@ -22174,6 +22325,14 @@ declare class OrderItemsService {
22174
22325
  * Gets or sets the queryable event timing.
22175
22326
  */
22176
22327
  eventTiming?: EventTiming;
22328
+ /**
22329
+ * Gets or sets the end user identity Id for use in a query search.
22330
+ */
22331
+ endUserIdentityId?: string;
22332
+ /**
22333
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
22334
+ */
22335
+ dashboardRequest?: boolean;
22177
22336
  /**
22178
22337
  * Gets or sets the page number for paged queries.
22179
22338
  */
@@ -22224,7 +22383,7 @@ declare class OrderItemsService {
22224
22383
  * @returns OrderItem OK
22225
22384
  * @throws ApiError
22226
22385
  */
22227
- getListWithoutReferences({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
22386
+ getListWithoutReferences({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
22228
22387
  /**
22229
22388
  * Gets or sets the queryable order item ids.
22230
22389
  */
@@ -22265,6 +22424,14 @@ declare class OrderItemsService {
22265
22424
  * Gets or sets the queryable event timing.
22266
22425
  */
22267
22426
  eventTiming?: EventTiming;
22427
+ /**
22428
+ * Gets or sets the end user identity Id for use in a query search.
22429
+ */
22430
+ endUserIdentityId?: string;
22431
+ /**
22432
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
22433
+ */
22434
+ dashboardRequest?: boolean;
22268
22435
  /**
22269
22436
  * Gets or sets the page number for paged queries.
22270
22437
  */
@@ -22315,7 +22482,7 @@ declare class OrderItemsService {
22315
22482
  * @returns OrderItem OK
22316
22483
  * @throws ApiError
22317
22484
  */
22318
- getListIdName({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
22485
+ getListIdName({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
22319
22486
  /**
22320
22487
  * Gets or sets the queryable order item ids.
22321
22488
  */
@@ -22356,6 +22523,14 @@ declare class OrderItemsService {
22356
22523
  * Gets or sets the queryable event timing.
22357
22524
  */
22358
22525
  eventTiming?: EventTiming;
22526
+ /**
22527
+ * Gets or sets the end user identity Id for use in a query search.
22528
+ */
22529
+ endUserIdentityId?: string;
22530
+ /**
22531
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
22532
+ */
22533
+ dashboardRequest?: boolean;
22359
22534
  /**
22360
22535
  * Gets or sets the page number for paged queries.
22361
22536
  */
@@ -22654,7 +22829,7 @@ declare class OrdersService {
22654
22829
  * @returns OrderPage OK
22655
22830
  * @throws ApiError
22656
22831
  */
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, }: {
22832
+ 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
22833
  /**
22659
22834
  * Gets or sets the wildcard for use in a query search.
22660
22835
  */
@@ -22723,6 +22898,10 @@ declare class OrdersService {
22723
22898
  * Gets or sets the queryable order date created is less than or equal to.
22724
22899
  */
22725
22900
  orderDateLte?: string;
22901
+ /**
22902
+ * Gets or sets the end user identity Id for use in a query search.
22903
+ */
22904
+ endUserIdentityId?: string;
22726
22905
  /**
22727
22906
  * Gets or sets the page number for paged queries.
22728
22907
  */
@@ -22806,7 +22985,7 @@ declare class OrdersService {
22806
22985
  * @returns boolean OK
22807
22986
  * @throws ApiError
22808
22987
  */
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, }: {
22988
+ 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
22989
  /**
22811
22990
  * Gets or sets the wildcard for use in a query search.
22812
22991
  */
@@ -22875,6 +23054,10 @@ declare class OrdersService {
22875
23054
  * Gets or sets the queryable order date created is less than or equal to.
22876
23055
  */
22877
23056
  orderDateLte?: string;
23057
+ /**
23058
+ * Gets or sets the end user identity Id for use in a query search.
23059
+ */
23060
+ endUserIdentityId?: string;
22878
23061
  /**
22879
23062
  * Gets or sets the page number for paged queries.
22880
23063
  */
@@ -22925,7 +23108,7 @@ declare class OrdersService {
22925
23108
  * @returns Order OK
22926
23109
  * @throws ApiError
22927
23110
  */
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, }: {
23111
+ 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
23112
  /**
22930
23113
  * Gets or sets the wildcard for use in a query search.
22931
23114
  */
@@ -22994,6 +23177,10 @@ declare class OrdersService {
22994
23177
  * Gets or sets the queryable order date created is less than or equal to.
22995
23178
  */
22996
23179
  orderDateLte?: string;
23180
+ /**
23181
+ * Gets or sets the end user identity Id for use in a query search.
23182
+ */
23183
+ endUserIdentityId?: string;
22997
23184
  /**
22998
23185
  * Gets or sets the page number for paged queries.
22999
23186
  */
@@ -23044,7 +23231,7 @@ declare class OrdersService {
23044
23231
  * @returns Order OK
23045
23232
  * @throws ApiError
23046
23233
  */
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, }: {
23234
+ 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
23235
  /**
23049
23236
  * Gets or sets the wildcard for use in a query search.
23050
23237
  */
@@ -23113,6 +23300,10 @@ declare class OrdersService {
23113
23300
  * Gets or sets the queryable order date created is less than or equal to.
23114
23301
  */
23115
23302
  orderDateLte?: string;
23303
+ /**
23304
+ * Gets or sets the end user identity Id for use in a query search.
23305
+ */
23306
+ endUserIdentityId?: string;
23116
23307
  /**
23117
23308
  * Gets or sets the page number for paged queries.
23118
23309
  */
@@ -27104,7 +27295,7 @@ declare class PublicBookingService {
27104
27295
  * @returns OrderPage OK
27105
27296
  * @throws ApiError
27106
27297
  */
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, }: {
27298
+ 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
27299
  /**
27109
27300
  * The tenants subdomain.
27110
27301
  */
@@ -27181,6 +27372,10 @@ declare class PublicBookingService {
27181
27372
  * Gets or sets the queryable order date created is less than or equal to.
27182
27373
  */
27183
27374
  orderDateLte?: string;
27375
+ /**
27376
+ * Gets or sets the end user identity Id for use in a query search.
27377
+ */
27378
+ endUserIdentityId?: string;
27184
27379
  /**
27185
27380
  * Gets or sets the page number for paged queries.
27186
27381
  */
@@ -27261,7 +27456,7 @@ declare class PublicBookingService {
27261
27456
  * @returns boolean OK
27262
27457
  * @throws ApiError
27263
27458
  */
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, }: {
27459
+ 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
27460
  /**
27266
27461
  * The tenants subdomain.
27267
27462
  */
@@ -27338,6 +27533,10 @@ declare class PublicBookingService {
27338
27533
  * Gets or sets the queryable order date created is less than or equal to.
27339
27534
  */
27340
27535
  orderDateLte?: string;
27536
+ /**
27537
+ * Gets or sets the end user identity Id for use in a query search.
27538
+ */
27539
+ endUserIdentityId?: string;
27341
27540
  /**
27342
27541
  * Gets or sets the page number for paged queries.
27343
27542
  */
@@ -27385,6 +27584,34 @@ declare class PublicBookingService {
27385
27584
  }): CancelablePromise<boolean>;
27386
27585
  }
27387
27586
 
27587
+ declare class PublicCalendarService {
27588
+ readonly httpRequest: BaseHttpRequest;
27589
+ constructor(httpRequest: BaseHttpRequest);
27590
+ /**
27591
+ * Gets calendar data.
27592
+ * @returns any OK
27593
+ * @throws ApiError
27594
+ */
27595
+ getCalendarView({ xTenantSubdomain, startDateTimeGte, venueId, programmeId, }: {
27596
+ /**
27597
+ * The tenants subdomain.
27598
+ */
27599
+ xTenantSubdomain?: string;
27600
+ /**
27601
+ * Gets or sets the queryable calendar item start date time is greater than or equal to.
27602
+ */
27603
+ startDateTimeGte?: string;
27604
+ /**
27605
+ * Gets or sets the venue Id for use in a query search.
27606
+ */
27607
+ venueId?: string;
27608
+ /**
27609
+ * Gets or sets the programme Id for use in a query search.
27610
+ */
27611
+ programmeId?: string;
27612
+ }): CancelablePromise<any>;
27613
+ }
27614
+
27388
27615
  declare class PublicCoursesService {
27389
27616
  readonly httpRequest: BaseHttpRequest;
27390
27617
  constructor(httpRequest: BaseHttpRequest);
@@ -27415,7 +27642,7 @@ declare class PublicCoursesService {
27415
27642
  * @returns CoursePage OK
27416
27643
  * @throws ApiError
27417
27644
  */
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, }: {
27645
+ getPage({ xTenantSubdomain, id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, 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
27646
  xTenantSubdomain?: string;
27420
27647
  /**
27421
27648
  * Gets or sets the queryable Course Id.
@@ -27461,6 +27688,10 @@ declare class PublicCoursesService {
27461
27688
  * Gets or sets a value indicating this an openactive reaquest.
27462
27689
  */
27463
27690
  openActiveUpdate?: boolean;
27691
+ /**
27692
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
27693
+ */
27694
+ dashboardRequest?: boolean;
27464
27695
  /**
27465
27696
  * Gets or sets the queryable booking status.
27466
27697
  */
@@ -27497,6 +27728,10 @@ declare class PublicCoursesService {
27497
27728
  * Gets or sets a value indicating whether return online courses.
27498
27729
  */
27499
27730
  online?: boolean;
27731
+ /**
27732
+ * Gets or sets a value indicating whether the course is featured on the storefront.
27733
+ */
27734
+ featured?: boolean;
27500
27735
  /**
27501
27736
  * Gets or sets a value indicating whether the scheduled session has availability.
27502
27737
  */
@@ -27643,7 +27878,7 @@ declare class PublicCoursesService {
27643
27878
  * @returns boolean OK
27644
27879
  * @throws ApiError
27645
27880
  */
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, }: {
27881
+ exists({ xTenantSubdomain, id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, 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
27882
  /**
27648
27883
  * The tenants subdomain.
27649
27884
  */
@@ -27692,6 +27927,10 @@ declare class PublicCoursesService {
27692
27927
  * Gets or sets a value indicating this an openactive reaquest.
27693
27928
  */
27694
27929
  openActiveUpdate?: boolean;
27930
+ /**
27931
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
27932
+ */
27933
+ dashboardRequest?: boolean;
27695
27934
  /**
27696
27935
  * Gets or sets the queryable booking status.
27697
27936
  */
@@ -27728,6 +27967,10 @@ declare class PublicCoursesService {
27728
27967
  * Gets or sets a value indicating whether return online courses.
27729
27968
  */
27730
27969
  online?: boolean;
27970
+ /**
27971
+ * Gets or sets a value indicating whether the course is featured on the storefront.
27972
+ */
27973
+ featured?: boolean;
27731
27974
  /**
27732
27975
  * Gets or sets a value indicating whether the scheduled session has availability.
27733
27976
  */
@@ -28369,7 +28612,7 @@ declare class PublicGenericActivityService {
28369
28612
  * @returns GenericActivityPage OK
28370
28613
  * @throws ApiError
28371
28614
  */
28372
- getPage({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
28615
+ getPage({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
28373
28616
  xTenantSubdomain?: string;
28374
28617
  /**
28375
28618
  * Gets or sets the wildcard for use in a query search.
@@ -28407,6 +28650,10 @@ declare class PublicGenericActivityService {
28407
28650
  * Gets or sets a value indicating whether to inlcude the activities next availability.
28408
28651
  */
28409
28652
  includeNextOpportunity?: boolean;
28653
+ /**
28654
+ * Gets or sets a value indicating whether to filter on whether the activity is featured.
28655
+ */
28656
+ featured?: boolean;
28410
28657
  /**
28411
28658
  * Gets or sets SearchGeoCenter.
28412
28659
  */
@@ -28541,7 +28788,7 @@ declare class PublicGenericActivityService {
28541
28788
  * @returns GenericActivityPage OK
28542
28789
  * @throws ApiError
28543
28790
  */
28544
- getPage1({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
28791
+ getPage1({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
28545
28792
  /**
28546
28793
  * Gets or sets the wildcard for use in a query search.
28547
28794
  */
@@ -28578,6 +28825,10 @@ declare class PublicGenericActivityService {
28578
28825
  * Gets or sets a value indicating whether to inlcude the activities next availability.
28579
28826
  */
28580
28827
  includeNextOpportunity?: boolean;
28828
+ /**
28829
+ * Gets or sets a value indicating whether to filter on whether the activity is featured.
28830
+ */
28831
+ featured?: boolean;
28581
28832
  /**
28582
28833
  * Gets or sets SearchGeoCenter.
28583
28834
  */
@@ -28712,7 +28963,7 @@ declare class PublicGenericActivityService {
28712
28963
  * @returns GenericActivity OK
28713
28964
  * @throws ApiError
28714
28965
  */
28715
- getUpcoming({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
28966
+ getUpcoming({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
28716
28967
  /**
28717
28968
  * The tenants subdomain.
28718
28969
  */
@@ -28753,6 +29004,10 @@ declare class PublicGenericActivityService {
28753
29004
  * Gets or sets a value indicating whether to inlcude the activities next availability.
28754
29005
  */
28755
29006
  includeNextOpportunity?: boolean;
29007
+ /**
29008
+ * Gets or sets a value indicating whether to filter on whether the activity is featured.
29009
+ */
29010
+ featured?: boolean;
28756
29011
  /**
28757
29012
  * Gets or sets SearchGeoCenter.
28758
29013
  */
@@ -28910,7 +29165,7 @@ declare class PublicGenericActivityService {
28910
29165
  * @returns boolean OK
28911
29166
  * @throws ApiError
28912
29167
  */
28913
- exists({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
29168
+ exists({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
28914
29169
  /**
28915
29170
  * The tenants subdomain.
28916
29171
  */
@@ -28951,6 +29206,10 @@ declare class PublicGenericActivityService {
28951
29206
  * Gets or sets a value indicating whether to inlcude the activities next availability.
28952
29207
  */
28953
29208
  includeNextOpportunity?: boolean;
29209
+ /**
29210
+ * Gets or sets a value indicating whether to filter on whether the activity is featured.
29211
+ */
29212
+ featured?: boolean;
28954
29213
  /**
28955
29214
  * Gets or sets SearchGeoCenter.
28956
29215
  */
@@ -29259,7 +29518,7 @@ declare class PublicLeasingService {
29259
29518
  * @returns OrderPage OK
29260
29519
  * @throws ApiError
29261
29520
  */
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, }: {
29521
+ 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
29522
  /**
29264
29523
  * The tenants subdomain.
29265
29524
  */
@@ -29332,6 +29591,10 @@ declare class PublicLeasingService {
29332
29591
  * Gets or sets the queryable order date created is less than or equal to.
29333
29592
  */
29334
29593
  orderDateLte?: string;
29594
+ /**
29595
+ * Gets or sets the end user identity Id for use in a query search.
29596
+ */
29597
+ endUserIdentityId?: string;
29335
29598
  /**
29336
29599
  * Gets or sets the page number for paged queries.
29337
29600
  */
@@ -29382,7 +29645,7 @@ declare class PublicLeasingService {
29382
29645
  * @returns boolean OK
29383
29646
  * @throws ApiError
29384
29647
  */
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, }: {
29648
+ 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
29649
  /**
29387
29650
  * The tenants subdomain.
29388
29651
  */
@@ -29455,6 +29718,10 @@ declare class PublicLeasingService {
29455
29718
  * Gets or sets the queryable order date created is less than or equal to.
29456
29719
  */
29457
29720
  orderDateLte?: string;
29721
+ /**
29722
+ * Gets or sets the end user identity Id for use in a query search.
29723
+ */
29724
+ endUserIdentityId?: string;
29458
29725
  /**
29459
29726
  * Gets or sets the page number for paged queries.
29460
29727
  */
@@ -29515,7 +29782,7 @@ declare class PublicNetworksService {
29515
29782
  * @returns SessionPage OK
29516
29783
  * @throws ApiError
29517
29784
  */
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, }: {
29785
+ getSessions({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, 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
29786
  /**
29520
29787
  * Gets or sets the queryable session ids.
29521
29788
  */
@@ -29544,6 +29811,10 @@ declare class PublicNetworksService {
29544
29811
  * Gets or sets a value indicating whether return online sessions.
29545
29812
  */
29546
29813
  online?: boolean;
29814
+ /**
29815
+ * Gets or sets a value indicating whether the session is featured on the storefront.
29816
+ */
29817
+ featured?: boolean;
29547
29818
  /**
29548
29819
  * Gets or sets the queryable Programme Id.
29549
29820
  */
@@ -29568,6 +29839,10 @@ declare class PublicNetworksService {
29568
29839
  * Gets or sets a value indicating this an openactive reaquest.
29569
29840
  */
29570
29841
  openActiveUpdate?: boolean;
29842
+ /**
29843
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
29844
+ */
29845
+ dashboardRequest?: boolean;
29571
29846
  /**
29572
29847
  * Gets or sets a value indicating whether to include only sessions by given NetworkId.
29573
29848
  */
@@ -30001,7 +30276,7 @@ declare class PublicOrderItemsService {
30001
30276
  * @returns OrderItemPage OK
30002
30277
  * @throws ApiError
30003
30278
  */
30004
- getPage({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
30279
+ getPage({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
30005
30280
  xTenantSubdomain?: string;
30006
30281
  /**
30007
30282
  * Gets or sets the queryable order item ids.
@@ -30043,6 +30318,14 @@ declare class PublicOrderItemsService {
30043
30318
  * Gets or sets the queryable event timing.
30044
30319
  */
30045
30320
  eventTiming?: EventTiming;
30321
+ /**
30322
+ * Gets or sets the end user identity Id for use in a query search.
30323
+ */
30324
+ endUserIdentityId?: string;
30325
+ /**
30326
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
30327
+ */
30328
+ dashboardRequest?: boolean;
30046
30329
  /**
30047
30330
  * Gets or sets the page number for paged queries.
30048
30331
  */
@@ -30202,7 +30485,7 @@ declare class PublicOrderItemsService {
30202
30485
  * @returns boolean OK
30203
30486
  * @throws ApiError
30204
30487
  */
30205
- exists({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
30488
+ exists({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
30206
30489
  /**
30207
30490
  * The tenants subdomain.
30208
30491
  */
@@ -30247,6 +30530,14 @@ declare class PublicOrderItemsService {
30247
30530
  * Gets or sets the queryable event timing.
30248
30531
  */
30249
30532
  eventTiming?: EventTiming;
30533
+ /**
30534
+ * Gets or sets the end user identity Id for use in a query search.
30535
+ */
30536
+ endUserIdentityId?: string;
30537
+ /**
30538
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
30539
+ */
30540
+ dashboardRequest?: boolean;
30250
30541
  /**
30251
30542
  * Gets or sets the page number for paged queries.
30252
30543
  */
@@ -30324,7 +30615,7 @@ declare class PublicOrdersService {
30324
30615
  * @returns OrderPage OK
30325
30616
  * @throws ApiError
30326
30617
  */
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, }: {
30618
+ 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
30619
  xTenantSubdomain?: string;
30329
30620
  /**
30330
30621
  * Gets or sets the wildcard for use in a query search.
@@ -30394,6 +30685,10 @@ declare class PublicOrdersService {
30394
30685
  * Gets or sets the queryable order date created is less than or equal to.
30395
30686
  */
30396
30687
  orderDateLte?: string;
30688
+ /**
30689
+ * Gets or sets the end user identity Id for use in a query search.
30690
+ */
30691
+ endUserIdentityId?: string;
30397
30692
  /**
30398
30693
  * Gets or sets the page number for paged queries.
30399
30694
  */
@@ -30572,7 +30867,7 @@ declare class PublicOrdersService {
30572
30867
  * @returns boolean OK
30573
30868
  * @throws ApiError
30574
30869
  */
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, }: {
30870
+ 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
30871
  /**
30577
30872
  * The tenants subdomain.
30578
30873
  */
@@ -30645,6 +30940,10 @@ declare class PublicOrdersService {
30645
30940
  * Gets or sets the queryable order date created is less than or equal to.
30646
30941
  */
30647
30942
  orderDateLte?: string;
30943
+ /**
30944
+ * Gets or sets the end user identity Id for use in a query search.
30945
+ */
30946
+ endUserIdentityId?: string;
30648
30947
  /**
30649
30948
  * Gets or sets the page number for paged queries.
30650
30949
  */
@@ -31769,7 +32068,7 @@ declare class PublicScheduledSessionsService {
31769
32068
  * @returns ScheduledSessionPage OK
31770
32069
  * @throws ApiError
31771
32070
  */
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, }: {
32071
+ 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
32072
  xTenantSubdomain?: string;
31774
32073
  /**
31775
32074
  * Gets or sets the queryable scheduled session ids.
@@ -31835,6 +32134,10 @@ declare class PublicScheduledSessionsService {
31835
32134
  * Gets or sets a value indicating whether to only return future scheduled session.
31836
32135
  */
31837
32136
  futureOnly?: boolean;
32137
+ /**
32138
+ * Gets or sets a value indicating whether to only return bookable scheduled sessions.
32139
+ */
32140
+ bookableOnly?: boolean;
31838
32141
  /**
31839
32142
  * Gets or sets a value indicating whether to include image detail in the results.
31840
32143
  */
@@ -31981,7 +32284,7 @@ declare class PublicScheduledSessionsService {
31981
32284
  * @returns boolean OK
31982
32285
  * @throws ApiError
31983
32286
  */
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, }: {
32287
+ 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
32288
  /**
31986
32289
  * The tenants subdomain.
31987
32290
  */
@@ -32050,6 +32353,10 @@ declare class PublicScheduledSessionsService {
32050
32353
  * Gets or sets a value indicating whether to only return future scheduled session.
32051
32354
  */
32052
32355
  futureOnly?: boolean;
32356
+ /**
32357
+ * Gets or sets a value indicating whether to only return bookable scheduled sessions.
32358
+ */
32359
+ bookableOnly?: boolean;
32053
32360
  /**
32054
32361
  * Gets or sets a value indicating whether to include image detail in the results.
32055
32362
  */
@@ -32319,7 +32626,7 @@ declare class PublicSessionsService {
32319
32626
  * @returns SessionPage OK
32320
32627
  * @throws ApiError
32321
32628
  */
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, }: {
32629
+ getPage({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, 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
32630
  xTenantSubdomain?: string;
32324
32631
  /**
32325
32632
  * Gets or sets the queryable session ids.
@@ -32349,6 +32656,10 @@ declare class PublicSessionsService {
32349
32656
  * Gets or sets a value indicating whether return online sessions.
32350
32657
  */
32351
32658
  online?: boolean;
32659
+ /**
32660
+ * Gets or sets a value indicating whether the session is featured on the storefront.
32661
+ */
32662
+ featured?: boolean;
32352
32663
  /**
32353
32664
  * Gets or sets the queryable Programme Id.
32354
32665
  */
@@ -32373,6 +32684,10 @@ declare class PublicSessionsService {
32373
32684
  * Gets or sets a value indicating this an openactive reaquest.
32374
32685
  */
32375
32686
  openActiveUpdate?: boolean;
32687
+ /**
32688
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
32689
+ */
32690
+ dashboardRequest?: boolean;
32376
32691
  /**
32377
32692
  * Gets or sets a value indicating whether to include only sessions by given NetworkId.
32378
32693
  */
@@ -32521,7 +32836,7 @@ declare class PublicSessionsService {
32521
32836
  * @returns any OK
32522
32837
  * @throws ApiError
32523
32838
  */
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, }: {
32839
+ 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
32840
  /**
32526
32841
  * The tenants subdomain.
32527
32842
  */
@@ -32590,6 +32905,10 @@ declare class PublicSessionsService {
32590
32905
  * Gets or sets a value indicating whether to only return future scheduled session.
32591
32906
  */
32592
32907
  futureOnly?: boolean;
32908
+ /**
32909
+ * Gets or sets a value indicating whether to only return bookable scheduled sessions.
32910
+ */
32911
+ bookableOnly?: boolean;
32593
32912
  /**
32594
32913
  * Gets or sets a value indicating whether to include image detail in the results.
32595
32914
  */
@@ -32721,7 +33040,7 @@ declare class PublicSessionsService {
32721
33040
  * @returns boolean OK
32722
33041
  * @throws ApiError
32723
33042
  */
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, }: {
33043
+ exists({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, 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
33044
  /**
32726
33045
  * The tenants subdomain.
32727
33046
  */
@@ -32754,6 +33073,10 @@ declare class PublicSessionsService {
32754
33073
  * Gets or sets a value indicating whether return online sessions.
32755
33074
  */
32756
33075
  online?: boolean;
33076
+ /**
33077
+ * Gets or sets a value indicating whether the session is featured on the storefront.
33078
+ */
33079
+ featured?: boolean;
32757
33080
  /**
32758
33081
  * Gets or sets the queryable Programme Id.
32759
33082
  */
@@ -32778,6 +33101,10 @@ declare class PublicSessionsService {
32778
33101
  * Gets or sets a value indicating this an openactive reaquest.
32779
33102
  */
32780
33103
  openActiveUpdate?: boolean;
33104
+ /**
33105
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
33106
+ */
33107
+ dashboardRequest?: boolean;
32781
33108
  /**
32782
33109
  * Gets or sets a value indicating whether to include only sessions by given NetworkId.
32783
33110
  */
@@ -35303,7 +35630,7 @@ declare class PublicVenuesService {
35303
35630
  * @returns VenuePage OK
35304
35631
  * @throws ApiError
35305
35632
  */
35306
- getPage({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
35633
+ getPage({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
35307
35634
  xTenantSubdomain?: string;
35308
35635
  /**
35309
35636
  * Gets or sets the queryable venue ids.
@@ -35377,6 +35704,10 @@ declare class PublicVenuesService {
35377
35704
  * Gets or sets Distance.
35378
35705
  */
35379
35706
  distance?: number;
35707
+ /**
35708
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
35709
+ */
35710
+ dashboardRequest?: boolean;
35380
35711
  /**
35381
35712
  * Gets or sets the page number for paged queries.
35382
35713
  */
@@ -35442,7 +35773,7 @@ declare class PublicVenuesService {
35442
35773
  * @returns VenuePage OK
35443
35774
  * @throws ApiError
35444
35775
  */
35445
- getNetworkPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
35776
+ getNetworkPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
35446
35777
  /**
35447
35778
  * Gets or sets the queryable venue ids.
35448
35779
  */
@@ -35515,6 +35846,10 @@ declare class PublicVenuesService {
35515
35846
  * Gets or sets Distance.
35516
35847
  */
35517
35848
  distance?: number;
35849
+ /**
35850
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
35851
+ */
35852
+ dashboardRequest?: boolean;
35518
35853
  /**
35519
35854
  * Gets or sets the page number for paged queries.
35520
35855
  */
@@ -35610,7 +35945,7 @@ declare class PublicVenuesService {
35610
35945
  * @returns boolean OK
35611
35946
  * @throws ApiError
35612
35947
  */
35613
- exists({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
35948
+ exists({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
35614
35949
  /**
35615
35950
  * The tenants subdomain.
35616
35951
  */
@@ -35687,6 +36022,10 @@ declare class PublicVenuesService {
35687
36022
  * Gets or sets Distance.
35688
36023
  */
35689
36024
  distance?: number;
36025
+ /**
36026
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
36027
+ */
36028
+ dashboardRequest?: boolean;
35690
36029
  /**
35691
36030
  * Gets or sets the page number for paged queries.
35692
36031
  */
@@ -38078,7 +38417,7 @@ declare class ScheduledSessionsService {
38078
38417
  * @returns ScheduledSessionPage OK
38079
38418
  * @throws ApiError
38080
38419
  */
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, }: {
38420
+ 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
38421
  /**
38083
38422
  * Gets or sets the queryable scheduled session ids.
38084
38423
  */
@@ -38143,6 +38482,10 @@ declare class ScheduledSessionsService {
38143
38482
  * Gets or sets a value indicating whether to only return future scheduled session.
38144
38483
  */
38145
38484
  futureOnly?: boolean;
38485
+ /**
38486
+ * Gets or sets a value indicating whether to only return bookable scheduled sessions.
38487
+ */
38488
+ bookableOnly?: boolean;
38146
38489
  /**
38147
38490
  * Gets or sets a value indicating whether to include image detail in the results.
38148
38491
  */
@@ -38262,7 +38605,7 @@ declare class ScheduledSessionsService {
38262
38605
  * @returns boolean OK
38263
38606
  * @throws ApiError
38264
38607
  */
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, }: {
38608
+ 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
38609
  /**
38267
38610
  * Gets or sets the queryable scheduled session ids.
38268
38611
  */
@@ -38327,6 +38670,10 @@ declare class ScheduledSessionsService {
38327
38670
  * Gets or sets a value indicating whether to only return future scheduled session.
38328
38671
  */
38329
38672
  futureOnly?: boolean;
38673
+ /**
38674
+ * Gets or sets a value indicating whether to only return bookable scheduled sessions.
38675
+ */
38676
+ bookableOnly?: boolean;
38330
38677
  /**
38331
38678
  * Gets or sets a value indicating whether to include image detail in the results.
38332
38679
  */
@@ -38413,7 +38760,7 @@ declare class ScheduledSessionsService {
38413
38760
  * @returns ScheduledSession OK
38414
38761
  * @throws ApiError
38415
38762
  */
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, }: {
38763
+ 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
38764
  /**
38418
38765
  * Gets or sets the queryable scheduled session ids.
38419
38766
  */
@@ -38478,6 +38825,10 @@ declare class ScheduledSessionsService {
38478
38825
  * Gets or sets a value indicating whether to only return future scheduled session.
38479
38826
  */
38480
38827
  futureOnly?: boolean;
38828
+ /**
38829
+ * Gets or sets a value indicating whether to only return bookable scheduled sessions.
38830
+ */
38831
+ bookableOnly?: boolean;
38481
38832
  /**
38482
38833
  * Gets or sets a value indicating whether to include image detail in the results.
38483
38834
  */
@@ -38564,7 +38915,7 @@ declare class ScheduledSessionsService {
38564
38915
  * @returns ScheduledSession OK
38565
38916
  * @throws ApiError
38566
38917
  */
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, }: {
38918
+ 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
38919
  /**
38569
38920
  * Gets or sets the queryable scheduled session ids.
38570
38921
  */
@@ -38629,6 +38980,10 @@ declare class ScheduledSessionsService {
38629
38980
  * Gets or sets a value indicating whether to only return future scheduled session.
38630
38981
  */
38631
38982
  futureOnly?: boolean;
38983
+ /**
38984
+ * Gets or sets a value indicating whether to only return bookable scheduled sessions.
38985
+ */
38986
+ bookableOnly?: boolean;
38632
38987
  /**
38633
38988
  * Gets or sets a value indicating whether to include image detail in the results.
38634
38989
  */
@@ -38863,7 +39218,7 @@ declare class ScheduledSessionsSchedulesService {
38863
39218
  * @returns ScheduledSessionSchedulePage OK
38864
39219
  * @throws ApiError
38865
39220
  */
38866
- getPage({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
39221
+ getPage({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, bookableOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38867
39222
  /**
38868
39223
  * Gets or sets the queryable session id.
38869
39224
  */
@@ -38884,6 +39239,10 @@ declare class ScheduledSessionsSchedulesService {
38884
39239
  * Gets or sets the queryable schedule statuses.
38885
39240
  */
38886
39241
  statuses?: Array<ScheduleStatus>;
39242
+ /**
39243
+ * Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
39244
+ */
39245
+ bookableOnly?: boolean;
38887
39246
  /**
38888
39247
  * Gets or sets the page number for paged queries.
38889
39248
  */
@@ -38967,7 +39326,7 @@ declare class ScheduledSessionsSchedulesService {
38967
39326
  * @returns boolean OK
38968
39327
  * @throws ApiError
38969
39328
  */
38970
- exists({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
39329
+ exists({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, bookableOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38971
39330
  /**
38972
39331
  * Gets or sets the queryable session id.
38973
39332
  */
@@ -38988,6 +39347,10 @@ declare class ScheduledSessionsSchedulesService {
38988
39347
  * Gets or sets the queryable schedule statuses.
38989
39348
  */
38990
39349
  statuses?: Array<ScheduleStatus>;
39350
+ /**
39351
+ * Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
39352
+ */
39353
+ bookableOnly?: boolean;
38991
39354
  /**
38992
39355
  * Gets or sets the page number for paged queries.
38993
39356
  */
@@ -39038,7 +39401,7 @@ declare class ScheduledSessionsSchedulesService {
39038
39401
  * @returns ScheduledSessionSchedule OK
39039
39402
  * @throws ApiError
39040
39403
  */
39041
- getListWithoutReferences({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
39404
+ getListWithoutReferences({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, bookableOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
39042
39405
  /**
39043
39406
  * Gets or sets the queryable session id.
39044
39407
  */
@@ -39059,6 +39422,10 @@ declare class ScheduledSessionsSchedulesService {
39059
39422
  * Gets or sets the queryable schedule statuses.
39060
39423
  */
39061
39424
  statuses?: Array<ScheduleStatus>;
39425
+ /**
39426
+ * Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
39427
+ */
39428
+ bookableOnly?: boolean;
39062
39429
  /**
39063
39430
  * Gets or sets the page number for paged queries.
39064
39431
  */
@@ -39109,7 +39476,7 @@ declare class ScheduledSessionsSchedulesService {
39109
39476
  * @returns ScheduledSessionSchedule OK
39110
39477
  * @throws ApiError
39111
39478
  */
39112
- getListIdName({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
39479
+ getListIdName({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, bookableOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
39113
39480
  /**
39114
39481
  * Gets or sets the queryable session id.
39115
39482
  */
@@ -39130,6 +39497,10 @@ declare class ScheduledSessionsSchedulesService {
39130
39497
  * Gets or sets the queryable schedule statuses.
39131
39498
  */
39132
39499
  statuses?: Array<ScheduleStatus>;
39500
+ /**
39501
+ * Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
39502
+ */
39503
+ bookableOnly?: boolean;
39133
39504
  /**
39134
39505
  * Gets or sets the page number for paged queries.
39135
39506
  */
@@ -39403,13 +39774,13 @@ declare class SessionsService {
39403
39774
  */
39404
39775
  generateId(): CancelablePromise<string>;
39405
39776
  /**
39406
- * Asign deal to session />.
39777
+ * Assign deal to session.
39407
39778
  * @returns Session OK
39408
39779
  * @throws ApiError
39409
39780
  */
39410
39781
  assignDeal({ sessionId, dealId, }: {
39411
39782
  /**
39412
- * The course Id.
39783
+ * The session Id.
39413
39784
  */
39414
39785
  sessionId: string;
39415
39786
  /**
@@ -39418,13 +39789,13 @@ declare class SessionsService {
39418
39789
  dealId: string;
39419
39790
  }): CancelablePromise<Session>;
39420
39791
  /**
39421
- * Unasign deal from session />.
39792
+ * Unassign deal from session.
39422
39793
  * @returns Session OK
39423
39794
  * @throws ApiError
39424
39795
  */
39425
39796
  unassignDeal({ sessionId, dealId, }: {
39426
39797
  /**
39427
- * The course Id.
39798
+ * The session Id.
39428
39799
  */
39429
39800
  sessionId: string;
39430
39801
  /**
@@ -39432,6 +39803,28 @@ declare class SessionsService {
39432
39803
  */
39433
39804
  dealId: string;
39434
39805
  }): CancelablePromise<Session>;
39806
+ /**
39807
+ * Set the session as featured (displays more prominently on the storefront).
39808
+ * @returns Session OK
39809
+ * @throws ApiError
39810
+ */
39811
+ setFeatured({ id, }: {
39812
+ /**
39813
+ * The session Id.
39814
+ */
39815
+ id: string;
39816
+ }): CancelablePromise<Session>;
39817
+ /**
39818
+ * Remove the session as featured (displays as standard on the storefront).
39819
+ * @returns Session OK
39820
+ * @throws ApiError
39821
+ */
39822
+ removeFeatured({ id, }: {
39823
+ /**
39824
+ * The session Id.
39825
+ */
39826
+ id: string;
39827
+ }): CancelablePromise<Session>;
39435
39828
  /**
39436
39829
  * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
39437
39830
  * @returns Session OK
@@ -39492,7 +39885,7 @@ declare class SessionsService {
39492
39885
  * @returns SessionPage OK
39493
39886
  * @throws ApiError
39494
39887
  */
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, }: {
39888
+ getPage({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, 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
39889
  /**
39497
39890
  * Gets or sets the queryable session ids.
39498
39891
  */
@@ -39521,6 +39914,10 @@ declare class SessionsService {
39521
39914
  * Gets or sets a value indicating whether return online sessions.
39522
39915
  */
39523
39916
  online?: boolean;
39917
+ /**
39918
+ * Gets or sets a value indicating whether the session is featured on the storefront.
39919
+ */
39920
+ featured?: boolean;
39524
39921
  /**
39525
39922
  * Gets or sets the queryable Programme Id.
39526
39923
  */
@@ -39545,6 +39942,10 @@ declare class SessionsService {
39545
39942
  * Gets or sets a value indicating this an openactive reaquest.
39546
39943
  */
39547
39944
  openActiveUpdate?: boolean;
39945
+ /**
39946
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
39947
+ */
39948
+ dashboardRequest?: boolean;
39548
39949
  /**
39549
39950
  * Gets or sets a value indicating whether to include only sessions by given NetworkId.
39550
39951
  */
@@ -39692,7 +40093,7 @@ declare class SessionsService {
39692
40093
  * @returns boolean OK
39693
40094
  * @throws ApiError
39694
40095
  */
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, }: {
40096
+ exists({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, 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
40097
  /**
39697
40098
  * Gets or sets the queryable session ids.
39698
40099
  */
@@ -39721,6 +40122,10 @@ declare class SessionsService {
39721
40122
  * Gets or sets a value indicating whether return online sessions.
39722
40123
  */
39723
40124
  online?: boolean;
40125
+ /**
40126
+ * Gets or sets a value indicating whether the session is featured on the storefront.
40127
+ */
40128
+ featured?: boolean;
39724
40129
  /**
39725
40130
  * Gets or sets the queryable Programme Id.
39726
40131
  */
@@ -39745,6 +40150,10 @@ declare class SessionsService {
39745
40150
  * Gets or sets a value indicating this an openactive reaquest.
39746
40151
  */
39747
40152
  openActiveUpdate?: boolean;
40153
+ /**
40154
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
40155
+ */
40156
+ dashboardRequest?: boolean;
39748
40157
  /**
39749
40158
  * Gets or sets a value indicating whether to include only sessions by given NetworkId.
39750
40159
  */
@@ -39859,7 +40268,7 @@ declare class SessionsService {
39859
40268
  * @returns Session OK
39860
40269
  * @throws ApiError
39861
40270
  */
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, }: {
40271
+ getListWithoutReferences({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, 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
40272
  /**
39864
40273
  * Gets or sets the queryable session ids.
39865
40274
  */
@@ -39888,6 +40297,10 @@ declare class SessionsService {
39888
40297
  * Gets or sets a value indicating whether return online sessions.
39889
40298
  */
39890
40299
  online?: boolean;
40300
+ /**
40301
+ * Gets or sets a value indicating whether the session is featured on the storefront.
40302
+ */
40303
+ featured?: boolean;
39891
40304
  /**
39892
40305
  * Gets or sets the queryable Programme Id.
39893
40306
  */
@@ -39912,6 +40325,10 @@ declare class SessionsService {
39912
40325
  * Gets or sets a value indicating this an openactive reaquest.
39913
40326
  */
39914
40327
  openActiveUpdate?: boolean;
40328
+ /**
40329
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
40330
+ */
40331
+ dashboardRequest?: boolean;
39915
40332
  /**
39916
40333
  * Gets or sets a value indicating whether to include only sessions by given NetworkId.
39917
40334
  */
@@ -40026,7 +40443,7 @@ declare class SessionsService {
40026
40443
  * @returns Session OK
40027
40444
  * @throws ApiError
40028
40445
  */
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, }: {
40446
+ getListIdName({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, 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
40447
  /**
40031
40448
  * Gets or sets the queryable session ids.
40032
40449
  */
@@ -40055,6 +40472,10 @@ declare class SessionsService {
40055
40472
  * Gets or sets a value indicating whether return online sessions.
40056
40473
  */
40057
40474
  online?: boolean;
40475
+ /**
40476
+ * Gets or sets a value indicating whether the session is featured on the storefront.
40477
+ */
40478
+ featured?: boolean;
40058
40479
  /**
40059
40480
  * Gets or sets the queryable Programme Id.
40060
40481
  */
@@ -40079,6 +40500,10 @@ declare class SessionsService {
40079
40500
  * Gets or sets a value indicating this an openactive reaquest.
40080
40501
  */
40081
40502
  openActiveUpdate?: boolean;
40503
+ /**
40504
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
40505
+ */
40506
+ dashboardRequest?: boolean;
40082
40507
  /**
40083
40508
  * Gets or sets a value indicating whether to include only sessions by given NetworkId.
40084
40509
  */
@@ -52145,7 +52570,7 @@ declare class VenuesService {
52145
52570
  * @returns VenuePage OK
52146
52571
  * @throws ApiError
52147
52572
  */
52148
- getPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
52573
+ getPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
52149
52574
  /**
52150
52575
  * Gets or sets the queryable venue ids.
52151
52576
  */
@@ -52218,6 +52643,10 @@ declare class VenuesService {
52218
52643
  * Gets or sets Distance.
52219
52644
  */
52220
52645
  distance?: number;
52646
+ /**
52647
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
52648
+ */
52649
+ dashboardRequest?: boolean;
52221
52650
  /**
52222
52651
  * Gets or sets the page number for paged queries.
52223
52652
  */
@@ -52301,7 +52730,7 @@ declare class VenuesService {
52301
52730
  * @returns boolean OK
52302
52731
  * @throws ApiError
52303
52732
  */
52304
- exists({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
52733
+ exists({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
52305
52734
  /**
52306
52735
  * Gets or sets the queryable venue ids.
52307
52736
  */
@@ -52374,6 +52803,10 @@ declare class VenuesService {
52374
52803
  * Gets or sets Distance.
52375
52804
  */
52376
52805
  distance?: number;
52806
+ /**
52807
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
52808
+ */
52809
+ dashboardRequest?: boolean;
52377
52810
  /**
52378
52811
  * Gets or sets the page number for paged queries.
52379
52812
  */
@@ -52424,7 +52857,7 @@ declare class VenuesService {
52424
52857
  * @returns Venue OK
52425
52858
  * @throws ApiError
52426
52859
  */
52427
- getListWithoutReferences({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
52860
+ getListWithoutReferences({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
52428
52861
  /**
52429
52862
  * Gets or sets the queryable venue ids.
52430
52863
  */
@@ -52497,6 +52930,10 @@ declare class VenuesService {
52497
52930
  * Gets or sets Distance.
52498
52931
  */
52499
52932
  distance?: number;
52933
+ /**
52934
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
52935
+ */
52936
+ dashboardRequest?: boolean;
52500
52937
  /**
52501
52938
  * Gets or sets the page number for paged queries.
52502
52939
  */
@@ -52547,7 +52984,7 @@ declare class VenuesService {
52547
52984
  * @returns Venue OK
52548
52985
  * @throws ApiError
52549
52986
  */
52550
- getListIdName({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
52987
+ getListIdName({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
52551
52988
  /**
52552
52989
  * Gets or sets the queryable venue ids.
52553
52990
  */
@@ -52620,6 +53057,10 @@ declare class VenuesService {
52620
53057
  * Gets or sets Distance.
52621
53058
  */
52622
53059
  distance?: number;
53060
+ /**
53061
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
53062
+ */
53063
+ dashboardRequest?: boolean;
52623
53064
  /**
52624
53065
  * Gets or sets the page number for paged queries.
52625
53066
  */
@@ -55084,6 +55525,7 @@ declare class ApiClient {
55084
55525
  readonly providers: ProvidersService;
55085
55526
  readonly providerTypes: ProviderTypesService;
55086
55527
  readonly publicBooking: PublicBookingService;
55528
+ readonly publicCalendar: PublicCalendarService;
55087
55529
  readonly publicCourses: PublicCoursesService;
55088
55530
  readonly publicCustomers: PublicCustomersService;
55089
55531
  readonly publicFacilities: PublicFacilitiesService;
@@ -55278,4 +55720,4 @@ type ValidationResultModel = {
55278
55720
  readonly errors?: Array<ValidationError> | null;
55279
55721
  };
55280
55722
 
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 };
55723
+ 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 };