reach-api-sdk 1.0.216 → 1.0.218

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 (38) hide show
  1. package/dist/reach-sdk.d.ts +1995 -453
  2. package/dist/reach-sdk.js +878 -2
  3. package/package.json +1 -1
  4. package/src/apiClient.ts +6 -0
  5. package/src/definition/swagger.yaml +4508 -1212
  6. package/src/index.ts +6 -0
  7. package/src/models/ActivityType.ts +1 -0
  8. package/src/models/Course.ts +20 -0
  9. package/src/models/CoursePatch.ts +16 -0
  10. package/src/models/DealActivity.ts +4 -0
  11. package/src/models/DealActivityPost.ts +4 -0
  12. package/src/models/EmailSetting.ts +4 -0
  13. package/src/models/GenericActivity.ts +24 -0
  14. package/src/models/Image.ts +4 -0
  15. package/src/models/Offer.ts +4 -0
  16. package/src/models/OfferPatch.ts +4 -0
  17. package/src/models/OfferPost.ts +4 -0
  18. package/src/models/OpportunityType.ts +1 -0
  19. package/src/models/OrderItem.ts +6 -0
  20. package/src/models/OrderPatchItem.ts +4 -0
  21. package/src/models/OrderPostItem.ts +4 -0
  22. package/src/models/SellableItem.ts +194 -0
  23. package/src/models/SellableItemPage.ts +12 -0
  24. package/src/models/SellableItemPatch.ts +150 -0
  25. package/src/models/SellableItemPost.ts +145 -0
  26. package/src/models/Session.ts +20 -0
  27. package/src/models/SessionPatch.ts +16 -0
  28. package/src/services/CoursesService.ts +30 -0
  29. package/src/services/DealActivitiesService.ts +60 -0
  30. package/src/services/EmailSettingsService.ts +30 -0
  31. package/src/services/ImagesService.ts +30 -0
  32. package/src/services/OffersService.ts +60 -0
  33. package/src/services/OrderItemsService.ts +30 -0
  34. package/src/services/PublicCoursesService.ts +12 -0
  35. package/src/services/PublicOrderItemsService.ts +12 -0
  36. package/src/services/PublicSellableItemsService.ts +473 -0
  37. package/src/services/SellableItemsService.ts +962 -0
  38. package/src/services/SessionsService.ts +2 -2
@@ -212,7 +212,8 @@ declare class ActivityService {
212
212
  declare enum ActivityType {
213
213
  FACILITY = "Facility",
214
214
  SESSION = "Session",
215
- COURSE = "Course"
215
+ COURSE = "Course",
216
+ SELLABLE_ITEM = "SellableItem"
216
217
  }
217
218
 
218
219
  /**
@@ -1983,6 +1984,10 @@ type Image = {
1983
1984
  * Gets or sets the images course id.
1984
1985
  */
1985
1986
  courseId?: string | null;
1987
+ /**
1988
+ * Gets or sets the sellable item id.
1989
+ */
1990
+ sellableItemId?: string | null;
1986
1991
  /**
1987
1992
  * Gets or sets the images programme id.
1988
1993
  */
@@ -3161,6 +3166,26 @@ type Session = {
3161
3166
  * Gets or sets a value indicating whether the activity should be featured on the storefront.
3162
3167
  */
3163
3168
  featured?: boolean;
3169
+ /**
3170
+ * Gets or sets a value indicating whether customers may join the activity pre-registration / waitlist when there is nothing bookable yet.
3171
+ */
3172
+ preRegistrationEnabled?: boolean | null;
3173
+ /**
3174
+ * Gets or sets when pre-registration sign-up opens. When null, there is no start boundary (sign-up is allowed from whenever the activity is eligible, until Reach.Models.ActivityBase.PreRegistrationClosesAt if set).
3175
+ */
3176
+ preRegistrationOpensAt?: string | null;
3177
+ /**
3178
+ * Gets or sets when pre-registration sign-up closes. When null, there is no end boundary while Reach.Models.ActivityBase.PreRegistrationEnabled is true.
3179
+ */
3180
+ preRegistrationClosesAt?: string | null;
3181
+ /**
3182
+ * Gets or sets optional storefront copy for the pre-registration form.
3183
+ */
3184
+ preRegistrationMessage?: string | null;
3185
+ /**
3186
+ * Gets a value indicating whether pre-registration is configured and the current instant falls inside the optional window.
3187
+ */
3188
+ readonly isPreRegistrationAcceptingSignUps?: boolean;
3164
3189
  /**
3165
3190
  * Gets the computed image url.
3166
3191
  */
@@ -3313,6 +3338,10 @@ type Offer = {
3313
3338
  * Gets or sets the course id.
3314
3339
  */
3315
3340
  courseId?: string | null;
3341
+ /**
3342
+ * Gets or sets the sellable item id.
3343
+ */
3344
+ sellableItemId?: string | null;
3316
3345
  /**
3317
3346
  * Gets or sets the survey id.
3318
3347
  */
@@ -4408,6 +4437,26 @@ type Course = {
4408
4437
  * Gets or sets a value indicating whether the activity should be featured on the storefront.
4409
4438
  */
4410
4439
  featured?: boolean;
4440
+ /**
4441
+ * Gets or sets a value indicating whether customers may join the activity pre-registration / waitlist when there is nothing bookable yet.
4442
+ */
4443
+ preRegistrationEnabled?: boolean | null;
4444
+ /**
4445
+ * Gets or sets when pre-registration sign-up opens. When null, there is no start boundary (sign-up is allowed from whenever the activity is eligible, until Reach.Models.ActivityBase.PreRegistrationClosesAt if set).
4446
+ */
4447
+ preRegistrationOpensAt?: string | null;
4448
+ /**
4449
+ * Gets or sets when pre-registration sign-up closes. When null, there is no end boundary while Reach.Models.ActivityBase.PreRegistrationEnabled is true.
4450
+ */
4451
+ preRegistrationClosesAt?: string | null;
4452
+ /**
4453
+ * Gets or sets optional storefront copy for the pre-registration form.
4454
+ */
4455
+ preRegistrationMessage?: string | null;
4456
+ /**
4457
+ * Gets a value indicating whether pre-registration is configured and the current instant falls inside the optional window.
4458
+ */
4459
+ readonly isPreRegistrationAcceptingSignUps?: boolean;
4411
4460
  /**
4412
4461
  * Gets the computed image url.
4413
4462
  */
@@ -4630,7 +4679,8 @@ type IOpportunity = {
4630
4679
  declare enum OpportunityType {
4631
4680
  SLOT = "Slot",
4632
4681
  SCHEDULED_SESSION = "ScheduledSession",
4633
- COURSE = "Course"
4682
+ COURSE = "Course",
4683
+ SELLABLE_ITEM = "SellableItem"
4634
4684
  }
4635
4685
 
4636
4686
  /**
@@ -4691,6 +4741,186 @@ declare enum OrderItemStatus {
4691
4741
  RESCHEDULED = "Rescheduled"
4692
4742
  }
4693
4743
 
4744
+ /**
4745
+ * A venue-scoped product with inventory (no scheduled session or course).
4746
+ */
4747
+ type SellableItem = {
4748
+ /**
4749
+ * Gets or sets the entities Id.
4750
+ */
4751
+ id?: string;
4752
+ /**
4753
+ * Gets or sets the tenant Id.
4754
+ */
4755
+ tenantId: string;
4756
+ /**
4757
+ * Gets or sets the created date of this entity.
4758
+ */
4759
+ dateCreated: string;
4760
+ /**
4761
+ * Gets or sets the last modified date of this entity.
4762
+ */
4763
+ dateModified: string;
4764
+ /**
4765
+ * Gets or sets the modified by Id.
4766
+ */
4767
+ modifiedById?: string | null;
4768
+ /**
4769
+ * Gets or sets a value indicating whether the record is live and available for use within the application.
4770
+ */
4771
+ isLive: boolean;
4772
+ /**
4773
+ * Gets or sets the provider id.
4774
+ */
4775
+ providerId?: string | null;
4776
+ /**
4777
+ * Gets or sets the venue id.
4778
+ */
4779
+ venueId?: string | null;
4780
+ /**
4781
+ * Gets or sets the activity category id.
4782
+ */
4783
+ activityId?: number | null;
4784
+ /**
4785
+ * Gets or sets the name.
4786
+ */
4787
+ name?: string | null;
4788
+ /**
4789
+ * Gets or sets the description.
4790
+ */
4791
+ description?: string | null;
4792
+ /**
4793
+ * Gets or sets the image url.
4794
+ */
4795
+ imageUrl?: string | null;
4796
+ /**
4797
+ * Gets or sets a value indicating whether the item is bookable on the web.
4798
+ */
4799
+ online?: boolean | null;
4800
+ /**
4801
+ * Gets or sets a value indicating whether the item is archived.
4802
+ */
4803
+ archived?: boolean | null;
4804
+ /**
4805
+ * Gets or sets a value indicating whether the item is deleted.
4806
+ */
4807
+ deleted?: boolean | null;
4808
+ /**
4809
+ * Gets or sets remaining stock (decremented when orders are booked).
4810
+ */
4811
+ stockQuantity?: number;
4812
+ /**
4813
+ * Gets or sets a value indicating whether the item is featured on the storefront.
4814
+ */
4815
+ featured?: boolean;
4816
+ /**
4817
+ * Gets or sets a value indicating whether the item is private.
4818
+ */
4819
+ private?: boolean;
4820
+ /**
4821
+ * Gets or sets the checkout survey id.
4822
+ */
4823
+ surveyId?: string | null;
4824
+ /**
4825
+ * Gets or sets the post-completion survey id.
4826
+ */
4827
+ postCompletionSurveyId?: string | null;
4828
+ /**
4829
+ * Gets or sets the cancellation policy id.
4830
+ */
4831
+ cancellationPolicyId?: string;
4832
+ /**
4833
+ * Gets or sets the payment policy id.
4834
+ */
4835
+ paymentPolicyId?: string;
4836
+ gender?: Gender;
4837
+ /**
4838
+ * Gets or sets the min age.
4839
+ */
4840
+ minAge?: number | null;
4841
+ /**
4842
+ * Gets or sets the max age.
4843
+ */
4844
+ maxAge?: number | null;
4845
+ /**
4846
+ * Gets or sets a value indicating whether there is no age restriction.
4847
+ */
4848
+ noAgeRestriction?: boolean;
4849
+ /**
4850
+ * Gets or sets additional support options.
4851
+ */
4852
+ additionalSupport?: Array<string> | null;
4853
+ /**
4854
+ * Gets or sets the contact name.
4855
+ */
4856
+ contactName?: string | null;
4857
+ /**
4858
+ * Gets or sets the contact phone.
4859
+ */
4860
+ contactPhone?: string | null;
4861
+ /**
4862
+ * Gets or sets the contact email.
4863
+ */
4864
+ contactEmail?: string | null;
4865
+ /**
4866
+ * Gets or sets the admin contact name.
4867
+ */
4868
+ adminContactName?: string | null;
4869
+ /**
4870
+ * Gets or sets the admin contact phone.
4871
+ */
4872
+ adminContactPhone?: string | null;
4873
+ /**
4874
+ * Gets or sets the admin contact email.
4875
+ */
4876
+ adminContactEmail?: string | null;
4877
+ /**
4878
+ * Gets or sets a value indicating whether to send reminder emails.
4879
+ */
4880
+ sendReminder?: boolean | null;
4881
+ /**
4882
+ * Gets or sets the reminder hours before start.
4883
+ */
4884
+ reminderHoursBeforeStart?: number | null;
4885
+ checkoutPlatform?: CheckoutPlatform;
4886
+ /**
4887
+ * Gets or sets the booking link override when checkout is external.
4888
+ */
4889
+ bookingLinkOverride?: string | null;
4890
+ /**
4891
+ * Gets or sets a value indicating whether pre-registration is enabled.
4892
+ */
4893
+ preRegistrationEnabled?: boolean | null;
4894
+ /**
4895
+ * Gets or sets when pre-registration opens.
4896
+ */
4897
+ preRegistrationOpensAt?: string | null;
4898
+ /**
4899
+ * Gets or sets when pre-registration closes.
4900
+ */
4901
+ preRegistrationClosesAt?: string | null;
4902
+ /**
4903
+ * Gets or sets the pre-registration storefront message.
4904
+ */
4905
+ preRegistrationMessage?: string | null;
4906
+ venue?: Venue;
4907
+ cancellationPolicy?: CancellationPolicy;
4908
+ paymentPolicy?: PaymentPolicy;
4909
+ activity?: Activity;
4910
+ /**
4911
+ * Gets or sets offers for this item.
4912
+ */
4913
+ offers?: Array<Offer> | null;
4914
+ /**
4915
+ * Gets or sets images.
4916
+ */
4917
+ images?: Array<Image> | null;
4918
+ /**
4919
+ * Gets or sets deals applicable to this item.
4920
+ */
4921
+ deals?: Array<Deal> | null;
4922
+ };
4923
+
4694
4924
  /**
4695
4925
  * Represents an Order of a currently available bookable Reach.Models.OrderItem.Slot within the Reach application.
4696
4926
  */
@@ -4735,6 +4965,10 @@ type OrderItem = {
4735
4965
  * Gets or sets the course id.
4736
4966
  */
4737
4967
  courseId?: string | null;
4968
+ /**
4969
+ * Gets or sets the sellable item id.
4970
+ */
4971
+ sellableItemId?: string | null;
4738
4972
  /**
4739
4973
  * Gets or sets the offer id.
4740
4974
  */
@@ -4788,6 +5022,7 @@ type OrderItem = {
4788
5022
  slot?: Slot;
4789
5023
  scheduledSession?: ScheduledSession;
4790
5024
  course?: Course;
5025
+ sellableItem?: SellableItem;
4791
5026
  offer?: Offer;
4792
5027
  /**
4793
5028
  * Gets or sets the order item deals.
@@ -6519,6 +6754,10 @@ type OrderPostItem = {
6519
6754
  * Gets or sets the course id.
6520
6755
  */
6521
6756
  courseId?: string | null;
6757
+ /**
6758
+ * Gets or sets the sellable item id.
6759
+ */
6760
+ sellableItemId?: string | null;
6522
6761
  /**
6523
6762
  * Gets or sets the offer id.
6524
6763
  */
@@ -8890,6 +9129,22 @@ type CoursePatch = {
8890
9129
  * Gets or sets a value indicating whether the course is deleted and should be ignored under normal operation.
8891
9130
  */
8892
9131
  deleted?: boolean | null;
9132
+ /**
9133
+ * Gets or sets a value indicating whether pre-registration / waitlist is enabled for this course.
9134
+ */
9135
+ preRegistrationEnabled?: boolean | null;
9136
+ /**
9137
+ * Gets or sets when pre-registration opens; null means no start boundary.
9138
+ */
9139
+ preRegistrationOpensAt?: string | null;
9140
+ /**
9141
+ * Gets or sets when pre-registration closes; null means no end boundary.
9142
+ */
9143
+ preRegistrationClosesAt?: string | null;
9144
+ /**
9145
+ * Gets or sets optional storefront message for pre-registration.
9146
+ */
9147
+ preRegistrationMessage?: string | null;
8893
9148
  emailSettings?: UpdateEmailSettings;
8894
9149
  /**
8895
9150
  * Gets or sets the course offers.
@@ -9285,7 +9540,7 @@ declare class CoursesService {
9285
9540
  * @returns CoursePage OK
9286
9541
  * @throws ApiError
9287
9542
  */
9288
- getPage({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9543
+ getPage({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, additionalSupport, timeOfDay, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9289
9544
  /**
9290
9545
  * Gets or sets the queryable Course Id.
9291
9546
  */
@@ -9414,6 +9669,10 @@ declare class CoursesService {
9414
9669
  * Gets or sets AdditionalSupport.
9415
9670
  */
9416
9671
  additionalSupport?: Array<string>;
9672
+ /**
9673
+ * Gets or sets time-of-day bucket (morning, afternoon, evening) for course session start times.
9674
+ */
9675
+ timeOfDay?: string;
9417
9676
  /**
9418
9677
  * Gets or sets Activity id.
9419
9678
  */
@@ -9509,7 +9768,7 @@ declare class CoursesService {
9509
9768
  * @returns boolean OK
9510
9769
  * @throws ApiError
9511
9770
  */
9512
- exists({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9771
+ exists({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, additionalSupport, timeOfDay, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9513
9772
  /**
9514
9773
  * Gets or sets the queryable Course Id.
9515
9774
  */
@@ -9638,6 +9897,10 @@ declare class CoursesService {
9638
9897
  * Gets or sets AdditionalSupport.
9639
9898
  */
9640
9899
  additionalSupport?: Array<string>;
9900
+ /**
9901
+ * Gets or sets time-of-day bucket (morning, afternoon, evening) for course session start times.
9902
+ */
9903
+ timeOfDay?: string;
9641
9904
  /**
9642
9905
  * Gets or sets Activity id.
9643
9906
  */
@@ -9700,7 +9963,7 @@ declare class CoursesService {
9700
9963
  * @returns number OK
9701
9964
  * @throws ApiError
9702
9965
  */
9703
- count({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9966
+ count({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, additionalSupport, timeOfDay, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9704
9967
  /**
9705
9968
  * Gets or sets the queryable Course Id.
9706
9969
  */
@@ -9829,6 +10092,10 @@ declare class CoursesService {
9829
10092
  * Gets or sets AdditionalSupport.
9830
10093
  */
9831
10094
  additionalSupport?: Array<string>;
10095
+ /**
10096
+ * Gets or sets time-of-day bucket (morning, afternoon, evening) for course session start times.
10097
+ */
10098
+ timeOfDay?: string;
9832
10099
  /**
9833
10100
  * Gets or sets Activity id.
9834
10101
  */
@@ -9891,7 +10158,7 @@ declare class CoursesService {
9891
10158
  * @returns Course OK
9892
10159
  * @throws ApiError
9893
10160
  */
9894
- getListWithoutReferences({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
10161
+ getListWithoutReferences({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, additionalSupport, timeOfDay, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9895
10162
  /**
9896
10163
  * Gets or sets the queryable Course Id.
9897
10164
  */
@@ -10020,6 +10287,10 @@ declare class CoursesService {
10020
10287
  * Gets or sets AdditionalSupport.
10021
10288
  */
10022
10289
  additionalSupport?: Array<string>;
10290
+ /**
10291
+ * Gets or sets time-of-day bucket (morning, afternoon, evening) for course session start times.
10292
+ */
10293
+ timeOfDay?: string;
10023
10294
  /**
10024
10295
  * Gets or sets Activity id.
10025
10296
  */
@@ -10082,7 +10353,7 @@ declare class CoursesService {
10082
10353
  * @returns Course OK
10083
10354
  * @throws ApiError
10084
10355
  */
10085
- getListIdName({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
10356
+ getListIdName({ id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, additionalSupport, timeOfDay, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
10086
10357
  /**
10087
10358
  * Gets or sets the queryable Course Id.
10088
10359
  */
@@ -10211,6 +10482,10 @@ declare class CoursesService {
10211
10482
  * Gets or sets AdditionalSupport.
10212
10483
  */
10213
10484
  additionalSupport?: Array<string>;
10485
+ /**
10486
+ * Gets or sets time-of-day bucket (morning, afternoon, evening) for course session start times.
10487
+ */
10488
+ timeOfDay?: string;
10214
10489
  /**
10215
10490
  * Gets or sets Activity id.
10216
10491
  */
@@ -13609,6 +13884,10 @@ type DealActivity = {
13609
13884
  * Gets or sets the session id.
13610
13885
  */
13611
13886
  sessionId?: string | null;
13887
+ /**
13888
+ * Gets or sets the sellable item id.
13889
+ */
13890
+ sellableItemId?: string | null;
13612
13891
  deal?: Deal;
13613
13892
  };
13614
13893
 
@@ -13663,6 +13942,10 @@ type DealActivityPost = {
13663
13942
  * Gets or sets the session id.
13664
13943
  */
13665
13944
  sessionId?: string | null;
13945
+ /**
13946
+ * Gets or sets the sellable item id.
13947
+ */
13948
+ sellableItemId?: string | null;
13666
13949
  };
13667
13950
 
13668
13951
  declare class DealActivitiesService {
@@ -13758,7 +14041,7 @@ declare class DealActivitiesService {
13758
14041
  * @returns DealActivityPage OK
13759
14042
  * @throws ApiError
13760
14043
  */
13761
- getPage({ dealId, dealIds, courseId, courseIds, sessionId, sessionIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14044
+ getPage({ dealId, dealIds, courseId, courseIds, sessionId, sessionIds, sellableItemId, sellableItemIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
13762
14045
  /**
13763
14046
  * Gets or sets the queryable deal id.
13764
14047
  */
@@ -13783,6 +14066,14 @@ declare class DealActivitiesService {
13783
14066
  * Gets or sets the queryable session ids.
13784
14067
  */
13785
14068
  sessionIds?: Array<string>;
14069
+ /**
14070
+ * Gets or sets the queryable sellable item id.
14071
+ */
14072
+ sellableItemId?: string;
14073
+ /**
14074
+ * Gets or sets the queryable sellable item ids.
14075
+ */
14076
+ sellableItemIds?: Array<string>;
13786
14077
  /**
13787
14078
  * Gets or sets the page number for paged queries.
13788
14079
  */
@@ -13866,7 +14157,7 @@ declare class DealActivitiesService {
13866
14157
  * @returns boolean OK
13867
14158
  * @throws ApiError
13868
14159
  */
13869
- exists({ dealId, dealIds, courseId, courseIds, sessionId, sessionIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14160
+ exists({ dealId, dealIds, courseId, courseIds, sessionId, sessionIds, sellableItemId, sellableItemIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
13870
14161
  /**
13871
14162
  * Gets or sets the queryable deal id.
13872
14163
  */
@@ -13891,6 +14182,14 @@ declare class DealActivitiesService {
13891
14182
  * Gets or sets the queryable session ids.
13892
14183
  */
13893
14184
  sessionIds?: Array<string>;
14185
+ /**
14186
+ * Gets or sets the queryable sellable item id.
14187
+ */
14188
+ sellableItemId?: string;
14189
+ /**
14190
+ * Gets or sets the queryable sellable item ids.
14191
+ */
14192
+ sellableItemIds?: Array<string>;
13894
14193
  /**
13895
14194
  * Gets or sets the page number for paged queries.
13896
14195
  */
@@ -13941,7 +14240,7 @@ declare class DealActivitiesService {
13941
14240
  * @returns number OK
13942
14241
  * @throws ApiError
13943
14242
  */
13944
- count({ dealId, dealIds, courseId, courseIds, sessionId, sessionIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14243
+ count({ dealId, dealIds, courseId, courseIds, sessionId, sessionIds, sellableItemId, sellableItemIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
13945
14244
  /**
13946
14245
  * Gets or sets the queryable deal id.
13947
14246
  */
@@ -13966,6 +14265,14 @@ declare class DealActivitiesService {
13966
14265
  * Gets or sets the queryable session ids.
13967
14266
  */
13968
14267
  sessionIds?: Array<string>;
14268
+ /**
14269
+ * Gets or sets the queryable sellable item id.
14270
+ */
14271
+ sellableItemId?: string;
14272
+ /**
14273
+ * Gets or sets the queryable sellable item ids.
14274
+ */
14275
+ sellableItemIds?: Array<string>;
13969
14276
  /**
13970
14277
  * Gets or sets the page number for paged queries.
13971
14278
  */
@@ -14016,7 +14323,7 @@ declare class DealActivitiesService {
14016
14323
  * @returns DealActivity OK
14017
14324
  * @throws ApiError
14018
14325
  */
14019
- getListWithoutReferences({ dealId, dealIds, courseId, courseIds, sessionId, sessionIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14326
+ getListWithoutReferences({ dealId, dealIds, courseId, courseIds, sessionId, sessionIds, sellableItemId, sellableItemIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14020
14327
  /**
14021
14328
  * Gets or sets the queryable deal id.
14022
14329
  */
@@ -14041,6 +14348,14 @@ declare class DealActivitiesService {
14041
14348
  * Gets or sets the queryable session ids.
14042
14349
  */
14043
14350
  sessionIds?: Array<string>;
14351
+ /**
14352
+ * Gets or sets the queryable sellable item id.
14353
+ */
14354
+ sellableItemId?: string;
14355
+ /**
14356
+ * Gets or sets the queryable sellable item ids.
14357
+ */
14358
+ sellableItemIds?: Array<string>;
14044
14359
  /**
14045
14360
  * Gets or sets the page number for paged queries.
14046
14361
  */
@@ -14091,7 +14406,7 @@ declare class DealActivitiesService {
14091
14406
  * @returns DealActivity OK
14092
14407
  * @throws ApiError
14093
14408
  */
14094
- getListIdName({ dealId, dealIds, courseId, courseIds, sessionId, sessionIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14409
+ getListIdName({ dealId, dealIds, courseId, courseIds, sessionId, sessionIds, sellableItemId, sellableItemIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14095
14410
  /**
14096
14411
  * Gets or sets the queryable deal id.
14097
14412
  */
@@ -14116,6 +14431,14 @@ declare class DealActivitiesService {
14116
14431
  * Gets or sets the queryable session ids.
14117
14432
  */
14118
14433
  sessionIds?: Array<string>;
14434
+ /**
14435
+ * Gets or sets the queryable sellable item id.
14436
+ */
14437
+ sellableItemId?: string;
14438
+ /**
14439
+ * Gets or sets the queryable sellable item ids.
14440
+ */
14441
+ sellableItemIds?: Array<string>;
14119
14442
  /**
14120
14443
  * Gets or sets the page number for paged queries.
14121
14444
  */
@@ -15940,6 +16263,10 @@ type EmailSetting = {
15940
16263
  * Gets or sets the course Id.
15941
16264
  */
15942
16265
  courseId?: string | null;
16266
+ /**
16267
+ * Gets or sets the sellable item Id.
16268
+ */
16269
+ sellableItemId?: string | null;
15943
16270
  /**
15944
16271
  * Gets or sets the order confirmation text.
15945
16272
  */
@@ -16050,7 +16377,7 @@ declare class EmailSettingsService {
16050
16377
  * @returns EmailSettingPage OK
16051
16378
  * @throws ApiError
16052
16379
  */
16053
- getPage({ providerId, venueId, facilityId, sessionId, courseId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16380
+ getPage({ providerId, venueId, facilityId, sessionId, courseId, sellableItemId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16054
16381
  /**
16055
16382
  * Gets or sets the queryable Provider Id.
16056
16383
  */
@@ -16071,6 +16398,10 @@ declare class EmailSettingsService {
16071
16398
  * Gets or sets the queryable Course Id.
16072
16399
  */
16073
16400
  courseId?: string;
16401
+ /**
16402
+ * Gets or sets the queryable sellable item Id.
16403
+ */
16404
+ sellableItemId?: string;
16074
16405
  /**
16075
16406
  * Gets or sets the page number for paged queries.
16076
16407
  */
@@ -16154,7 +16485,7 @@ declare class EmailSettingsService {
16154
16485
  * @returns boolean OK
16155
16486
  * @throws ApiError
16156
16487
  */
16157
- exists({ providerId, venueId, facilityId, sessionId, courseId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16488
+ exists({ providerId, venueId, facilityId, sessionId, courseId, sellableItemId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16158
16489
  /**
16159
16490
  * Gets or sets the queryable Provider Id.
16160
16491
  */
@@ -16175,6 +16506,10 @@ declare class EmailSettingsService {
16175
16506
  * Gets or sets the queryable Course Id.
16176
16507
  */
16177
16508
  courseId?: string;
16509
+ /**
16510
+ * Gets or sets the queryable sellable item Id.
16511
+ */
16512
+ sellableItemId?: string;
16178
16513
  /**
16179
16514
  * Gets or sets the page number for paged queries.
16180
16515
  */
@@ -16225,7 +16560,7 @@ declare class EmailSettingsService {
16225
16560
  * @returns number OK
16226
16561
  * @throws ApiError
16227
16562
  */
16228
- count({ providerId, venueId, facilityId, sessionId, courseId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16563
+ count({ providerId, venueId, facilityId, sessionId, courseId, sellableItemId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16229
16564
  /**
16230
16565
  * Gets or sets the queryable Provider Id.
16231
16566
  */
@@ -16246,6 +16581,10 @@ declare class EmailSettingsService {
16246
16581
  * Gets or sets the queryable Course Id.
16247
16582
  */
16248
16583
  courseId?: string;
16584
+ /**
16585
+ * Gets or sets the queryable sellable item Id.
16586
+ */
16587
+ sellableItemId?: string;
16249
16588
  /**
16250
16589
  * Gets or sets the page number for paged queries.
16251
16590
  */
@@ -16296,7 +16635,7 @@ declare class EmailSettingsService {
16296
16635
  * @returns EmailSetting OK
16297
16636
  * @throws ApiError
16298
16637
  */
16299
- getListWithoutReferences({ providerId, venueId, facilityId, sessionId, courseId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16638
+ getListWithoutReferences({ providerId, venueId, facilityId, sessionId, courseId, sellableItemId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16300
16639
  /**
16301
16640
  * Gets or sets the queryable Provider Id.
16302
16641
  */
@@ -16317,6 +16656,10 @@ declare class EmailSettingsService {
16317
16656
  * Gets or sets the queryable Course Id.
16318
16657
  */
16319
16658
  courseId?: string;
16659
+ /**
16660
+ * Gets or sets the queryable sellable item Id.
16661
+ */
16662
+ sellableItemId?: string;
16320
16663
  /**
16321
16664
  * Gets or sets the page number for paged queries.
16322
16665
  */
@@ -16367,7 +16710,7 @@ declare class EmailSettingsService {
16367
16710
  * @returns EmailSetting OK
16368
16711
  * @throws ApiError
16369
16712
  */
16370
- getListIdName({ providerId, venueId, facilityId, sessionId, courseId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16713
+ getListIdName({ providerId, venueId, facilityId, sessionId, courseId, sellableItemId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
16371
16714
  /**
16372
16715
  * Gets or sets the queryable Provider Id.
16373
16716
  */
@@ -16388,6 +16731,10 @@ declare class EmailSettingsService {
16388
16731
  * Gets or sets the queryable Course Id.
16389
16732
  */
16390
16733
  courseId?: string;
16734
+ /**
16735
+ * Gets or sets the queryable sellable item Id.
16736
+ */
16737
+ sellableItemId?: string;
16391
16738
  /**
16392
16739
  * Gets or sets the page number for paged queries.
16393
16740
  */
@@ -17733,6 +18080,26 @@ type GenericActivity = {
17733
18080
  * Gets or sets a value indicating whether the activity should be featured on the storefront.
17734
18081
  */
17735
18082
  featured?: boolean;
18083
+ /**
18084
+ * Gets or sets a value indicating whether customers may join pre-registration / waitlist for this activity when there is nothing bookable yet.
18085
+ */
18086
+ preRegistrationEnabled?: boolean | null;
18087
+ /**
18088
+ * Gets or sets when pre-registration opens. Null means no start date constraint.
18089
+ */
18090
+ preRegistrationOpensAt?: string | null;
18091
+ /**
18092
+ * Gets or sets when pre-registration closes. Null means no end date constraint.
18093
+ */
18094
+ preRegistrationClosesAt?: string | null;
18095
+ /**
18096
+ * Gets or sets optional storefront copy for the pre-registration form.
18097
+ */
18098
+ preRegistrationMessage?: string | null;
18099
+ /**
18100
+ * Gets a value indicating whether pre-registration is turned on and the current time is inside the optional window.
18101
+ */
18102
+ readonly isPreRegistrationAcceptingSignUps?: boolean;
17736
18103
  /**
17737
18104
  * Gets or sets the start date.
17738
18105
  */
@@ -17766,6 +18133,10 @@ type GenericActivity = {
17766
18133
  * Gets or sets the courses sessions (only applicable to courses).
17767
18134
  */
17768
18135
  sessions?: Array<CourseSession> | null;
18136
+ /**
18137
+ * Gets or sets remaining inventory for Reach.Models.ActivityType.SellableItem (populated on list/detail when applicable).
18138
+ */
18139
+ stockQuantity?: number | null;
17769
18140
  };
17770
18141
 
17771
18142
  type GenericActivityPage = {
@@ -19693,7 +20064,7 @@ declare class ImagesService {
19693
20064
  * @returns ImagePage OK
19694
20065
  * @throws ApiError
19695
20066
  */
19696
- getPage({ venueId, venueIds, facilityId, facilityIds, sessionId, sessionIds, courseId, courseIds, programmeId, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
20067
+ getPage({ venueId, venueIds, facilityId, facilityIds, sessionId, sessionIds, courseId, courseIds, sellableItemIds, programmeId, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
19697
20068
  /**
19698
20069
  * Gets or sets the queryable venue id.
19699
20070
  */
@@ -19726,6 +20097,10 @@ declare class ImagesService {
19726
20097
  * Gets or sets the queryable course ids.
19727
20098
  */
19728
20099
  courseIds?: Array<string>;
20100
+ /**
20101
+ * Gets or sets the queryable sellable item ids.
20102
+ */
20103
+ sellableItemIds?: Array<string>;
19729
20104
  /**
19730
20105
  * Gets or sets the queryable programme id.
19731
20106
  */
@@ -19817,7 +20192,7 @@ declare class ImagesService {
19817
20192
  * @returns boolean OK
19818
20193
  * @throws ApiError
19819
20194
  */
19820
- exists({ venueId, venueIds, facilityId, facilityIds, sessionId, sessionIds, courseId, courseIds, programmeId, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
20195
+ exists({ venueId, venueIds, facilityId, facilityIds, sessionId, sessionIds, courseId, courseIds, sellableItemIds, programmeId, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
19821
20196
  /**
19822
20197
  * Gets or sets the queryable venue id.
19823
20198
  */
@@ -19850,6 +20225,10 @@ declare class ImagesService {
19850
20225
  * Gets or sets the queryable course ids.
19851
20226
  */
19852
20227
  courseIds?: Array<string>;
20228
+ /**
20229
+ * Gets or sets the queryable sellable item ids.
20230
+ */
20231
+ sellableItemIds?: Array<string>;
19853
20232
  /**
19854
20233
  * Gets or sets the queryable programme id.
19855
20234
  */
@@ -19908,7 +20287,7 @@ declare class ImagesService {
19908
20287
  * @returns number OK
19909
20288
  * @throws ApiError
19910
20289
  */
19911
- count({ venueId, venueIds, facilityId, facilityIds, sessionId, sessionIds, courseId, courseIds, programmeId, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
20290
+ count({ venueId, venueIds, facilityId, facilityIds, sessionId, sessionIds, courseId, courseIds, sellableItemIds, programmeId, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
19912
20291
  /**
19913
20292
  * Gets or sets the queryable venue id.
19914
20293
  */
@@ -19941,6 +20320,10 @@ declare class ImagesService {
19941
20320
  * Gets or sets the queryable course ids.
19942
20321
  */
19943
20322
  courseIds?: Array<string>;
20323
+ /**
20324
+ * Gets or sets the queryable sellable item ids.
20325
+ */
20326
+ sellableItemIds?: Array<string>;
19944
20327
  /**
19945
20328
  * Gets or sets the queryable programme id.
19946
20329
  */
@@ -19999,7 +20382,7 @@ declare class ImagesService {
19999
20382
  * @returns Image OK
20000
20383
  * @throws ApiError
20001
20384
  */
20002
- getListWithoutReferences({ venueId, venueIds, facilityId, facilityIds, sessionId, sessionIds, courseId, courseIds, programmeId, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
20385
+ getListWithoutReferences({ venueId, venueIds, facilityId, facilityIds, sessionId, sessionIds, courseId, courseIds, sellableItemIds, programmeId, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
20003
20386
  /**
20004
20387
  * Gets or sets the queryable venue id.
20005
20388
  */
@@ -20032,6 +20415,10 @@ declare class ImagesService {
20032
20415
  * Gets or sets the queryable course ids.
20033
20416
  */
20034
20417
  courseIds?: Array<string>;
20418
+ /**
20419
+ * Gets or sets the queryable sellable item ids.
20420
+ */
20421
+ sellableItemIds?: Array<string>;
20035
20422
  /**
20036
20423
  * Gets or sets the queryable programme id.
20037
20424
  */
@@ -20090,7 +20477,7 @@ declare class ImagesService {
20090
20477
  * @returns Image OK
20091
20478
  * @throws ApiError
20092
20479
  */
20093
- getListIdName({ venueId, venueIds, facilityId, facilityIds, sessionId, sessionIds, courseId, courseIds, programmeId, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
20480
+ getListIdName({ venueId, venueIds, facilityId, facilityIds, sessionId, sessionIds, courseId, courseIds, sellableItemIds, programmeId, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
20094
20481
  /**
20095
20482
  * Gets or sets the queryable venue id.
20096
20483
  */
@@ -20123,6 +20510,10 @@ declare class ImagesService {
20123
20510
  * Gets or sets the queryable course ids.
20124
20511
  */
20125
20512
  courseIds?: Array<string>;
20513
+ /**
20514
+ * Gets or sets the queryable sellable item ids.
20515
+ */
20516
+ sellableItemIds?: Array<string>;
20126
20517
  /**
20127
20518
  * Gets or sets the queryable programme id.
20128
20519
  */
@@ -22519,6 +22910,10 @@ type OrderPatchItem = {
22519
22910
  * Gets or sets the course id.
22520
22911
  */
22521
22912
  courseId?: string | null;
22913
+ /**
22914
+ * Gets or sets the sellable item id.
22915
+ */
22916
+ sellableItemId?: string | null;
22522
22917
  /**
22523
22918
  * Gets or sets the offer id.
22524
22919
  */
@@ -25460,6 +25855,10 @@ type OfferPatch = {
25460
25855
  * Gets or sets the course id.
25461
25856
  */
25462
25857
  courseId?: string | null;
25858
+ /**
25859
+ * Gets or sets the sellable item id.
25860
+ */
25861
+ sellableItemId?: string | null;
25463
25862
  /**
25464
25863
  * Gets or sets the survey id.
25465
25864
  */
@@ -25506,6 +25905,10 @@ type OfferPost = {
25506
25905
  * Gets or sets the course id.
25507
25906
  */
25508
25907
  courseId?: string | null;
25908
+ /**
25909
+ * Gets or sets the sellable item id.
25910
+ */
25911
+ sellableItemId?: string | null;
25509
25912
  /**
25510
25913
  * Gets or sets the survey id.
25511
25914
  */
@@ -25607,7 +26010,7 @@ declare class OffersService {
25607
26010
  * @returns OfferPage OK
25608
26011
  * @throws ApiError
25609
26012
  */
25610
- getPage({ ids, facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
26013
+ getPage({ ids, facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, sellableItemId, sellableItemIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
25611
26014
  /**
25612
26015
  * Gets or sets the queryable ids.
25613
26016
  */
@@ -25644,6 +26047,14 @@ declare class OffersService {
25644
26047
  * Gets or sets the queryable course ids.
25645
26048
  */
25646
26049
  courseIds?: Array<string>;
26050
+ /**
26051
+ * Gets or sets the queryable sellable item id.
26052
+ */
26053
+ sellableItemId?: string;
26054
+ /**
26055
+ * Gets or sets the queryable sellable item ids.
26056
+ */
26057
+ sellableItemIds?: Array<string>;
25647
26058
  /**
25648
26059
  * Gets or sets the queryable slot offer slot id.
25649
26060
  */
@@ -25747,7 +26158,7 @@ declare class OffersService {
25747
26158
  * @returns boolean OK
25748
26159
  * @throws ApiError
25749
26160
  */
25750
- exists({ ids, facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
26161
+ exists({ ids, facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, sellableItemId, sellableItemIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
25751
26162
  /**
25752
26163
  * Gets or sets the queryable ids.
25753
26164
  */
@@ -25784,6 +26195,14 @@ declare class OffersService {
25784
26195
  * Gets or sets the queryable course ids.
25785
26196
  */
25786
26197
  courseIds?: Array<string>;
26198
+ /**
26199
+ * Gets or sets the queryable sellable item id.
26200
+ */
26201
+ sellableItemId?: string;
26202
+ /**
26203
+ * Gets or sets the queryable sellable item ids.
26204
+ */
26205
+ sellableItemIds?: Array<string>;
25787
26206
  /**
25788
26207
  * Gets or sets the queryable slot offer slot id.
25789
26208
  */
@@ -25854,7 +26273,7 @@ declare class OffersService {
25854
26273
  * @returns number OK
25855
26274
  * @throws ApiError
25856
26275
  */
25857
- count({ ids, facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
26276
+ count({ ids, facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, sellableItemId, sellableItemIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
25858
26277
  /**
25859
26278
  * Gets or sets the queryable ids.
25860
26279
  */
@@ -25891,6 +26310,14 @@ declare class OffersService {
25891
26310
  * Gets or sets the queryable course ids.
25892
26311
  */
25893
26312
  courseIds?: Array<string>;
26313
+ /**
26314
+ * Gets or sets the queryable sellable item id.
26315
+ */
26316
+ sellableItemId?: string;
26317
+ /**
26318
+ * Gets or sets the queryable sellable item ids.
26319
+ */
26320
+ sellableItemIds?: Array<string>;
25894
26321
  /**
25895
26322
  * Gets or sets the queryable slot offer slot id.
25896
26323
  */
@@ -25961,7 +26388,7 @@ declare class OffersService {
25961
26388
  * @returns Offer OK
25962
26389
  * @throws ApiError
25963
26390
  */
25964
- getListWithoutReferences({ ids, facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
26391
+ getListWithoutReferences({ ids, facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, sellableItemId, sellableItemIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
25965
26392
  /**
25966
26393
  * Gets or sets the queryable ids.
25967
26394
  */
@@ -25998,6 +26425,14 @@ declare class OffersService {
25998
26425
  * Gets or sets the queryable course ids.
25999
26426
  */
26000
26427
  courseIds?: Array<string>;
26428
+ /**
26429
+ * Gets or sets the queryable sellable item id.
26430
+ */
26431
+ sellableItemId?: string;
26432
+ /**
26433
+ * Gets or sets the queryable sellable item ids.
26434
+ */
26435
+ sellableItemIds?: Array<string>;
26001
26436
  /**
26002
26437
  * Gets or sets the queryable slot offer slot id.
26003
26438
  */
@@ -26068,7 +26503,7 @@ declare class OffersService {
26068
26503
  * @returns Offer OK
26069
26504
  * @throws ApiError
26070
26505
  */
26071
- getListIdName({ ids, facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
26506
+ getListIdName({ ids, facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, sessionId, sessionIds, courseId, courseIds, sellableItemId, sellableItemIds, slotOfferSlotId, slotOfferSlotIds, active, priceTotalGte, priceTotalLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
26072
26507
  /**
26073
26508
  * Gets or sets the queryable ids.
26074
26509
  */
@@ -26105,6 +26540,14 @@ declare class OffersService {
26105
26540
  * Gets or sets the queryable course ids.
26106
26541
  */
26107
26542
  courseIds?: Array<string>;
26543
+ /**
26544
+ * Gets or sets the queryable sellable item id.
26545
+ */
26546
+ sellableItemId?: string;
26547
+ /**
26548
+ * Gets or sets the queryable sellable item ids.
26549
+ */
26550
+ sellableItemIds?: Array<string>;
26108
26551
  /**
26109
26552
  * Gets or sets the queryable slot offer slot id.
26110
26553
  */
@@ -28885,7 +29328,7 @@ declare class OrderItemsService {
28885
29328
  * @returns OrderItemPage OK
28886
29329
  * @throws ApiError
28887
29330
  */
28888
- getPage({ ids, orderId, scheduledSessionId, slotId, courseId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
29331
+ getPage({ ids, orderId, scheduledSessionId, slotId, courseId, sellableItemId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
28889
29332
  /**
28890
29333
  * Gets or sets the queryable order item ids.
28891
29334
  */
@@ -28906,6 +29349,10 @@ declare class OrderItemsService {
28906
29349
  * Gets or sets the queryable course id.
28907
29350
  */
28908
29351
  courseId?: string;
29352
+ /**
29353
+ * Gets or sets the queryable sellable item id.
29354
+ */
29355
+ sellableItemId?: string;
28909
29356
  /**
28910
29357
  * Gets or sets the queryable offer id.
28911
29358
  */
@@ -29017,7 +29464,7 @@ declare class OrderItemsService {
29017
29464
  * @returns boolean OK
29018
29465
  * @throws ApiError
29019
29466
  */
29020
- exists({ ids, orderId, scheduledSessionId, slotId, courseId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
29467
+ exists({ ids, orderId, scheduledSessionId, slotId, courseId, sellableItemId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
29021
29468
  /**
29022
29469
  * Gets or sets the queryable order item ids.
29023
29470
  */
@@ -29038,6 +29485,10 @@ declare class OrderItemsService {
29038
29485
  * Gets or sets the queryable course id.
29039
29486
  */
29040
29487
  courseId?: string;
29488
+ /**
29489
+ * Gets or sets the queryable sellable item id.
29490
+ */
29491
+ sellableItemId?: string;
29041
29492
  /**
29042
29493
  * Gets or sets the queryable offer id.
29043
29494
  */
@@ -29116,7 +29567,7 @@ declare class OrderItemsService {
29116
29567
  * @returns number OK
29117
29568
  * @throws ApiError
29118
29569
  */
29119
- count({ ids, orderId, scheduledSessionId, slotId, courseId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
29570
+ count({ ids, orderId, scheduledSessionId, slotId, courseId, sellableItemId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
29120
29571
  /**
29121
29572
  * Gets or sets the queryable order item ids.
29122
29573
  */
@@ -29137,6 +29588,10 @@ declare class OrderItemsService {
29137
29588
  * Gets or sets the queryable course id.
29138
29589
  */
29139
29590
  courseId?: string;
29591
+ /**
29592
+ * Gets or sets the queryable sellable item id.
29593
+ */
29594
+ sellableItemId?: string;
29140
29595
  /**
29141
29596
  * Gets or sets the queryable offer id.
29142
29597
  */
@@ -29215,7 +29670,7 @@ declare class OrderItemsService {
29215
29670
  * @returns OrderItem OK
29216
29671
  * @throws ApiError
29217
29672
  */
29218
- getListWithoutReferences({ ids, orderId, scheduledSessionId, slotId, courseId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
29673
+ getListWithoutReferences({ ids, orderId, scheduledSessionId, slotId, courseId, sellableItemId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
29219
29674
  /**
29220
29675
  * Gets or sets the queryable order item ids.
29221
29676
  */
@@ -29236,6 +29691,10 @@ declare class OrderItemsService {
29236
29691
  * Gets or sets the queryable course id.
29237
29692
  */
29238
29693
  courseId?: string;
29694
+ /**
29695
+ * Gets or sets the queryable sellable item id.
29696
+ */
29697
+ sellableItemId?: string;
29239
29698
  /**
29240
29699
  * Gets or sets the queryable offer id.
29241
29700
  */
@@ -29314,7 +29773,7 @@ declare class OrderItemsService {
29314
29773
  * @returns OrderItem OK
29315
29774
  * @throws ApiError
29316
29775
  */
29317
- getListIdName({ ids, orderId, scheduledSessionId, slotId, courseId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
29776
+ getListIdName({ ids, orderId, scheduledSessionId, slotId, courseId, sellableItemId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
29318
29777
  /**
29319
29778
  * Gets or sets the queryable order item ids.
29320
29779
  */
@@ -29335,6 +29794,10 @@ declare class OrderItemsService {
29335
29794
  * Gets or sets the queryable course id.
29336
29795
  */
29337
29796
  courseId?: string;
29797
+ /**
29798
+ * Gets or sets the queryable sellable item id.
29799
+ */
29800
+ sellableItemId?: string;
29338
29801
  /**
29339
29802
  * Gets or sets the queryable offer id.
29340
29803
  */
@@ -35163,7 +35626,7 @@ declare class PublicCoursesService {
35163
35626
  * @returns CoursePage OK
35164
35627
  * @throws ApiError
35165
35628
  */
35166
- getPage({ xTenantSubdomain, id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
35629
+ getPage({ xTenantSubdomain, id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, additionalSupport, timeOfDay, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
35167
35630
  xTenantSubdomain?: string;
35168
35631
  /**
35169
35632
  * Gets or sets the queryable Course Id.
@@ -35293,6 +35756,10 @@ declare class PublicCoursesService {
35293
35756
  * Gets or sets AdditionalSupport.
35294
35757
  */
35295
35758
  additionalSupport?: Array<string>;
35759
+ /**
35760
+ * Gets or sets time-of-day bucket (morning, afternoon, evening) for course session start times.
35761
+ */
35762
+ timeOfDay?: string;
35296
35763
  /**
35297
35764
  * Gets or sets Activity id.
35298
35765
  */
@@ -35430,7 +35897,7 @@ declare class PublicCoursesService {
35430
35897
  * @returns boolean OK
35431
35898
  * @throws ApiError
35432
35899
  */
35433
- exists({ xTenantSubdomain, id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
35900
+ exists({ xTenantSubdomain, id, ids, venueId, programmeId, providerId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, _private, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, additionalSupport, timeOfDay, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
35434
35901
  /**
35435
35902
  * The tenants subdomain.
35436
35903
  */
@@ -35563,6 +36030,10 @@ declare class PublicCoursesService {
35563
36030
  * Gets or sets AdditionalSupport.
35564
36031
  */
35565
36032
  additionalSupport?: Array<string>;
36033
+ /**
36034
+ * Gets or sets time-of-day bucket (morning, afternoon, evening) for course session start times.
36035
+ */
36036
+ timeOfDay?: string;
35566
36037
  /**
35567
36038
  * Gets or sets Activity id.
35568
36039
  */
@@ -38401,7 +38872,7 @@ declare class PublicOrderItemsService {
38401
38872
  * @returns OrderItemPage OK
38402
38873
  * @throws ApiError
38403
38874
  */
38404
- getPage({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38875
+ getPage({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, sellableItemId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38405
38876
  xTenantSubdomain?: string;
38406
38877
  /**
38407
38878
  * Gets or sets the queryable order item ids.
@@ -38424,217 +38895,225 @@ declare class PublicOrderItemsService {
38424
38895
  */
38425
38896
  courseId?: string;
38426
38897
  /**
38427
- * Gets or sets the queryable offer id.
38428
- */
38429
- offerId?: string;
38430
- /**
38431
- * Gets or sets the queryable order item status id.
38432
- */
38433
- status?: OrderItemStatus;
38434
- /**
38435
- * Gets or sets the queryable order statuses.
38436
- */
38437
- statuses?: Array<OrderItemStatus>;
38438
- /**
38439
- * Gets or sets the queryable parent order item id id.
38898
+ * Gets or sets the queryable sellable item id.
38440
38899
  */
38441
- parentOrderItemId?: string;
38442
- /**
38443
- * Gets or sets the queryable event timing.
38444
- */
38445
- eventTiming?: EventTiming;
38446
- /**
38447
- * Gets or sets the end user identity Id for use in a query search.
38448
- */
38449
- endUserIdentityId?: string;
38450
- /**
38451
- * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
38452
- */
38453
- dashboardRequest?: boolean;
38454
- /**
38455
- * Gets or sets the page number for paged queries.
38456
- */
38457
- pageNumber?: number;
38458
- /**
38459
- * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
38460
- */
38461
- take?: number;
38462
- /**
38463
- * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
38464
- */
38465
- skip?: number;
38466
- /**
38467
- * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
38468
- */
38469
- limitListRequests?: boolean;
38470
- /**
38471
- * Gets or sets the Tenant Id.
38472
- */
38473
- tenantId?: string;
38474
- /**
38475
- * Gets or sets the Modifed By Id.
38476
- */
38477
- modifiedById?: string;
38478
- /**
38479
- * Gets or sets the Modifed By Ids.
38480
- */
38481
- modifiedByIds?: Array<string>;
38482
- /**
38483
- * Gets or sets the Date Created greater than equal to.
38484
- */
38485
- dateCreatedGte?: string;
38486
- /**
38487
- * Gets or sets the Date Created less than equal to.
38488
- */
38489
- dateCreatedLte?: string;
38490
- /**
38491
- * Gets or sets the queryable only is live status.
38492
- */
38493
- isLive?: boolean;
38494
- /**
38495
- * Gets or sets the sort order direction.
38496
- */
38497
- sortOrderDirection?: SearchSortOrderDirection;
38498
- }): CancelablePromise<OrderItemPage>;
38499
- /**
38500
- * Deletes the resource.
38501
- * @returns any OK
38502
- * @throws ApiError
38503
- */
38504
- deleteByObject({ xTenantSubdomain, requestBody, }: {
38505
- /**
38506
- * The tenants subdomain.
38507
- */
38508
- xTenantSubdomain?: string;
38509
- /**
38510
- * The <typeparamref name="TObject" /> model.
38511
- */
38512
- requestBody?: OrderItem;
38513
- }): CancelablePromise<any>;
38514
- /**
38515
- * Reschedules the order item to another scheduled session.
38516
- * @returns OrderItem OK
38517
- * @throws ApiError
38518
- */
38519
- reschedule({ orderItemId, scheduledSessionId, xTenantSubdomain, }: {
38520
- /**
38521
- * The current register the attendee is assigned to.
38522
- */
38523
- orderItemId: string;
38524
- /**
38525
- * The scheduled session the attendee needs to be moved to.
38526
- */
38527
- scheduledSessionId: string;
38528
- /**
38529
- * The tenants subdomain.
38530
- */
38531
- xTenantSubdomain?: string;
38532
- }): CancelablePromise<OrderItem>;
38533
- /**
38534
- * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
38535
- * @returns OrderItem OK
38536
- * @throws ApiError
38537
- */
38538
- post({ xTenantSubdomain, requestBody, }: {
38539
- /**
38540
- * The tenants subdomain.
38541
- */
38542
- xTenantSubdomain?: string;
38543
- /**
38544
- * The <typeparamref name="TObject" /> model.
38545
- */
38546
- requestBody?: OrderItemPost;
38547
- }): CancelablePromise<OrderItem>;
38548
- /**
38549
- * Patches the resource.
38550
- * @returns OrderItem OK
38551
- * @throws ApiError
38552
- */
38553
- patch({ xTenantSubdomain, requestBody, }: {
38554
- /**
38555
- * The tenants subdomain.
38556
- */
38557
- xTenantSubdomain?: string;
38558
- /**
38559
- * The <typeparamref name="TObject" /> model.
38560
- */
38561
- requestBody?: OrderItemPatch;
38562
- }): CancelablePromise<OrderItem>;
38563
- /**
38564
- * Inserts a list of resources.
38565
- * @returns OrderItem OK
38566
- * @throws ApiError
38567
- */
38568
- postList({ xTenantSubdomain, requestBody, }: {
38569
- /**
38570
- * The tenants subdomain.
38571
- */
38572
- xTenantSubdomain?: string;
38573
- /**
38574
- * The list of <typeparamref name="TObject" />.
38575
- */
38576
- requestBody?: Array<OrderItemPost>;
38577
- }): CancelablePromise<Array<OrderItem>>;
38578
- /**
38579
- * Deletes the resource.
38580
- * @returns any OK
38581
- * @throws ApiError
38582
- */
38583
- deleteById({ id, xTenantSubdomain, }: {
38584
- /**
38585
- * The <typeparamref name="TObject" /> id.
38586
- */
38587
- id: string;
38588
- /**
38589
- * The tenants subdomain.
38590
- */
38591
- xTenantSubdomain?: string;
38592
- }): CancelablePromise<any>;
38593
- /**
38594
- * Gets the resource by its Id.
38595
- * @returns OrderItem OK
38596
- * @throws ApiError
38597
- */
38598
- getObject({ id, xTenantSubdomain, }: {
38599
- /**
38600
- * The <typeparamref name="TObject" /> id.
38601
- */
38602
- id: string;
38603
- /**
38604
- * The tenants subdomain.
38605
- */
38606
- xTenantSubdomain?: string;
38607
- }): CancelablePromise<OrderItem>;
38608
- /**
38609
- * Returns a value indicating whether the resource exists in the database given the provided search params.
38610
- * @returns boolean OK
38611
- * @throws ApiError
38612
- */
38613
- exists({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38614
- /**
38615
- * The tenants subdomain.
38616
- */
38617
- xTenantSubdomain?: string;
38618
- /**
38619
- * Gets or sets the queryable order item ids.
38620
- */
38621
- ids?: Array<string>;
38622
- /**
38623
- * Gets or sets the queryable order id.
38624
- */
38625
- orderId?: string;
38626
- /**
38627
- * Gets or sets the queryable scheduled session id.
38628
- */
38629
- scheduledSessionId?: string;
38630
- /**
38631
- * Gets or sets the queryable slot id.
38632
- */
38633
- slotId?: string;
38634
- /**
38635
- * Gets or sets the queryable course id.
38636
- */
38637
- courseId?: string;
38900
+ sellableItemId?: string;
38901
+ /**
38902
+ * Gets or sets the queryable offer id.
38903
+ */
38904
+ offerId?: string;
38905
+ /**
38906
+ * Gets or sets the queryable order item status id.
38907
+ */
38908
+ status?: OrderItemStatus;
38909
+ /**
38910
+ * Gets or sets the queryable order statuses.
38911
+ */
38912
+ statuses?: Array<OrderItemStatus>;
38913
+ /**
38914
+ * Gets or sets the queryable parent order item id id.
38915
+ */
38916
+ parentOrderItemId?: string;
38917
+ /**
38918
+ * Gets or sets the queryable event timing.
38919
+ */
38920
+ eventTiming?: EventTiming;
38921
+ /**
38922
+ * Gets or sets the end user identity Id for use in a query search.
38923
+ */
38924
+ endUserIdentityId?: string;
38925
+ /**
38926
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
38927
+ */
38928
+ dashboardRequest?: boolean;
38929
+ /**
38930
+ * Gets or sets the page number for paged queries.
38931
+ */
38932
+ pageNumber?: number;
38933
+ /**
38934
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
38935
+ */
38936
+ take?: number;
38937
+ /**
38938
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
38939
+ */
38940
+ skip?: number;
38941
+ /**
38942
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
38943
+ */
38944
+ limitListRequests?: boolean;
38945
+ /**
38946
+ * Gets or sets the Tenant Id.
38947
+ */
38948
+ tenantId?: string;
38949
+ /**
38950
+ * Gets or sets the Modifed By Id.
38951
+ */
38952
+ modifiedById?: string;
38953
+ /**
38954
+ * Gets or sets the Modifed By Ids.
38955
+ */
38956
+ modifiedByIds?: Array<string>;
38957
+ /**
38958
+ * Gets or sets the Date Created greater than equal to.
38959
+ */
38960
+ dateCreatedGte?: string;
38961
+ /**
38962
+ * Gets or sets the Date Created less than equal to.
38963
+ */
38964
+ dateCreatedLte?: string;
38965
+ /**
38966
+ * Gets or sets the queryable only is live status.
38967
+ */
38968
+ isLive?: boolean;
38969
+ /**
38970
+ * Gets or sets the sort order direction.
38971
+ */
38972
+ sortOrderDirection?: SearchSortOrderDirection;
38973
+ }): CancelablePromise<OrderItemPage>;
38974
+ /**
38975
+ * Deletes the resource.
38976
+ * @returns any OK
38977
+ * @throws ApiError
38978
+ */
38979
+ deleteByObject({ xTenantSubdomain, requestBody, }: {
38980
+ /**
38981
+ * The tenants subdomain.
38982
+ */
38983
+ xTenantSubdomain?: string;
38984
+ /**
38985
+ * The <typeparamref name="TObject" /> model.
38986
+ */
38987
+ requestBody?: OrderItem;
38988
+ }): CancelablePromise<any>;
38989
+ /**
38990
+ * Reschedules the order item to another scheduled session.
38991
+ * @returns OrderItem OK
38992
+ * @throws ApiError
38993
+ */
38994
+ reschedule({ orderItemId, scheduledSessionId, xTenantSubdomain, }: {
38995
+ /**
38996
+ * The current register the attendee is assigned to.
38997
+ */
38998
+ orderItemId: string;
38999
+ /**
39000
+ * The scheduled session the attendee needs to be moved to.
39001
+ */
39002
+ scheduledSessionId: string;
39003
+ /**
39004
+ * The tenants subdomain.
39005
+ */
39006
+ xTenantSubdomain?: string;
39007
+ }): CancelablePromise<OrderItem>;
39008
+ /**
39009
+ * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
39010
+ * @returns OrderItem OK
39011
+ * @throws ApiError
39012
+ */
39013
+ post({ xTenantSubdomain, requestBody, }: {
39014
+ /**
39015
+ * The tenants subdomain.
39016
+ */
39017
+ xTenantSubdomain?: string;
39018
+ /**
39019
+ * The <typeparamref name="TObject" /> model.
39020
+ */
39021
+ requestBody?: OrderItemPost;
39022
+ }): CancelablePromise<OrderItem>;
39023
+ /**
39024
+ * Patches the resource.
39025
+ * @returns OrderItem OK
39026
+ * @throws ApiError
39027
+ */
39028
+ patch({ xTenantSubdomain, requestBody, }: {
39029
+ /**
39030
+ * The tenants subdomain.
39031
+ */
39032
+ xTenantSubdomain?: string;
39033
+ /**
39034
+ * The <typeparamref name="TObject" /> model.
39035
+ */
39036
+ requestBody?: OrderItemPatch;
39037
+ }): CancelablePromise<OrderItem>;
39038
+ /**
39039
+ * Inserts a list of resources.
39040
+ * @returns OrderItem OK
39041
+ * @throws ApiError
39042
+ */
39043
+ postList({ xTenantSubdomain, requestBody, }: {
39044
+ /**
39045
+ * The tenants subdomain.
39046
+ */
39047
+ xTenantSubdomain?: string;
39048
+ /**
39049
+ * The list of <typeparamref name="TObject" />.
39050
+ */
39051
+ requestBody?: Array<OrderItemPost>;
39052
+ }): CancelablePromise<Array<OrderItem>>;
39053
+ /**
39054
+ * Deletes the resource.
39055
+ * @returns any OK
39056
+ * @throws ApiError
39057
+ */
39058
+ deleteById({ id, xTenantSubdomain, }: {
39059
+ /**
39060
+ * The <typeparamref name="TObject" /> id.
39061
+ */
39062
+ id: string;
39063
+ /**
39064
+ * The tenants subdomain.
39065
+ */
39066
+ xTenantSubdomain?: string;
39067
+ }): CancelablePromise<any>;
39068
+ /**
39069
+ * Gets the resource by its Id.
39070
+ * @returns OrderItem OK
39071
+ * @throws ApiError
39072
+ */
39073
+ getObject({ id, xTenantSubdomain, }: {
39074
+ /**
39075
+ * The <typeparamref name="TObject" /> id.
39076
+ */
39077
+ id: string;
39078
+ /**
39079
+ * The tenants subdomain.
39080
+ */
39081
+ xTenantSubdomain?: string;
39082
+ }): CancelablePromise<OrderItem>;
39083
+ /**
39084
+ * Returns a value indicating whether the resource exists in the database given the provided search params.
39085
+ * @returns boolean OK
39086
+ * @throws ApiError
39087
+ */
39088
+ exists({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, sellableItemId, offerId, status, statuses, parentOrderItemId, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
39089
+ /**
39090
+ * The tenants subdomain.
39091
+ */
39092
+ xTenantSubdomain?: string;
39093
+ /**
39094
+ * Gets or sets the queryable order item ids.
39095
+ */
39096
+ ids?: Array<string>;
39097
+ /**
39098
+ * Gets or sets the queryable order id.
39099
+ */
39100
+ orderId?: string;
39101
+ /**
39102
+ * Gets or sets the queryable scheduled session id.
39103
+ */
39104
+ scheduledSessionId?: string;
39105
+ /**
39106
+ * Gets or sets the queryable slot id.
39107
+ */
39108
+ slotId?: string;
39109
+ /**
39110
+ * Gets or sets the queryable course id.
39111
+ */
39112
+ courseId?: string;
39113
+ /**
39114
+ * Gets or sets the queryable sellable item id.
39115
+ */
39116
+ sellableItemId?: string;
38638
39117
  /**
38639
39118
  * Gets or sets the queryable offer id.
38640
39119
  */
@@ -40589,10 +41068,15 @@ declare class PublicScheduledSessionsService {
40589
41068
  }): CancelablePromise<boolean>;
40590
41069
  }
40591
41070
 
41071
+ type SellableItemPage = {
41072
+ pagination: Pagination;
41073
+ readonly items: Array<SellableItem>;
41074
+ };
41075
+
40592
41076
  /**
40593
- * Patch model for session updates.
41077
+ * Patch model for sellable item updates.
40594
41078
  */
40595
- type SessionPatch = {
41079
+ type SellableItemPatch = {
40596
41080
  /**
40597
41081
  * Gets or sets the tenant Id.
40598
41082
  */
@@ -40602,61 +41086,57 @@ type SessionPatch = {
40602
41086
  */
40603
41087
  id: string;
40604
41088
  /**
40605
- * Gets or sets the session provider id.
40606
- */
40607
- providerId?: string | null;
40608
- /**
40609
- * Gets or sets the venue id for the activity.
41089
+ * Gets or sets the venue id.
40610
41090
  */
40611
- venueId: string;
41091
+ venueId?: string | null;
40612
41092
  /**
40613
- * Gets or sets the Activity Id.
41093
+ * Gets or sets the activity category id.
40614
41094
  */
40615
- activityId: number;
41095
+ activityId?: number | null;
40616
41096
  /**
40617
- * Gets or sets the Programme Id.
41097
+ * Gets or sets the name.
40618
41098
  */
40619
- programmeId?: string | null;
41099
+ name?: string | null;
40620
41100
  /**
40621
- * Gets or sets the post completion survey Id.
41101
+ * Gets or sets the description.
40622
41102
  */
40623
- postCompletionSurveyId?: string | null;
41103
+ description?: string | null;
40624
41104
  /**
40625
- * Gets or sets the survey Id.
41105
+ * Gets or sets the image url.
40626
41106
  */
40627
- surveyId?: string | null;
41107
+ imageUrl?: string | null;
40628
41108
  /**
40629
- * Gets or sets the cancellation policy id.
41109
+ * Gets or sets a value indicating whether the item is bookable on the web.
40630
41110
  */
40631
- cancellationPolicyId?: string;
41111
+ online?: boolean | null;
40632
41112
  /**
40633
- * Gets or sets the payment policy id.
41113
+ * Gets or sets remaining stock.
40634
41114
  */
40635
- paymentPolicyId?: string;
41115
+ stockQuantity?: number;
40636
41116
  /**
40637
- * Gets or sets the session name.
41117
+ * Gets or sets a value indicating whether the item is featured.
40638
41118
  */
40639
- name: string;
41119
+ featured?: boolean | null;
40640
41120
  /**
40641
- * Gets or sets the session description.
41121
+ * Gets or sets a value indicating whether the item is private.
40642
41122
  */
40643
- description?: string | null;
41123
+ private?: boolean | null;
40644
41124
  /**
40645
- * Gets or sets the session image url.
41125
+ * Gets or sets the checkout survey id.
40646
41126
  */
40647
- imageUrl?: string | null;
41127
+ surveyId?: string | null;
40648
41128
  /**
40649
- * Gets or sets the meeting instructions.
41129
+ * Gets or sets the post-completion survey id.
40650
41130
  */
40651
- meetingInstructions?: string | null;
41131
+ postCompletionSurveyId?: string | null;
40652
41132
  /**
40653
- * Gets or sets the session capacity.
41133
+ * Gets or sets the cancellation policy id.
40654
41134
  */
40655
- capacity: number;
41135
+ cancellationPolicyId?: string | null;
40656
41136
  /**
40657
- * Gets or sets a value indicating whether the session has unlimited capacity.
41137
+ * Gets or sets the payment policy id.
40658
41138
  */
40659
- capacityUnlimited?: boolean | null;
41139
+ paymentPolicyId?: string | null;
40660
41140
  gender?: Gender;
40661
41141
  /**
40662
41142
  * Gets or sets the min age.
@@ -40667,17 +41147,541 @@ type SessionPatch = {
40667
41147
  */
40668
41148
  maxAge?: number | null;
40669
41149
  /**
40670
- * Gets or sets a value indicating whether there is an age restriction.
41150
+ * Gets or sets a value indicating whether there is no age restriction.
40671
41151
  */
40672
41152
  noAgeRestriction?: boolean | null;
40673
- /**
40674
- * Gets or sets a value indicating whether session is private or no.
40675
- */
40676
- private?: boolean | null;
40677
- /**
40678
- * Gets or sets a value indicating whether the session is online and can take bookings.
40679
- */
40680
- online?: boolean | null;
41153
+ /**
41154
+ * Gets or sets additional support options.
41155
+ */
41156
+ additionalSupport?: Array<string> | null;
41157
+ /**
41158
+ * Gets or sets the contact name.
41159
+ */
41160
+ contactName?: string | null;
41161
+ /**
41162
+ * Gets or sets the contact phone.
41163
+ */
41164
+ contactPhone?: string | null;
41165
+ /**
41166
+ * Gets or sets the contact email.
41167
+ */
41168
+ contactEmail?: string | null;
41169
+ /**
41170
+ * Gets or sets the admin contact name.
41171
+ */
41172
+ adminContactName?: string | null;
41173
+ /**
41174
+ * Gets or sets the admin contact phone.
41175
+ */
41176
+ adminContactPhone?: string | null;
41177
+ /**
41178
+ * Gets or sets the admin contact email.
41179
+ */
41180
+ adminContactEmail?: string | null;
41181
+ /**
41182
+ * Gets or sets a value indicating whether to send reminder emails.
41183
+ */
41184
+ sendReminder?: boolean | null;
41185
+ /**
41186
+ * Gets or sets the reminder hours before start.
41187
+ */
41188
+ reminderHoursBeforeStart?: number | null;
41189
+ checkoutPlatform?: CheckoutPlatform;
41190
+ /**
41191
+ * Gets or sets the booking link override.
41192
+ */
41193
+ bookingLinkOverride?: string | null;
41194
+ /**
41195
+ * Gets or sets a value indicating whether pre-registration is enabled.
41196
+ */
41197
+ preRegistrationEnabled?: boolean | null;
41198
+ /**
41199
+ * Gets or sets when pre-registration opens.
41200
+ */
41201
+ preRegistrationOpensAt?: string | null;
41202
+ /**
41203
+ * Gets or sets when pre-registration closes.
41204
+ */
41205
+ preRegistrationClosesAt?: string | null;
41206
+ /**
41207
+ * Gets or sets the pre-registration message.
41208
+ */
41209
+ preRegistrationMessage?: string | null;
41210
+ emailSettings?: UpdateEmailSettings;
41211
+ /**
41212
+ * Gets or sets ticket types / offers for this item.
41213
+ */
41214
+ offers?: Array<UpdateOffer> | null;
41215
+ };
41216
+
41217
+ /**
41218
+ * Post model for sellable item inserts.
41219
+ */
41220
+ type SellableItemPost = {
41221
+ /**
41222
+ * Gets or sets the tenant Id.
41223
+ */
41224
+ tenantId: string;
41225
+ /**
41226
+ * Gets or sets the provider id.
41227
+ */
41228
+ providerId?: string | null;
41229
+ /**
41230
+ * Gets or sets the venue id.
41231
+ */
41232
+ venueId?: string | null;
41233
+ /**
41234
+ * Gets or sets the activity category id.
41235
+ */
41236
+ activityId?: number | null;
41237
+ /**
41238
+ * Gets or sets the name.
41239
+ */
41240
+ name?: string | null;
41241
+ /**
41242
+ * Gets or sets the description.
41243
+ */
41244
+ description?: string | null;
41245
+ /**
41246
+ * Gets or sets the image url.
41247
+ */
41248
+ imageUrl?: string | null;
41249
+ /**
41250
+ * Gets or sets a value indicating whether the item is bookable on the web.
41251
+ */
41252
+ online?: boolean | null;
41253
+ /**
41254
+ * Gets or sets remaining stock.
41255
+ */
41256
+ stockQuantity?: number;
41257
+ /**
41258
+ * Gets or sets a value indicating whether the item is featured.
41259
+ */
41260
+ featured?: boolean | null;
41261
+ /**
41262
+ * Gets or sets a value indicating whether the item is private.
41263
+ */
41264
+ private?: boolean | null;
41265
+ /**
41266
+ * Gets or sets the checkout survey id.
41267
+ */
41268
+ surveyId?: string | null;
41269
+ /**
41270
+ * Gets or sets the post-completion survey id.
41271
+ */
41272
+ postCompletionSurveyId?: string | null;
41273
+ /**
41274
+ * Gets or sets the cancellation policy id.
41275
+ */
41276
+ cancellationPolicyId?: string | null;
41277
+ /**
41278
+ * Gets or sets the payment policy id.
41279
+ */
41280
+ paymentPolicyId?: string | null;
41281
+ gender?: Gender;
41282
+ /**
41283
+ * Gets or sets the min age.
41284
+ */
41285
+ minAge?: number | null;
41286
+ /**
41287
+ * Gets or sets the max age.
41288
+ */
41289
+ maxAge?: number | null;
41290
+ /**
41291
+ * Gets or sets a value indicating whether there is no age restriction.
41292
+ */
41293
+ noAgeRestriction?: boolean | null;
41294
+ /**
41295
+ * Gets or sets additional support options.
41296
+ */
41297
+ additionalSupport?: Array<string> | null;
41298
+ /**
41299
+ * Gets or sets the contact name.
41300
+ */
41301
+ contactName?: string | null;
41302
+ /**
41303
+ * Gets or sets the contact phone.
41304
+ */
41305
+ contactPhone?: string | null;
41306
+ /**
41307
+ * Gets or sets the contact email.
41308
+ */
41309
+ contactEmail?: string | null;
41310
+ /**
41311
+ * Gets or sets the admin contact name.
41312
+ */
41313
+ adminContactName?: string | null;
41314
+ /**
41315
+ * Gets or sets the admin contact phone.
41316
+ */
41317
+ adminContactPhone?: string | null;
41318
+ /**
41319
+ * Gets or sets the admin contact email.
41320
+ */
41321
+ adminContactEmail?: string | null;
41322
+ /**
41323
+ * Gets or sets a value indicating whether to send reminder emails.
41324
+ */
41325
+ sendReminder?: boolean | null;
41326
+ /**
41327
+ * Gets or sets the reminder hours before start.
41328
+ */
41329
+ reminderHoursBeforeStart?: number | null;
41330
+ checkoutPlatform?: CheckoutPlatform;
41331
+ /**
41332
+ * Gets or sets the booking link override.
41333
+ */
41334
+ bookingLinkOverride?: string | null;
41335
+ /**
41336
+ * Gets or sets a value indicating whether pre-registration is enabled.
41337
+ */
41338
+ preRegistrationEnabled?: boolean | null;
41339
+ /**
41340
+ * Gets or sets when pre-registration opens.
41341
+ */
41342
+ preRegistrationOpensAt?: string | null;
41343
+ /**
41344
+ * Gets or sets when pre-registration closes.
41345
+ */
41346
+ preRegistrationClosesAt?: string | null;
41347
+ /**
41348
+ * Gets or sets the pre-registration message.
41349
+ */
41350
+ preRegistrationMessage?: string | null;
41351
+ emailSettings?: UpdateEmailSettings;
41352
+ };
41353
+
41354
+ declare class PublicSellableItemsService {
41355
+ readonly httpRequest: BaseHttpRequest;
41356
+ constructor(httpRequest: BaseHttpRequest);
41357
+ /**
41358
+ * @returns SellableItem OK
41359
+ * @throws ApiError
41360
+ */
41361
+ getObject({ id, xTenantSubdomain, }: {
41362
+ id: string;
41363
+ xTenantSubdomain?: string;
41364
+ }): CancelablePromise<SellableItem>;
41365
+ /**
41366
+ * Deletes the resource.
41367
+ * @returns any OK
41368
+ * @throws ApiError
41369
+ */
41370
+ deleteById({ id, xTenantSubdomain, }: {
41371
+ /**
41372
+ * The <typeparamref name="TObject" /> id.
41373
+ */
41374
+ id: string;
41375
+ /**
41376
+ * The tenants subdomain.
41377
+ */
41378
+ xTenantSubdomain?: string;
41379
+ }): CancelablePromise<any>;
41380
+ /**
41381
+ * @returns SellableItemPage OK
41382
+ * @throws ApiError
41383
+ */
41384
+ getPage({ xTenantSubdomain, ids, venueId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
41385
+ xTenantSubdomain?: string;
41386
+ /**
41387
+ * Gets or sets the queryable ids.
41388
+ */
41389
+ ids?: Array<string>;
41390
+ /**
41391
+ * Gets or sets the queryable Venue Id.
41392
+ */
41393
+ venueId?: string;
41394
+ /**
41395
+ * Gets or sets a value indicating whether return online items.
41396
+ */
41397
+ online?: boolean;
41398
+ /**
41399
+ * Gets or sets a value indicating whether to include archived items.
41400
+ */
41401
+ archived?: boolean;
41402
+ /**
41403
+ * Gets or sets a value indicating whether to include deleted items.
41404
+ */
41405
+ deleted?: boolean;
41406
+ /**
41407
+ * Gets or sets a value indicating this is a request from the partner dashboard.
41408
+ */
41409
+ dashboardRequest?: boolean;
41410
+ /**
41411
+ * Gets or sets the page number for paged queries.
41412
+ */
41413
+ pageNumber?: number;
41414
+ /**
41415
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
41416
+ */
41417
+ take?: number;
41418
+ /**
41419
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
41420
+ */
41421
+ skip?: number;
41422
+ /**
41423
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
41424
+ */
41425
+ limitListRequests?: boolean;
41426
+ /**
41427
+ * Gets or sets the Tenant Id.
41428
+ */
41429
+ tenantId?: string;
41430
+ /**
41431
+ * Gets or sets the Modifed By Id.
41432
+ */
41433
+ modifiedById?: string;
41434
+ /**
41435
+ * Gets or sets the Modifed By Ids.
41436
+ */
41437
+ modifiedByIds?: Array<string>;
41438
+ /**
41439
+ * Gets or sets the Date Created greater than equal to.
41440
+ */
41441
+ dateCreatedGte?: string;
41442
+ /**
41443
+ * Gets or sets the Date Created less than equal to.
41444
+ */
41445
+ dateCreatedLte?: string;
41446
+ /**
41447
+ * Gets or sets the queryable only is live status.
41448
+ */
41449
+ isLive?: boolean;
41450
+ /**
41451
+ * Gets or sets the sort order direction.
41452
+ */
41453
+ sortOrderDirection?: SearchSortOrderDirection;
41454
+ }): CancelablePromise<SellableItemPage>;
41455
+ /**
41456
+ * Deletes the resource.
41457
+ * @returns any OK
41458
+ * @throws ApiError
41459
+ */
41460
+ deleteByObject({ xTenantSubdomain, requestBody, }: {
41461
+ /**
41462
+ * The tenants subdomain.
41463
+ */
41464
+ xTenantSubdomain?: string;
41465
+ /**
41466
+ * The <typeparamref name="TObject" /> model.
41467
+ */
41468
+ requestBody?: SellableItem;
41469
+ }): CancelablePromise<any>;
41470
+ /**
41471
+ * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
41472
+ * @returns SellableItem OK
41473
+ * @throws ApiError
41474
+ */
41475
+ post({ xTenantSubdomain, requestBody, }: {
41476
+ /**
41477
+ * The tenants subdomain.
41478
+ */
41479
+ xTenantSubdomain?: string;
41480
+ /**
41481
+ * The <typeparamref name="TObject" /> model.
41482
+ */
41483
+ requestBody?: SellableItemPost;
41484
+ }): CancelablePromise<SellableItem>;
41485
+ /**
41486
+ * Patches the resource.
41487
+ * @returns SellableItem OK
41488
+ * @throws ApiError
41489
+ */
41490
+ patch({ xTenantSubdomain, requestBody, }: {
41491
+ /**
41492
+ * The tenants subdomain.
41493
+ */
41494
+ xTenantSubdomain?: string;
41495
+ /**
41496
+ * The <typeparamref name="TObject" /> model.
41497
+ */
41498
+ requestBody?: SellableItemPatch;
41499
+ }): CancelablePromise<SellableItem>;
41500
+ /**
41501
+ * Inserts a list of resources.
41502
+ * @returns SellableItem OK
41503
+ * @throws ApiError
41504
+ */
41505
+ postList({ xTenantSubdomain, requestBody, }: {
41506
+ /**
41507
+ * The tenants subdomain.
41508
+ */
41509
+ xTenantSubdomain?: string;
41510
+ /**
41511
+ * The list of <typeparamref name="TObject" />.
41512
+ */
41513
+ requestBody?: Array<SellableItemPost>;
41514
+ }): CancelablePromise<Array<SellableItem>>;
41515
+ /**
41516
+ * Returns a value indicating whether the resource exists in the database given the provided search params.
41517
+ * @returns boolean OK
41518
+ * @throws ApiError
41519
+ */
41520
+ exists({ xTenantSubdomain, ids, venueId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
41521
+ /**
41522
+ * The tenants subdomain.
41523
+ */
41524
+ xTenantSubdomain?: string;
41525
+ /**
41526
+ * Gets or sets the queryable ids.
41527
+ */
41528
+ ids?: Array<string>;
41529
+ /**
41530
+ * Gets or sets the queryable Venue Id.
41531
+ */
41532
+ venueId?: string;
41533
+ /**
41534
+ * Gets or sets a value indicating whether return online items.
41535
+ */
41536
+ online?: boolean;
41537
+ /**
41538
+ * Gets or sets a value indicating whether to include archived items.
41539
+ */
41540
+ archived?: boolean;
41541
+ /**
41542
+ * Gets or sets a value indicating whether to include deleted items.
41543
+ */
41544
+ deleted?: boolean;
41545
+ /**
41546
+ * Gets or sets a value indicating this is a request from the partner dashboard.
41547
+ */
41548
+ dashboardRequest?: boolean;
41549
+ /**
41550
+ * Gets or sets the page number for paged queries.
41551
+ */
41552
+ pageNumber?: number;
41553
+ /**
41554
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
41555
+ */
41556
+ take?: number;
41557
+ /**
41558
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
41559
+ */
41560
+ skip?: number;
41561
+ /**
41562
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
41563
+ */
41564
+ limitListRequests?: boolean;
41565
+ /**
41566
+ * Gets or sets the Tenant Id.
41567
+ */
41568
+ tenantId?: string;
41569
+ /**
41570
+ * Gets or sets the Modifed By Id.
41571
+ */
41572
+ modifiedById?: string;
41573
+ /**
41574
+ * Gets or sets the Modifed By Ids.
41575
+ */
41576
+ modifiedByIds?: Array<string>;
41577
+ /**
41578
+ * Gets or sets the Date Created greater than equal to.
41579
+ */
41580
+ dateCreatedGte?: string;
41581
+ /**
41582
+ * Gets or sets the Date Created less than equal to.
41583
+ */
41584
+ dateCreatedLte?: string;
41585
+ /**
41586
+ * Gets or sets the queryable only is live status.
41587
+ */
41588
+ isLive?: boolean;
41589
+ /**
41590
+ * Gets or sets the sort order direction.
41591
+ */
41592
+ sortOrderDirection?: SearchSortOrderDirection;
41593
+ }): CancelablePromise<boolean>;
41594
+ }
41595
+
41596
+ /**
41597
+ * Patch model for session updates.
41598
+ */
41599
+ type SessionPatch = {
41600
+ /**
41601
+ * Gets or sets the tenant Id.
41602
+ */
41603
+ tenantId: string;
41604
+ /**
41605
+ * Gets or sets the Id.
41606
+ */
41607
+ id: string;
41608
+ /**
41609
+ * Gets or sets the session provider id.
41610
+ */
41611
+ providerId?: string | null;
41612
+ /**
41613
+ * Gets or sets the venue id for the activity.
41614
+ */
41615
+ venueId: string;
41616
+ /**
41617
+ * Gets or sets the Activity Id.
41618
+ */
41619
+ activityId: number;
41620
+ /**
41621
+ * Gets or sets the Programme Id.
41622
+ */
41623
+ programmeId?: string | null;
41624
+ /**
41625
+ * Gets or sets the post completion survey Id.
41626
+ */
41627
+ postCompletionSurveyId?: string | null;
41628
+ /**
41629
+ * Gets or sets the survey Id.
41630
+ */
41631
+ surveyId?: string | null;
41632
+ /**
41633
+ * Gets or sets the cancellation policy id.
41634
+ */
41635
+ cancellationPolicyId?: string;
41636
+ /**
41637
+ * Gets or sets the payment policy id.
41638
+ */
41639
+ paymentPolicyId?: string;
41640
+ /**
41641
+ * Gets or sets the session name.
41642
+ */
41643
+ name: string;
41644
+ /**
41645
+ * Gets or sets the session description.
41646
+ */
41647
+ description?: string | null;
41648
+ /**
41649
+ * Gets or sets the session image url.
41650
+ */
41651
+ imageUrl?: string | null;
41652
+ /**
41653
+ * Gets or sets the meeting instructions.
41654
+ */
41655
+ meetingInstructions?: string | null;
41656
+ /**
41657
+ * Gets or sets the session capacity.
41658
+ */
41659
+ capacity: number;
41660
+ /**
41661
+ * Gets or sets a value indicating whether the session has unlimited capacity.
41662
+ */
41663
+ capacityUnlimited?: boolean | null;
41664
+ gender?: Gender;
41665
+ /**
41666
+ * Gets or sets the min age.
41667
+ */
41668
+ minAge?: number | null;
41669
+ /**
41670
+ * Gets or sets the max age.
41671
+ */
41672
+ maxAge?: number | null;
41673
+ /**
41674
+ * Gets or sets a value indicating whether there is an age restriction.
41675
+ */
41676
+ noAgeRestriction?: boolean | null;
41677
+ /**
41678
+ * Gets or sets a value indicating whether session is private or no.
41679
+ */
41680
+ private?: boolean | null;
41681
+ /**
41682
+ * Gets or sets a value indicating whether the session is online and can take bookings.
41683
+ */
41684
+ online?: boolean | null;
40681
41685
  /**
40682
41686
  * Gets or sets additional support options.
40683
41687
  */
@@ -40731,6 +41735,22 @@ type SessionPatch = {
40731
41735
  * Gets or sets a value indicating whether the session is deleted and should be ignored under normal operation.
40732
41736
  */
40733
41737
  deleted?: boolean | null;
41738
+ /**
41739
+ * Gets or sets a value indicating whether pre-registration / waitlist is enabled for this session template.
41740
+ */
41741
+ preRegistrationEnabled?: boolean | null;
41742
+ /**
41743
+ * Gets or sets when pre-registration opens; null means no start boundary.
41744
+ */
41745
+ preRegistrationOpensAt?: string | null;
41746
+ /**
41747
+ * Gets or sets when pre-registration closes; null means no end boundary.
41748
+ */
41749
+ preRegistrationClosesAt?: string | null;
41750
+ /**
41751
+ * Gets or sets optional storefront message for pre-registration.
41752
+ */
41753
+ preRegistrationMessage?: string | null;
40734
41754
  emailSettings?: UpdateEmailSettings;
40735
41755
  /**
40736
41756
  * Gets or sets the session offers.
@@ -48319,144 +49339,664 @@ declare class ScheduledSessionsService {
48319
49339
  * Gets or sets the sort order direction.
48320
49340
  */
48321
49341
  sortOrderDirection?: SearchSortOrderDirection;
48322
- }): CancelablePromise<Array<ScheduledSession>>;
48323
- }
48324
-
48325
- type ScheduledSessionSchedulePage = {
48326
- pagination: Pagination;
48327
- readonly items: Array<ScheduledSessionSchedule>;
48328
- };
48329
-
48330
- /**
48331
- * Post model for scheduled session schedule updates.
48332
- */
48333
- type ScheduledSessionSchedulePatch = {
48334
- /**
48335
- * Gets or sets the tenant Id.
48336
- */
48337
- tenantId: string;
48338
- /**
48339
- * Gets or sets the Id.
48340
- */
48341
- id: string;
48342
- };
48343
-
48344
- /**
48345
- * Post model for scheduled session schedule inserts.
48346
- */
48347
- type ScheduledSessionSchedulePost = {
48348
- /**
48349
- * Gets or sets the tenant Id.
48350
- */
48351
- tenantId: string;
48352
- /**
48353
- * Gets or sets the session id.
48354
- */
48355
- sessionId: string;
48356
- /**
48357
- * Gets or sets the scheduled session start date time in UTC as is the applications required convention. (this datetime must always be UTC).
48358
- */
48359
- startDateTime: string;
48360
- /**
48361
- * Gets or sets the scheduled session duration.
48362
- */
48363
- durationMinutes: number;
48364
- /**
48365
- * Gets or sets the schedules evaluated rule string.
48366
- */
48367
- rRuleString: string;
48368
- /**
48369
- * Gets or sets the schedules end date.
48370
- */
48371
- recurUntil?: string | null;
48372
- /**
48373
- * Gets or sets a value indicating whether the schedule should recur indefinately.
48374
- */
48375
- recurIndefinately?: boolean | null;
48376
- /**
48377
- * Gets or sets the capacity.
48378
- */
48379
- capacity: number;
48380
- /**
48381
- * Gets or sets a value indicating whether the session has unlimited capacity.
48382
- */
48383
- capacityUnlimited: boolean;
49342
+ }): CancelablePromise<Array<ScheduledSession>>;
49343
+ }
49344
+
49345
+ type ScheduledSessionSchedulePage = {
49346
+ pagination: Pagination;
49347
+ readonly items: Array<ScheduledSessionSchedule>;
49348
+ };
49349
+
49350
+ /**
49351
+ * Post model for scheduled session schedule updates.
49352
+ */
49353
+ type ScheduledSessionSchedulePatch = {
49354
+ /**
49355
+ * Gets or sets the tenant Id.
49356
+ */
49357
+ tenantId: string;
49358
+ /**
49359
+ * Gets or sets the Id.
49360
+ */
49361
+ id: string;
49362
+ };
49363
+
49364
+ /**
49365
+ * Post model for scheduled session schedule inserts.
49366
+ */
49367
+ type ScheduledSessionSchedulePost = {
49368
+ /**
49369
+ * Gets or sets the tenant Id.
49370
+ */
49371
+ tenantId: string;
49372
+ /**
49373
+ * Gets or sets the session id.
49374
+ */
49375
+ sessionId: string;
49376
+ /**
49377
+ * Gets or sets the scheduled session start date time in UTC as is the applications required convention. (this datetime must always be UTC).
49378
+ */
49379
+ startDateTime: string;
49380
+ /**
49381
+ * Gets or sets the scheduled session duration.
49382
+ */
49383
+ durationMinutes: number;
49384
+ /**
49385
+ * Gets or sets the schedules evaluated rule string.
49386
+ */
49387
+ rRuleString: string;
49388
+ /**
49389
+ * Gets or sets the schedules end date.
49390
+ */
49391
+ recurUntil?: string | null;
49392
+ /**
49393
+ * Gets or sets a value indicating whether the schedule should recur indefinately.
49394
+ */
49395
+ recurIndefinately?: boolean | null;
49396
+ /**
49397
+ * Gets or sets the capacity.
49398
+ */
49399
+ capacity: number;
49400
+ /**
49401
+ * Gets or sets a value indicating whether the session has unlimited capacity.
49402
+ */
49403
+ capacityUnlimited: boolean;
49404
+ /**
49405
+ * Gets or sets the session schedules transaction id, used to defect collisions when a scheduled session insert operation contains more than 1 schedule/slot.
49406
+ */
49407
+ transactionId?: string | null;
49408
+ };
49409
+
49410
+ declare class ScheduledSessionsSchedulesService {
49411
+ readonly httpRequest: BaseHttpRequest;
49412
+ constructor(httpRequest: BaseHttpRequest);
49413
+ /**
49414
+ * Makes the given schedule Id Active />.
49415
+ * @returns ScheduledSessionSchedule OK
49416
+ * @throws ApiError
49417
+ */
49418
+ makeActive({ scheduledSessionScheduleId, }: {
49419
+ /**
49420
+ * The slot schedule Id.
49421
+ */
49422
+ scheduledSessionScheduleId: string;
49423
+ }): CancelablePromise<ScheduledSessionSchedule>;
49424
+ /**
49425
+ * Evaluate schedules and insert forward scheduled sessions.
49426
+ * @returns number OK
49427
+ * @throws ApiError
49428
+ */
49429
+ evaluateSchedules(): CancelablePromise<number>;
49430
+ /**
49431
+ * Cleans table of unconfirmed schedules.
49432
+ * @returns number OK
49433
+ * @throws ApiError
49434
+ */
49435
+ clean(): CancelablePromise<number>;
49436
+ /**
49437
+ * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
49438
+ * @returns ScheduledSessionSchedule OK
49439
+ * @throws ApiError
49440
+ */
49441
+ post({ requestBody, }: {
49442
+ /**
49443
+ * The <typeparamref name="TObject" /> model.
49444
+ */
49445
+ requestBody?: ScheduledSessionSchedulePost;
49446
+ }): CancelablePromise<ScheduledSessionSchedule>;
49447
+ /**
49448
+ * Patches the resource.
49449
+ * @returns ScheduledSessionSchedule OK
49450
+ * @throws ApiError
49451
+ */
49452
+ patch({ requestBody, }: {
49453
+ /**
49454
+ * The <typeparamref name="TObject" /> model.
49455
+ */
49456
+ requestBody?: ScheduledSessionSchedulePatch;
49457
+ }): CancelablePromise<ScheduledSessionSchedule>;
49458
+ /**
49459
+ * Inserts a list of resources.
49460
+ * @returns ScheduledSessionSchedule OK
49461
+ * @throws ApiError
49462
+ */
49463
+ postList({ requestBody, }: {
49464
+ /**
49465
+ * The list of <typeparamref name="TObject" />.
49466
+ */
49467
+ requestBody?: Array<ScheduledSessionSchedulePost>;
49468
+ }): CancelablePromise<Array<ScheduledSessionSchedule>>;
49469
+ /**
49470
+ * Patches the resource.
49471
+ * @returns ScheduledSessionSchedule OK
49472
+ * @throws ApiError
49473
+ */
49474
+ patchWithReferences({ requestBody, }: {
49475
+ /**
49476
+ * The <typeparamref name="TObject" /> model.
49477
+ */
49478
+ requestBody?: ScheduledSessionSchedulePatch;
49479
+ }): CancelablePromise<ScheduledSessionSchedule>;
49480
+ /**
49481
+ * Deletes the resource.
49482
+ * @returns any OK
49483
+ * @throws ApiError
49484
+ */
49485
+ deleteByObject({ requestBody, }: {
49486
+ /**
49487
+ * The <typeparamref name="TObject" /> model.
49488
+ */
49489
+ requestBody?: ScheduledSessionSchedule;
49490
+ }): CancelablePromise<any>;
49491
+ /**
49492
+ * Gets a list of resources.
49493
+ * @returns ScheduledSessionSchedulePage OK
49494
+ * @throws ApiError
49495
+ */
49496
+ getPage({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, bookableOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
49497
+ /**
49498
+ * Gets or sets the queryable session id.
49499
+ */
49500
+ sessionId?: string;
49501
+ /**
49502
+ * Gets or sets the queryable slot facility Ids.
49503
+ */
49504
+ sessionIds?: Array<string>;
49505
+ /**
49506
+ * Gets or sets the queryable slot schedule last run date.
49507
+ */
49508
+ lastRunDateTimeLte?: string;
49509
+ /**
49510
+ * Gets or sets the queryable schedule status.
49511
+ */
49512
+ status?: ScheduleStatus;
49513
+ /**
49514
+ * Gets or sets the queryable schedule statuses.
49515
+ */
49516
+ statuses?: Array<ScheduleStatus>;
49517
+ /**
49518
+ * Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
49519
+ */
49520
+ bookableOnly?: boolean;
49521
+ /**
49522
+ * Gets or sets the page number for paged queries.
49523
+ */
49524
+ pageNumber?: number;
49525
+ /**
49526
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
49527
+ */
49528
+ take?: number;
49529
+ /**
49530
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
49531
+ */
49532
+ skip?: number;
49533
+ /**
49534
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
49535
+ */
49536
+ limitListRequests?: boolean;
49537
+ /**
49538
+ * Gets or sets the Tenant Id.
49539
+ */
49540
+ tenantId?: string;
49541
+ /**
49542
+ * Gets or sets the Modifed By Id.
49543
+ */
49544
+ modifiedById?: string;
49545
+ /**
49546
+ * Gets or sets the Modifed By Ids.
49547
+ */
49548
+ modifiedByIds?: Array<string>;
49549
+ /**
49550
+ * Gets or sets the Date Created greater than equal to.
49551
+ */
49552
+ dateCreatedGte?: string;
49553
+ /**
49554
+ * Gets or sets the Date Created less than equal to.
49555
+ */
49556
+ dateCreatedLte?: string;
49557
+ /**
49558
+ * Gets or sets the queryable only is live status.
49559
+ */
49560
+ isLive?: boolean;
49561
+ /**
49562
+ * Gets or sets the sort order direction.
49563
+ */
49564
+ sortOrderDirection?: SearchSortOrderDirection;
49565
+ }): CancelablePromise<ScheduledSessionSchedulePage>;
49566
+ /**
49567
+ * Deletes the resource.
49568
+ * @returns any OK
49569
+ * @throws ApiError
49570
+ */
49571
+ deleteById({ id, }: {
49572
+ /**
49573
+ * The <typeparamref name="TObject" /> id.
49574
+ */
49575
+ id: string;
49576
+ }): CancelablePromise<any>;
49577
+ /**
49578
+ * Gets the resource by its Id.
49579
+ * @returns ScheduledSessionSchedule OK
49580
+ * @throws ApiError
49581
+ */
49582
+ getObject({ id, }: {
49583
+ /**
49584
+ * The <typeparamref name="TObject" /> id.
49585
+ */
49586
+ id: string;
49587
+ }): CancelablePromise<ScheduledSessionSchedule>;
49588
+ /**
49589
+ * Returns a value indicating whether the resource is deletable.
49590
+ * @returns boolean OK
49591
+ * @throws ApiError
49592
+ */
49593
+ canDelete({ id, }: {
49594
+ /**
49595
+ * The <typeparamref name="TObject" /> id.
49596
+ */
49597
+ id: string;
49598
+ }): CancelablePromise<boolean>;
49599
+ /**
49600
+ * Returns a value indicating whether the resource exists in the database given the provided search params.
49601
+ * @returns boolean OK
49602
+ * @throws ApiError
49603
+ */
49604
+ exists({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, bookableOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
49605
+ /**
49606
+ * Gets or sets the queryable session id.
49607
+ */
49608
+ sessionId?: string;
49609
+ /**
49610
+ * Gets or sets the queryable slot facility Ids.
49611
+ */
49612
+ sessionIds?: Array<string>;
49613
+ /**
49614
+ * Gets or sets the queryable slot schedule last run date.
49615
+ */
49616
+ lastRunDateTimeLte?: string;
49617
+ /**
49618
+ * Gets or sets the queryable schedule status.
49619
+ */
49620
+ status?: ScheduleStatus;
49621
+ /**
49622
+ * Gets or sets the queryable schedule statuses.
49623
+ */
49624
+ statuses?: Array<ScheduleStatus>;
49625
+ /**
49626
+ * Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
49627
+ */
49628
+ bookableOnly?: boolean;
49629
+ /**
49630
+ * Gets or sets the page number for paged queries.
49631
+ */
49632
+ pageNumber?: number;
49633
+ /**
49634
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
49635
+ */
49636
+ take?: number;
49637
+ /**
49638
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
49639
+ */
49640
+ skip?: number;
49641
+ /**
49642
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
49643
+ */
49644
+ limitListRequests?: boolean;
49645
+ /**
49646
+ * Gets or sets the Tenant Id.
49647
+ */
49648
+ tenantId?: string;
49649
+ /**
49650
+ * Gets or sets the Modifed By Id.
49651
+ */
49652
+ modifiedById?: string;
49653
+ /**
49654
+ * Gets or sets the Modifed By Ids.
49655
+ */
49656
+ modifiedByIds?: Array<string>;
49657
+ /**
49658
+ * Gets or sets the Date Created greater than equal to.
49659
+ */
49660
+ dateCreatedGte?: string;
49661
+ /**
49662
+ * Gets or sets the Date Created less than equal to.
49663
+ */
49664
+ dateCreatedLte?: string;
49665
+ /**
49666
+ * Gets or sets the queryable only is live status.
49667
+ */
49668
+ isLive?: boolean;
49669
+ /**
49670
+ * Gets or sets the sort order direction.
49671
+ */
49672
+ sortOrderDirection?: SearchSortOrderDirection;
49673
+ }): CancelablePromise<boolean>;
49674
+ /**
49675
+ * Returns the number of results in the database given the provided search params.
49676
+ * @returns number OK
49677
+ * @throws ApiError
49678
+ */
49679
+ count({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, bookableOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
49680
+ /**
49681
+ * Gets or sets the queryable session id.
49682
+ */
49683
+ sessionId?: string;
49684
+ /**
49685
+ * Gets or sets the queryable slot facility Ids.
49686
+ */
49687
+ sessionIds?: Array<string>;
49688
+ /**
49689
+ * Gets or sets the queryable slot schedule last run date.
49690
+ */
49691
+ lastRunDateTimeLte?: string;
49692
+ /**
49693
+ * Gets or sets the queryable schedule status.
49694
+ */
49695
+ status?: ScheduleStatus;
49696
+ /**
49697
+ * Gets or sets the queryable schedule statuses.
49698
+ */
49699
+ statuses?: Array<ScheduleStatus>;
49700
+ /**
49701
+ * Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
49702
+ */
49703
+ bookableOnly?: boolean;
49704
+ /**
49705
+ * Gets or sets the page number for paged queries.
49706
+ */
49707
+ pageNumber?: number;
49708
+ /**
49709
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
49710
+ */
49711
+ take?: number;
49712
+ /**
49713
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
49714
+ */
49715
+ skip?: number;
49716
+ /**
49717
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
49718
+ */
49719
+ limitListRequests?: boolean;
49720
+ /**
49721
+ * Gets or sets the Tenant Id.
49722
+ */
49723
+ tenantId?: string;
49724
+ /**
49725
+ * Gets or sets the Modifed By Id.
49726
+ */
49727
+ modifiedById?: string;
49728
+ /**
49729
+ * Gets or sets the Modifed By Ids.
49730
+ */
49731
+ modifiedByIds?: Array<string>;
49732
+ /**
49733
+ * Gets or sets the Date Created greater than equal to.
49734
+ */
49735
+ dateCreatedGte?: string;
49736
+ /**
49737
+ * Gets or sets the Date Created less than equal to.
49738
+ */
49739
+ dateCreatedLte?: string;
49740
+ /**
49741
+ * Gets or sets the queryable only is live status.
49742
+ */
49743
+ isLive?: boolean;
49744
+ /**
49745
+ * Gets or sets the sort order direction.
49746
+ */
49747
+ sortOrderDirection?: SearchSortOrderDirection;
49748
+ }): CancelablePromise<number>;
49749
+ /**
49750
+ * Gets a list of resources unpaged and without references.
49751
+ * @returns ScheduledSessionSchedule OK
49752
+ * @throws ApiError
49753
+ */
49754
+ getListWithoutReferences({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, bookableOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
49755
+ /**
49756
+ * Gets or sets the queryable session id.
49757
+ */
49758
+ sessionId?: string;
49759
+ /**
49760
+ * Gets or sets the queryable slot facility Ids.
49761
+ */
49762
+ sessionIds?: Array<string>;
49763
+ /**
49764
+ * Gets or sets the queryable slot schedule last run date.
49765
+ */
49766
+ lastRunDateTimeLte?: string;
49767
+ /**
49768
+ * Gets or sets the queryable schedule status.
49769
+ */
49770
+ status?: ScheduleStatus;
49771
+ /**
49772
+ * Gets or sets the queryable schedule statuses.
49773
+ */
49774
+ statuses?: Array<ScheduleStatus>;
49775
+ /**
49776
+ * Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
49777
+ */
49778
+ bookableOnly?: boolean;
49779
+ /**
49780
+ * Gets or sets the page number for paged queries.
49781
+ */
49782
+ pageNumber?: number;
49783
+ /**
49784
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
49785
+ */
49786
+ take?: number;
49787
+ /**
49788
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
49789
+ */
49790
+ skip?: number;
49791
+ /**
49792
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
49793
+ */
49794
+ limitListRequests?: boolean;
49795
+ /**
49796
+ * Gets or sets the Tenant Id.
49797
+ */
49798
+ tenantId?: string;
49799
+ /**
49800
+ * Gets or sets the Modifed By Id.
49801
+ */
49802
+ modifiedById?: string;
49803
+ /**
49804
+ * Gets or sets the Modifed By Ids.
49805
+ */
49806
+ modifiedByIds?: Array<string>;
49807
+ /**
49808
+ * Gets or sets the Date Created greater than equal to.
49809
+ */
49810
+ dateCreatedGte?: string;
49811
+ /**
49812
+ * Gets or sets the Date Created less than equal to.
49813
+ */
49814
+ dateCreatedLte?: string;
49815
+ /**
49816
+ * Gets or sets the queryable only is live status.
49817
+ */
49818
+ isLive?: boolean;
49819
+ /**
49820
+ * Gets or sets the sort order direction.
49821
+ */
49822
+ sortOrderDirection?: SearchSortOrderDirection;
49823
+ }): CancelablePromise<Array<ScheduledSessionSchedule>>;
48384
49824
  /**
48385
- * Gets or sets the session schedules transaction id, used to defect collisions when a scheduled session insert operation contains more than 1 schedule/slot.
49825
+ * Gets a list of resources.
49826
+ * @returns ScheduledSessionSchedule OK
49827
+ * @throws ApiError
48386
49828
  */
48387
- transactionId?: string | null;
48388
- };
49829
+ getListIdName({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, bookableOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
49830
+ /**
49831
+ * Gets or sets the queryable session id.
49832
+ */
49833
+ sessionId?: string;
49834
+ /**
49835
+ * Gets or sets the queryable slot facility Ids.
49836
+ */
49837
+ sessionIds?: Array<string>;
49838
+ /**
49839
+ * Gets or sets the queryable slot schedule last run date.
49840
+ */
49841
+ lastRunDateTimeLte?: string;
49842
+ /**
49843
+ * Gets or sets the queryable schedule status.
49844
+ */
49845
+ status?: ScheduleStatus;
49846
+ /**
49847
+ * Gets or sets the queryable schedule statuses.
49848
+ */
49849
+ statuses?: Array<ScheduleStatus>;
49850
+ /**
49851
+ * Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
49852
+ */
49853
+ bookableOnly?: boolean;
49854
+ /**
49855
+ * Gets or sets the page number for paged queries.
49856
+ */
49857
+ pageNumber?: number;
49858
+ /**
49859
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
49860
+ */
49861
+ take?: number;
49862
+ /**
49863
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
49864
+ */
49865
+ skip?: number;
49866
+ /**
49867
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
49868
+ */
49869
+ limitListRequests?: boolean;
49870
+ /**
49871
+ * Gets or sets the Tenant Id.
49872
+ */
49873
+ tenantId?: string;
49874
+ /**
49875
+ * Gets or sets the Modifed By Id.
49876
+ */
49877
+ modifiedById?: string;
49878
+ /**
49879
+ * Gets or sets the Modifed By Ids.
49880
+ */
49881
+ modifiedByIds?: Array<string>;
49882
+ /**
49883
+ * Gets or sets the Date Created greater than equal to.
49884
+ */
49885
+ dateCreatedGte?: string;
49886
+ /**
49887
+ * Gets or sets the Date Created less than equal to.
49888
+ */
49889
+ dateCreatedLte?: string;
49890
+ /**
49891
+ * Gets or sets the queryable only is live status.
49892
+ */
49893
+ isLive?: boolean;
49894
+ /**
49895
+ * Gets or sets the sort order direction.
49896
+ */
49897
+ sortOrderDirection?: SearchSortOrderDirection;
49898
+ }): CancelablePromise<Array<ScheduledSessionSchedule>>;
49899
+ }
48389
49900
 
48390
- declare class ScheduledSessionsSchedulesService {
49901
+ declare class SellableItemsService {
48391
49902
  readonly httpRequest: BaseHttpRequest;
48392
49903
  constructor(httpRequest: BaseHttpRequest);
48393
49904
  /**
48394
- * Makes the given schedule Id Active />.
48395
- * @returns ScheduledSessionSchedule OK
49905
+ * Assigns a deal to a sellable item.
49906
+ * @returns SellableItem OK
48396
49907
  * @throws ApiError
48397
49908
  */
48398
- makeActive({ scheduledSessionScheduleId, }: {
49909
+ assignDeal({ sellableItemId, dealId, }: {
48399
49910
  /**
48400
- * The slot schedule Id.
49911
+ * The sellable item id.
48401
49912
  */
48402
- scheduledSessionScheduleId: string;
48403
- }): CancelablePromise<ScheduledSessionSchedule>;
49913
+ sellableItemId: string;
49914
+ /**
49915
+ * The deal id.
49916
+ */
49917
+ dealId: string;
49918
+ }): CancelablePromise<SellableItem>;
48404
49919
  /**
48405
- * Evaluate schedules and insert forward scheduled sessions.
48406
- * @returns number OK
49920
+ * Unassigns a deal from a sellable item.
49921
+ * @returns SellableItem OK
48407
49922
  * @throws ApiError
48408
49923
  */
48409
- evaluateSchedules(): CancelablePromise<number>;
49924
+ unassignDeal({ sellableItemId, dealId, }: {
49925
+ /**
49926
+ * The sellable item id.
49927
+ */
49928
+ sellableItemId: string;
49929
+ /**
49930
+ * The deal id.
49931
+ */
49932
+ dealId: string;
49933
+ }): CancelablePromise<SellableItem>;
48410
49934
  /**
48411
- * Cleans table of unconfirmed schedules.
48412
- * @returns number OK
49935
+ * Takes the sellable item offline (not published on the storefront).
49936
+ * @returns SellableItem OK
48413
49937
  * @throws ApiError
48414
49938
  */
48415
- clean(): CancelablePromise<number>;
49939
+ takeOffline({ sellableItemId, }: {
49940
+ /**
49941
+ * The sellable item id.
49942
+ */
49943
+ sellableItemId: string;
49944
+ }): CancelablePromise<SellableItem>;
49945
+ /**
49946
+ * Brings the sellable item online on the storefront.
49947
+ * @returns SellableItem OK
49948
+ * @throws ApiError
49949
+ */
49950
+ bringOnline({ sellableItemId, }: {
49951
+ /**
49952
+ * The sellable item id.
49953
+ */
49954
+ sellableItemId: string;
49955
+ }): CancelablePromise<SellableItem>;
48416
49956
  /**
48417
49957
  * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
48418
- * @returns ScheduledSessionSchedule OK
49958
+ * @returns SellableItem OK
48419
49959
  * @throws ApiError
48420
49960
  */
48421
49961
  post({ requestBody, }: {
48422
49962
  /**
48423
49963
  * The <typeparamref name="TObject" /> model.
48424
49964
  */
48425
- requestBody?: ScheduledSessionSchedulePost;
48426
- }): CancelablePromise<ScheduledSessionSchedule>;
49965
+ requestBody?: SellableItemPost;
49966
+ }): CancelablePromise<SellableItem>;
48427
49967
  /**
48428
49968
  * Patches the resource.
48429
- * @returns ScheduledSessionSchedule OK
49969
+ * @returns SellableItem OK
48430
49970
  * @throws ApiError
48431
49971
  */
48432
49972
  patch({ requestBody, }: {
48433
49973
  /**
48434
49974
  * The <typeparamref name="TObject" /> model.
48435
49975
  */
48436
- requestBody?: ScheduledSessionSchedulePatch;
48437
- }): CancelablePromise<ScheduledSessionSchedule>;
49976
+ requestBody?: SellableItemPatch;
49977
+ }): CancelablePromise<SellableItem>;
48438
49978
  /**
48439
49979
  * Inserts a list of resources.
48440
- * @returns ScheduledSessionSchedule OK
49980
+ * @returns SellableItem OK
48441
49981
  * @throws ApiError
48442
49982
  */
48443
49983
  postList({ requestBody, }: {
48444
49984
  /**
48445
49985
  * The list of <typeparamref name="TObject" />.
48446
49986
  */
48447
- requestBody?: Array<ScheduledSessionSchedulePost>;
48448
- }): CancelablePromise<Array<ScheduledSessionSchedule>>;
49987
+ requestBody?: Array<SellableItemPost>;
49988
+ }): CancelablePromise<Array<SellableItem>>;
48449
49989
  /**
48450
49990
  * Patches the resource.
48451
- * @returns ScheduledSessionSchedule OK
49991
+ * @returns SellableItem OK
48452
49992
  * @throws ApiError
48453
49993
  */
48454
49994
  patchWithReferences({ requestBody, }: {
48455
49995
  /**
48456
49996
  * The <typeparamref name="TObject" /> model.
48457
49997
  */
48458
- requestBody?: ScheduledSessionSchedulePatch;
48459
- }): CancelablePromise<ScheduledSessionSchedule>;
49998
+ requestBody?: SellableItemPatch;
49999
+ }): CancelablePromise<SellableItem>;
48460
50000
  /**
48461
50001
  * Deletes the resource.
48462
50002
  * @returns any OK
@@ -48466,38 +50006,38 @@ declare class ScheduledSessionsSchedulesService {
48466
50006
  /**
48467
50007
  * The <typeparamref name="TObject" /> model.
48468
50008
  */
48469
- requestBody?: ScheduledSessionSchedule;
50009
+ requestBody?: SellableItem;
48470
50010
  }): CancelablePromise<any>;
48471
50011
  /**
48472
50012
  * Gets a list of resources.
48473
- * @returns ScheduledSessionSchedulePage OK
50013
+ * @returns SellableItemPage OK
48474
50014
  * @throws ApiError
48475
50015
  */
48476
- getPage({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, bookableOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
50016
+ getPage({ ids, venueId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
48477
50017
  /**
48478
- * Gets or sets the queryable session id.
50018
+ * Gets or sets the queryable ids.
48479
50019
  */
48480
- sessionId?: string;
50020
+ ids?: Array<string>;
48481
50021
  /**
48482
- * Gets or sets the queryable slot facility Ids.
50022
+ * Gets or sets the queryable Venue Id.
48483
50023
  */
48484
- sessionIds?: Array<string>;
50024
+ venueId?: string;
48485
50025
  /**
48486
- * Gets or sets the queryable slot schedule last run date.
50026
+ * Gets or sets a value indicating whether return online items.
48487
50027
  */
48488
- lastRunDateTimeLte?: string;
50028
+ online?: boolean;
48489
50029
  /**
48490
- * Gets or sets the queryable schedule status.
50030
+ * Gets or sets a value indicating whether to include archived items.
48491
50031
  */
48492
- status?: ScheduleStatus;
50032
+ archived?: boolean;
48493
50033
  /**
48494
- * Gets or sets the queryable schedule statuses.
50034
+ * Gets or sets a value indicating whether to include deleted items.
48495
50035
  */
48496
- statuses?: Array<ScheduleStatus>;
50036
+ deleted?: boolean;
48497
50037
  /**
48498
- * Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
50038
+ * Gets or sets a value indicating this is a request from the partner dashboard.
48499
50039
  */
48500
- bookableOnly?: boolean;
50040
+ dashboardRequest?: boolean;
48501
50041
  /**
48502
50042
  * Gets or sets the page number for paged queries.
48503
50043
  */
@@ -48542,7 +50082,7 @@ declare class ScheduledSessionsSchedulesService {
48542
50082
  * Gets or sets the sort order direction.
48543
50083
  */
48544
50084
  sortOrderDirection?: SearchSortOrderDirection;
48545
- }): CancelablePromise<ScheduledSessionSchedulePage>;
50085
+ }): CancelablePromise<SellableItemPage>;
48546
50086
  /**
48547
50087
  * Deletes the resource.
48548
50088
  * @returns any OK
@@ -48556,7 +50096,7 @@ declare class ScheduledSessionsSchedulesService {
48556
50096
  }): CancelablePromise<any>;
48557
50097
  /**
48558
50098
  * Gets the resource by its Id.
48559
- * @returns ScheduledSessionSchedule OK
50099
+ * @returns SellableItem OK
48560
50100
  * @throws ApiError
48561
50101
  */
48562
50102
  getObject({ id, }: {
@@ -48564,7 +50104,7 @@ declare class ScheduledSessionsSchedulesService {
48564
50104
  * The <typeparamref name="TObject" /> id.
48565
50105
  */
48566
50106
  id: string;
48567
- }): CancelablePromise<ScheduledSessionSchedule>;
50107
+ }): CancelablePromise<SellableItem>;
48568
50108
  /**
48569
50109
  * Returns a value indicating whether the resource is deletable.
48570
50110
  * @returns boolean OK
@@ -48581,31 +50121,31 @@ declare class ScheduledSessionsSchedulesService {
48581
50121
  * @returns boolean OK
48582
50122
  * @throws ApiError
48583
50123
  */
48584
- exists({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, bookableOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
50124
+ exists({ ids, venueId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
48585
50125
  /**
48586
- * Gets or sets the queryable session id.
50126
+ * Gets or sets the queryable ids.
48587
50127
  */
48588
- sessionId?: string;
50128
+ ids?: Array<string>;
48589
50129
  /**
48590
- * Gets or sets the queryable slot facility Ids.
50130
+ * Gets or sets the queryable Venue Id.
48591
50131
  */
48592
- sessionIds?: Array<string>;
50132
+ venueId?: string;
48593
50133
  /**
48594
- * Gets or sets the queryable slot schedule last run date.
50134
+ * Gets or sets a value indicating whether return online items.
48595
50135
  */
48596
- lastRunDateTimeLte?: string;
50136
+ online?: boolean;
48597
50137
  /**
48598
- * Gets or sets the queryable schedule status.
50138
+ * Gets or sets a value indicating whether to include archived items.
48599
50139
  */
48600
- status?: ScheduleStatus;
50140
+ archived?: boolean;
48601
50141
  /**
48602
- * Gets or sets the queryable schedule statuses.
50142
+ * Gets or sets a value indicating whether to include deleted items.
48603
50143
  */
48604
- statuses?: Array<ScheduleStatus>;
50144
+ deleted?: boolean;
48605
50145
  /**
48606
- * Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
50146
+ * Gets or sets a value indicating this is a request from the partner dashboard.
48607
50147
  */
48608
- bookableOnly?: boolean;
50148
+ dashboardRequest?: boolean;
48609
50149
  /**
48610
50150
  * Gets or sets the page number for paged queries.
48611
50151
  */
@@ -48656,31 +50196,31 @@ declare class ScheduledSessionsSchedulesService {
48656
50196
  * @returns number OK
48657
50197
  * @throws ApiError
48658
50198
  */
48659
- count({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, bookableOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
50199
+ count({ ids, venueId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
48660
50200
  /**
48661
- * Gets or sets the queryable session id.
50201
+ * Gets or sets the queryable ids.
48662
50202
  */
48663
- sessionId?: string;
50203
+ ids?: Array<string>;
48664
50204
  /**
48665
- * Gets or sets the queryable slot facility Ids.
50205
+ * Gets or sets the queryable Venue Id.
48666
50206
  */
48667
- sessionIds?: Array<string>;
50207
+ venueId?: string;
48668
50208
  /**
48669
- * Gets or sets the queryable slot schedule last run date.
50209
+ * Gets or sets a value indicating whether return online items.
48670
50210
  */
48671
- lastRunDateTimeLte?: string;
50211
+ online?: boolean;
48672
50212
  /**
48673
- * Gets or sets the queryable schedule status.
50213
+ * Gets or sets a value indicating whether to include archived items.
48674
50214
  */
48675
- status?: ScheduleStatus;
50215
+ archived?: boolean;
48676
50216
  /**
48677
- * Gets or sets the queryable schedule statuses.
50217
+ * Gets or sets a value indicating whether to include deleted items.
48678
50218
  */
48679
- statuses?: Array<ScheduleStatus>;
50219
+ deleted?: boolean;
48680
50220
  /**
48681
- * Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
50221
+ * Gets or sets a value indicating this is a request from the partner dashboard.
48682
50222
  */
48683
- bookableOnly?: boolean;
50223
+ dashboardRequest?: boolean;
48684
50224
  /**
48685
50225
  * Gets or sets the page number for paged queries.
48686
50226
  */
@@ -48728,34 +50268,34 @@ declare class ScheduledSessionsSchedulesService {
48728
50268
  }): CancelablePromise<number>;
48729
50269
  /**
48730
50270
  * Gets a list of resources unpaged and without references.
48731
- * @returns ScheduledSessionSchedule OK
50271
+ * @returns SellableItem OK
48732
50272
  * @throws ApiError
48733
50273
  */
48734
- getListWithoutReferences({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, bookableOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
50274
+ getListWithoutReferences({ ids, venueId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
48735
50275
  /**
48736
- * Gets or sets the queryable session id.
50276
+ * Gets or sets the queryable ids.
48737
50277
  */
48738
- sessionId?: string;
50278
+ ids?: Array<string>;
48739
50279
  /**
48740
- * Gets or sets the queryable slot facility Ids.
50280
+ * Gets or sets the queryable Venue Id.
48741
50281
  */
48742
- sessionIds?: Array<string>;
50282
+ venueId?: string;
48743
50283
  /**
48744
- * Gets or sets the queryable slot schedule last run date.
50284
+ * Gets or sets a value indicating whether return online items.
48745
50285
  */
48746
- lastRunDateTimeLte?: string;
50286
+ online?: boolean;
48747
50287
  /**
48748
- * Gets or sets the queryable schedule status.
50288
+ * Gets or sets a value indicating whether to include archived items.
48749
50289
  */
48750
- status?: ScheduleStatus;
50290
+ archived?: boolean;
48751
50291
  /**
48752
- * Gets or sets the queryable schedule statuses.
50292
+ * Gets or sets a value indicating whether to include deleted items.
48753
50293
  */
48754
- statuses?: Array<ScheduleStatus>;
50294
+ deleted?: boolean;
48755
50295
  /**
48756
- * Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
50296
+ * Gets or sets a value indicating this is a request from the partner dashboard.
48757
50297
  */
48758
- bookableOnly?: boolean;
50298
+ dashboardRequest?: boolean;
48759
50299
  /**
48760
50300
  * Gets or sets the page number for paged queries.
48761
50301
  */
@@ -48800,37 +50340,37 @@ declare class ScheduledSessionsSchedulesService {
48800
50340
  * Gets or sets the sort order direction.
48801
50341
  */
48802
50342
  sortOrderDirection?: SearchSortOrderDirection;
48803
- }): CancelablePromise<Array<ScheduledSessionSchedule>>;
50343
+ }): CancelablePromise<Array<SellableItem>>;
48804
50344
  /**
48805
50345
  * Gets a list of resources.
48806
- * @returns ScheduledSessionSchedule OK
50346
+ * @returns SellableItem OK
48807
50347
  * @throws ApiError
48808
50348
  */
48809
- getListIdName({ sessionId, sessionIds, lastRunDateTimeLte, status, statuses, bookableOnly, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
50349
+ getListIdName({ ids, venueId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
48810
50350
  /**
48811
- * Gets or sets the queryable session id.
50351
+ * Gets or sets the queryable ids.
48812
50352
  */
48813
- sessionId?: string;
50353
+ ids?: Array<string>;
48814
50354
  /**
48815
- * Gets or sets the queryable slot facility Ids.
50355
+ * Gets or sets the queryable Venue Id.
48816
50356
  */
48817
- sessionIds?: Array<string>;
50357
+ venueId?: string;
48818
50358
  /**
48819
- * Gets or sets the queryable slot schedule last run date.
50359
+ * Gets or sets a value indicating whether return online items.
48820
50360
  */
48821
- lastRunDateTimeLte?: string;
50361
+ online?: boolean;
48822
50362
  /**
48823
- * Gets or sets the queryable schedule status.
50363
+ * Gets or sets a value indicating whether to include archived items.
48824
50364
  */
48825
- status?: ScheduleStatus;
50365
+ archived?: boolean;
48826
50366
  /**
48827
- * Gets or sets the queryable schedule statuses.
50367
+ * Gets or sets a value indicating whether to include deleted items.
48828
50368
  */
48829
- statuses?: Array<ScheduleStatus>;
50369
+ deleted?: boolean;
48830
50370
  /**
48831
- * Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
50371
+ * Gets or sets a value indicating this is a request from the partner dashboard.
48832
50372
  */
48833
- bookableOnly?: boolean;
50373
+ dashboardRequest?: boolean;
48834
50374
  /**
48835
50375
  * Gets or sets the page number for paged queries.
48836
50376
  */
@@ -48875,7 +50415,7 @@ declare class ScheduledSessionsSchedulesService {
48875
50415
  * Gets or sets the sort order direction.
48876
50416
  */
48877
50417
  sortOrderDirection?: SearchSortOrderDirection;
48878
- }): CancelablePromise<Array<ScheduledSessionSchedule>>;
50418
+ }): CancelablePromise<Array<SellableItem>>;
48879
50419
  }
48880
50420
 
48881
50421
  /**
@@ -49024,7 +50564,7 @@ declare class SessionsService {
49024
50564
  readonly httpRequest: BaseHttpRequest;
49025
50565
  constructor(httpRequest: BaseHttpRequest);
49026
50566
  /**
49027
- * Gets a list of valid opportunities for rescheduling, based on the quanity required to reschedule.
50567
+ * Gets a list of valid opportunities for rescheduling, based on the quantity required to reschedule.
49028
50568
  * @returns ScheduledSession OK
49029
50569
  * @throws ApiError
49030
50570
  */
@@ -49034,7 +50574,7 @@ declare class SessionsService {
49034
50574
  */
49035
50575
  sessionId: string;
49036
50576
  /**
49037
- * The quanity required for reschedule.
50577
+ * The quantity required for reschedule.
49038
50578
  */
49039
50579
  quantity: number;
49040
50580
  }): CancelablePromise<ScheduledSession>;
@@ -68903,6 +70443,7 @@ declare class ApiClient {
68903
70443
  readonly publicProgrammes: PublicProgrammesService;
68904
70444
  readonly publicProviders: PublicProvidersService;
68905
70445
  readonly publicScheduledSessions: PublicScheduledSessionsService;
70446
+ readonly publicSellableItems: PublicSellableItemsService;
68906
70447
  readonly publicSessions: PublicSessionsService;
68907
70448
  readonly publicSlots: PublicSlotsService;
68908
70449
  readonly publicStorefrontStaffPreview: PublicStorefrontStaffPreviewService;
@@ -68920,6 +70461,7 @@ declare class ApiClient {
68920
70461
  readonly rescheduleLog: RescheduleLogService;
68921
70462
  readonly scheduledSessions: ScheduledSessionsService;
68922
70463
  readonly scheduledSessionsSchedules: ScheduledSessionsSchedulesService;
70464
+ readonly sellableItems: SellableItemsService;
68923
70465
  readonly sessions: SessionsService;
68924
70466
  readonly slotOffers: SlotOffersService;
68925
70467
  readonly slots: SlotsService;
@@ -69088,4 +70630,4 @@ type ValidationResultModel = {
69088
70630
  readonly errors?: Array<ValidationError> | null;
69089
70631
  };
69090
70632
 
69091
- export { Activity, ActivityFacet, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivitySearchResponse, ActivityService, ActivityType, ActivityTypeCategory, ActivityTypeCategoryService, AddressBookItem, AddressBooksRequest, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeeWalletDeductionPreview, 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, CourseEmailWaitlistPatch, 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, CustomFieldDataType, CustomFieldDefinition, CustomFieldDefinitionPage, CustomFieldDefinitionPatch, CustomFieldDefinitionPost, CustomFieldDefinitionWithValue, CustomFieldOption, CustomFieldOptionDto, CustomFieldOptionPost, CustomFieldValueEntityType, CustomFieldValueUpdate, CustomFieldsBulkUpdate, CustomFieldsService, Customer, CustomerAccountInvitePatch, CustomerAuthService, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPortalAccountPatch, CustomerPortalService, CustomerPost, CustomerStats, CustomerType, CustomerWalletDeductionPreview, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, DotdigitalCanonicalField, DotdigitalService, DotdigitalSourceType, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EndUserAccessibleTenantDto, 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, IntegrationDotDigitalSettingsService, IntegrationDotdigitalFieldMap, IntegrationDotdigitalFieldMapPage, IntegrationDotdigitalFieldMapPatch, IntegrationDotdigitalFieldMapPost, IntegrationDotdigitalFieldMapService, IntegrationDotdigitalLog, IntegrationDotdigitalLogPage, IntegrationDotdigitalLogPatch, IntegrationDotdigitalLogPost, IntegrationDotdigitalLogService, IntegrationDotdigitalLogStatus, IntegrationDotdigitalSettings, IntegrationDotdigitalSettingsCreate, IntegrationDotdigitalSettingsPage, IntegrationDotdigitalSettingsPatch, IntegrationDotdigitalSettingsPost, IntegrationQueue, IntegrationQueuePage, IntegrationQueuePatch, IntegrationQueuePost, IntegrationQueueService, IntegrationType, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationReportSummary, LocationsReportService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderApplyDiscountCode, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemReportSummary, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderActivityLocation, 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, PublicStorefrontStaffPreviewService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenueTypesService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, 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, ScheduledSessionEmailWaitlistPatch, 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, SortIndex, Southwest, StorefrontStaffPreviewService, StorefrontStaffPreviewTokenResponse, StorefrontStaffPreviewValidateRequest, StorefrontStaffPreviewValidateResponse, StripeAccount, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, TenantStorefrontSettingsPatch, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpcomingLayout, UpdateCustomFieldOption, 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, VenueType, VenueTypePage, VenueTypePatch, VenueTypePost, VenueTypeService, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistConversionStatsResponseDto, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService, Wallet, WalletDeductionPreview, WalletPage, WalletPatch, WalletPost, WalletRemoveCreditPost, WalletTopUpPost, WalletTrackingLevel, WalletTransaction, WalletTransactionPage, WalletTransactionPatch, WalletTransactionPost, WalletTransactionType, WalletTransactionsService, WalletsService, WebsiteHomepage };
70633
+ export { Activity, ActivityFacet, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivitySearchResponse, ActivityService, ActivityType, ActivityTypeCategory, ActivityTypeCategoryService, AddressBookItem, AddressBooksRequest, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeeWalletDeductionPreview, 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, CourseEmailWaitlistPatch, 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, CustomFieldDataType, CustomFieldDefinition, CustomFieldDefinitionPage, CustomFieldDefinitionPatch, CustomFieldDefinitionPost, CustomFieldDefinitionWithValue, CustomFieldOption, CustomFieldOptionDto, CustomFieldOptionPost, CustomFieldValueEntityType, CustomFieldValueUpdate, CustomFieldsBulkUpdate, CustomFieldsService, Customer, CustomerAccountInvitePatch, CustomerAuthService, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPortalAccountPatch, CustomerPortalService, CustomerPost, CustomerStats, CustomerType, CustomerWalletDeductionPreview, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, DotdigitalCanonicalField, DotdigitalService, DotdigitalSourceType, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EndUserAccessibleTenantDto, 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, IntegrationDotDigitalSettingsService, IntegrationDotdigitalFieldMap, IntegrationDotdigitalFieldMapPage, IntegrationDotdigitalFieldMapPatch, IntegrationDotdigitalFieldMapPost, IntegrationDotdigitalFieldMapService, IntegrationDotdigitalLog, IntegrationDotdigitalLogPage, IntegrationDotdigitalLogPatch, IntegrationDotdigitalLogPost, IntegrationDotdigitalLogService, IntegrationDotdigitalLogStatus, IntegrationDotdigitalSettings, IntegrationDotdigitalSettingsCreate, IntegrationDotdigitalSettingsPage, IntegrationDotdigitalSettingsPatch, IntegrationDotdigitalSettingsPost, IntegrationQueue, IntegrationQueuePage, IntegrationQueuePatch, IntegrationQueuePost, IntegrationQueueService, IntegrationType, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationReportSummary, LocationsReportService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderApplyDiscountCode, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemReportSummary, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderActivityLocation, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProviderType, ProviderTypesService, ProvidersService, PublicBookingService, PublicCalendarService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSellableItemsService, PublicSessionsService, PublicSlotsService, PublicStorefrontStaffPreviewService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenueTypesService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, 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, ScheduledSessionEmailWaitlistPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, SellableItem, SellableItemPage, SellableItemPatch, SellableItemPost, SellableItemsService, 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, SortIndex, Southwest, StorefrontStaffPreviewService, StorefrontStaffPreviewTokenResponse, StorefrontStaffPreviewValidateRequest, StorefrontStaffPreviewValidateResponse, StripeAccount, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, TenantStorefrontSettingsPatch, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpcomingLayout, UpdateCustomFieldOption, 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, VenueType, VenueTypePage, VenueTypePatch, VenueTypePost, VenueTypeService, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistConversionStatsResponseDto, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService, Wallet, WalletDeductionPreview, WalletPage, WalletPatch, WalletPost, WalletRemoveCreditPost, WalletTopUpPost, WalletTrackingLevel, WalletTransaction, WalletTransactionPage, WalletTransactionPatch, WalletTransactionPost, WalletTransactionType, WalletTransactionsService, WalletsService, WebsiteHomepage };