reach-api-sdk 1.0.217 → 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.
@@ -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
  */
@@ -3333,6 +3338,10 @@ type Offer = {
3333
3338
  * Gets or sets the course id.
3334
3339
  */
3335
3340
  courseId?: string | null;
3341
+ /**
3342
+ * Gets or sets the sellable item id.
3343
+ */
3344
+ sellableItemId?: string | null;
3336
3345
  /**
3337
3346
  * Gets or sets the survey id.
3338
3347
  */
@@ -4670,7 +4679,8 @@ type IOpportunity = {
4670
4679
  declare enum OpportunityType {
4671
4680
  SLOT = "Slot",
4672
4681
  SCHEDULED_SESSION = "ScheduledSession",
4673
- COURSE = "Course"
4682
+ COURSE = "Course",
4683
+ SELLABLE_ITEM = "SellableItem"
4674
4684
  }
4675
4685
 
4676
4686
  /**
@@ -4731,6 +4741,186 @@ declare enum OrderItemStatus {
4731
4741
  RESCHEDULED = "Rescheduled"
4732
4742
  }
4733
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
+
4734
4924
  /**
4735
4925
  * Represents an Order of a currently available bookable Reach.Models.OrderItem.Slot within the Reach application.
4736
4926
  */
@@ -4775,6 +4965,10 @@ type OrderItem = {
4775
4965
  * Gets or sets the course id.
4776
4966
  */
4777
4967
  courseId?: string | null;
4968
+ /**
4969
+ * Gets or sets the sellable item id.
4970
+ */
4971
+ sellableItemId?: string | null;
4778
4972
  /**
4779
4973
  * Gets or sets the offer id.
4780
4974
  */
@@ -4828,6 +5022,7 @@ type OrderItem = {
4828
5022
  slot?: Slot;
4829
5023
  scheduledSession?: ScheduledSession;
4830
5024
  course?: Course;
5025
+ sellableItem?: SellableItem;
4831
5026
  offer?: Offer;
4832
5027
  /**
4833
5028
  * Gets or sets the order item deals.
@@ -6559,6 +6754,10 @@ type OrderPostItem = {
6559
6754
  * Gets or sets the course id.
6560
6755
  */
6561
6756
  courseId?: string | null;
6757
+ /**
6758
+ * Gets or sets the sellable item id.
6759
+ */
6760
+ sellableItemId?: string | null;
6562
6761
  /**
6563
6762
  * Gets or sets the offer id.
6564
6763
  */
@@ -13685,6 +13884,10 @@ type DealActivity = {
13685
13884
  * Gets or sets the session id.
13686
13885
  */
13687
13886
  sessionId?: string | null;
13887
+ /**
13888
+ * Gets or sets the sellable item id.
13889
+ */
13890
+ sellableItemId?: string | null;
13688
13891
  deal?: Deal;
13689
13892
  };
13690
13893
 
@@ -13739,6 +13942,10 @@ type DealActivityPost = {
13739
13942
  * Gets or sets the session id.
13740
13943
  */
13741
13944
  sessionId?: string | null;
13945
+ /**
13946
+ * Gets or sets the sellable item id.
13947
+ */
13948
+ sellableItemId?: string | null;
13742
13949
  };
13743
13950
 
13744
13951
  declare class DealActivitiesService {
@@ -13834,7 +14041,7 @@ declare class DealActivitiesService {
13834
14041
  * @returns DealActivityPage OK
13835
14042
  * @throws ApiError
13836
14043
  */
13837
- 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, }: {
13838
14045
  /**
13839
14046
  * Gets or sets the queryable deal id.
13840
14047
  */
@@ -13859,6 +14066,14 @@ declare class DealActivitiesService {
13859
14066
  * Gets or sets the queryable session ids.
13860
14067
  */
13861
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>;
13862
14077
  /**
13863
14078
  * Gets or sets the page number for paged queries.
13864
14079
  */
@@ -13942,7 +14157,7 @@ declare class DealActivitiesService {
13942
14157
  * @returns boolean OK
13943
14158
  * @throws ApiError
13944
14159
  */
13945
- 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, }: {
13946
14161
  /**
13947
14162
  * Gets or sets the queryable deal id.
13948
14163
  */
@@ -13967,6 +14182,14 @@ declare class DealActivitiesService {
13967
14182
  * Gets or sets the queryable session ids.
13968
14183
  */
13969
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>;
13970
14193
  /**
13971
14194
  * Gets or sets the page number for paged queries.
13972
14195
  */
@@ -14017,7 +14240,7 @@ declare class DealActivitiesService {
14017
14240
  * @returns number OK
14018
14241
  * @throws ApiError
14019
14242
  */
14020
- 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, }: {
14021
14244
  /**
14022
14245
  * Gets or sets the queryable deal id.
14023
14246
  */
@@ -14042,6 +14265,14 @@ declare class DealActivitiesService {
14042
14265
  * Gets or sets the queryable session ids.
14043
14266
  */
14044
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>;
14045
14276
  /**
14046
14277
  * Gets or sets the page number for paged queries.
14047
14278
  */
@@ -14092,7 +14323,7 @@ declare class DealActivitiesService {
14092
14323
  * @returns DealActivity OK
14093
14324
  * @throws ApiError
14094
14325
  */
14095
- 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, }: {
14096
14327
  /**
14097
14328
  * Gets or sets the queryable deal id.
14098
14329
  */
@@ -14117,6 +14348,14 @@ declare class DealActivitiesService {
14117
14348
  * Gets or sets the queryable session ids.
14118
14349
  */
14119
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>;
14120
14359
  /**
14121
14360
  * Gets or sets the page number for paged queries.
14122
14361
  */
@@ -14167,7 +14406,7 @@ declare class DealActivitiesService {
14167
14406
  * @returns DealActivity OK
14168
14407
  * @throws ApiError
14169
14408
  */
14170
- 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, }: {
14171
14410
  /**
14172
14411
  * Gets or sets the queryable deal id.
14173
14412
  */
@@ -14192,6 +14431,14 @@ declare class DealActivitiesService {
14192
14431
  * Gets or sets the queryable session ids.
14193
14432
  */
14194
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>;
14195
14442
  /**
14196
14443
  * Gets or sets the page number for paged queries.
14197
14444
  */
@@ -16016,6 +16263,10 @@ type EmailSetting = {
16016
16263
  * Gets or sets the course Id.
16017
16264
  */
16018
16265
  courseId?: string | null;
16266
+ /**
16267
+ * Gets or sets the sellable item Id.
16268
+ */
16269
+ sellableItemId?: string | null;
16019
16270
  /**
16020
16271
  * Gets or sets the order confirmation text.
16021
16272
  */
@@ -16126,7 +16377,7 @@ declare class EmailSettingsService {
16126
16377
  * @returns EmailSettingPage OK
16127
16378
  * @throws ApiError
16128
16379
  */
16129
- 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, }: {
16130
16381
  /**
16131
16382
  * Gets or sets the queryable Provider Id.
16132
16383
  */
@@ -16147,6 +16398,10 @@ declare class EmailSettingsService {
16147
16398
  * Gets or sets the queryable Course Id.
16148
16399
  */
16149
16400
  courseId?: string;
16401
+ /**
16402
+ * Gets or sets the queryable sellable item Id.
16403
+ */
16404
+ sellableItemId?: string;
16150
16405
  /**
16151
16406
  * Gets or sets the page number for paged queries.
16152
16407
  */
@@ -16230,7 +16485,7 @@ declare class EmailSettingsService {
16230
16485
  * @returns boolean OK
16231
16486
  * @throws ApiError
16232
16487
  */
16233
- 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, }: {
16234
16489
  /**
16235
16490
  * Gets or sets the queryable Provider Id.
16236
16491
  */
@@ -16251,6 +16506,10 @@ declare class EmailSettingsService {
16251
16506
  * Gets or sets the queryable Course Id.
16252
16507
  */
16253
16508
  courseId?: string;
16509
+ /**
16510
+ * Gets or sets the queryable sellable item Id.
16511
+ */
16512
+ sellableItemId?: string;
16254
16513
  /**
16255
16514
  * Gets or sets the page number for paged queries.
16256
16515
  */
@@ -16301,7 +16560,7 @@ declare class EmailSettingsService {
16301
16560
  * @returns number OK
16302
16561
  * @throws ApiError
16303
16562
  */
16304
- 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, }: {
16305
16564
  /**
16306
16565
  * Gets or sets the queryable Provider Id.
16307
16566
  */
@@ -16322,6 +16581,10 @@ declare class EmailSettingsService {
16322
16581
  * Gets or sets the queryable Course Id.
16323
16582
  */
16324
16583
  courseId?: string;
16584
+ /**
16585
+ * Gets or sets the queryable sellable item Id.
16586
+ */
16587
+ sellableItemId?: string;
16325
16588
  /**
16326
16589
  * Gets or sets the page number for paged queries.
16327
16590
  */
@@ -16372,7 +16635,7 @@ declare class EmailSettingsService {
16372
16635
  * @returns EmailSetting OK
16373
16636
  * @throws ApiError
16374
16637
  */
16375
- 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, }: {
16376
16639
  /**
16377
16640
  * Gets or sets the queryable Provider Id.
16378
16641
  */
@@ -16393,6 +16656,10 @@ declare class EmailSettingsService {
16393
16656
  * Gets or sets the queryable Course Id.
16394
16657
  */
16395
16658
  courseId?: string;
16659
+ /**
16660
+ * Gets or sets the queryable sellable item Id.
16661
+ */
16662
+ sellableItemId?: string;
16396
16663
  /**
16397
16664
  * Gets or sets the page number for paged queries.
16398
16665
  */
@@ -16443,7 +16710,7 @@ declare class EmailSettingsService {
16443
16710
  * @returns EmailSetting OK
16444
16711
  * @throws ApiError
16445
16712
  */
16446
- 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, }: {
16447
16714
  /**
16448
16715
  * Gets or sets the queryable Provider Id.
16449
16716
  */
@@ -16464,6 +16731,10 @@ declare class EmailSettingsService {
16464
16731
  * Gets or sets the queryable Course Id.
16465
16732
  */
16466
16733
  courseId?: string;
16734
+ /**
16735
+ * Gets or sets the queryable sellable item Id.
16736
+ */
16737
+ sellableItemId?: string;
16467
16738
  /**
16468
16739
  * Gets or sets the page number for paged queries.
16469
16740
  */
@@ -17862,6 +18133,10 @@ type GenericActivity = {
17862
18133
  * Gets or sets the courses sessions (only applicable to courses).
17863
18134
  */
17864
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;
17865
18140
  };
17866
18141
 
17867
18142
  type GenericActivityPage = {
@@ -19789,7 +20064,7 @@ declare class ImagesService {
19789
20064
  * @returns ImagePage OK
19790
20065
  * @throws ApiError
19791
20066
  */
19792
- 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, }: {
19793
20068
  /**
19794
20069
  * Gets or sets the queryable venue id.
19795
20070
  */
@@ -19822,6 +20097,10 @@ declare class ImagesService {
19822
20097
  * Gets or sets the queryable course ids.
19823
20098
  */
19824
20099
  courseIds?: Array<string>;
20100
+ /**
20101
+ * Gets or sets the queryable sellable item ids.
20102
+ */
20103
+ sellableItemIds?: Array<string>;
19825
20104
  /**
19826
20105
  * Gets or sets the queryable programme id.
19827
20106
  */
@@ -19913,7 +20192,7 @@ declare class ImagesService {
19913
20192
  * @returns boolean OK
19914
20193
  * @throws ApiError
19915
20194
  */
19916
- 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, }: {
19917
20196
  /**
19918
20197
  * Gets or sets the queryable venue id.
19919
20198
  */
@@ -19946,6 +20225,10 @@ declare class ImagesService {
19946
20225
  * Gets or sets the queryable course ids.
19947
20226
  */
19948
20227
  courseIds?: Array<string>;
20228
+ /**
20229
+ * Gets or sets the queryable sellable item ids.
20230
+ */
20231
+ sellableItemIds?: Array<string>;
19949
20232
  /**
19950
20233
  * Gets or sets the queryable programme id.
19951
20234
  */
@@ -20004,7 +20287,7 @@ declare class ImagesService {
20004
20287
  * @returns number OK
20005
20288
  * @throws ApiError
20006
20289
  */
20007
- 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, }: {
20008
20291
  /**
20009
20292
  * Gets or sets the queryable venue id.
20010
20293
  */
@@ -20037,6 +20320,10 @@ declare class ImagesService {
20037
20320
  * Gets or sets the queryable course ids.
20038
20321
  */
20039
20322
  courseIds?: Array<string>;
20323
+ /**
20324
+ * Gets or sets the queryable sellable item ids.
20325
+ */
20326
+ sellableItemIds?: Array<string>;
20040
20327
  /**
20041
20328
  * Gets or sets the queryable programme id.
20042
20329
  */
@@ -20095,7 +20382,7 @@ declare class ImagesService {
20095
20382
  * @returns Image OK
20096
20383
  * @throws ApiError
20097
20384
  */
20098
- 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, }: {
20099
20386
  /**
20100
20387
  * Gets or sets the queryable venue id.
20101
20388
  */
@@ -20128,6 +20415,10 @@ declare class ImagesService {
20128
20415
  * Gets or sets the queryable course ids.
20129
20416
  */
20130
20417
  courseIds?: Array<string>;
20418
+ /**
20419
+ * Gets or sets the queryable sellable item ids.
20420
+ */
20421
+ sellableItemIds?: Array<string>;
20131
20422
  /**
20132
20423
  * Gets or sets the queryable programme id.
20133
20424
  */
@@ -20186,7 +20477,7 @@ declare class ImagesService {
20186
20477
  * @returns Image OK
20187
20478
  * @throws ApiError
20188
20479
  */
20189
- 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, }: {
20190
20481
  /**
20191
20482
  * Gets or sets the queryable venue id.
20192
20483
  */
@@ -20219,6 +20510,10 @@ declare class ImagesService {
20219
20510
  * Gets or sets the queryable course ids.
20220
20511
  */
20221
20512
  courseIds?: Array<string>;
20513
+ /**
20514
+ * Gets or sets the queryable sellable item ids.
20515
+ */
20516
+ sellableItemIds?: Array<string>;
20222
20517
  /**
20223
20518
  * Gets or sets the queryable programme id.
20224
20519
  */
@@ -22615,6 +22910,10 @@ type OrderPatchItem = {
22615
22910
  * Gets or sets the course id.
22616
22911
  */
22617
22912
  courseId?: string | null;
22913
+ /**
22914
+ * Gets or sets the sellable item id.
22915
+ */
22916
+ sellableItemId?: string | null;
22618
22917
  /**
22619
22918
  * Gets or sets the offer id.
22620
22919
  */
@@ -25556,6 +25855,10 @@ type OfferPatch = {
25556
25855
  * Gets or sets the course id.
25557
25856
  */
25558
25857
  courseId?: string | null;
25858
+ /**
25859
+ * Gets or sets the sellable item id.
25860
+ */
25861
+ sellableItemId?: string | null;
25559
25862
  /**
25560
25863
  * Gets or sets the survey id.
25561
25864
  */
@@ -25602,6 +25905,10 @@ type OfferPost = {
25602
25905
  * Gets or sets the course id.
25603
25906
  */
25604
25907
  courseId?: string | null;
25908
+ /**
25909
+ * Gets or sets the sellable item id.
25910
+ */
25911
+ sellableItemId?: string | null;
25605
25912
  /**
25606
25913
  * Gets or sets the survey id.
25607
25914
  */
@@ -25703,7 +26010,7 @@ declare class OffersService {
25703
26010
  * @returns OfferPage OK
25704
26011
  * @throws ApiError
25705
26012
  */
25706
- 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, }: {
25707
26014
  /**
25708
26015
  * Gets or sets the queryable ids.
25709
26016
  */
@@ -25740,6 +26047,14 @@ declare class OffersService {
25740
26047
  * Gets or sets the queryable course ids.
25741
26048
  */
25742
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>;
25743
26058
  /**
25744
26059
  * Gets or sets the queryable slot offer slot id.
25745
26060
  */
@@ -25843,7 +26158,7 @@ declare class OffersService {
25843
26158
  * @returns boolean OK
25844
26159
  * @throws ApiError
25845
26160
  */
25846
- 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, }: {
25847
26162
  /**
25848
26163
  * Gets or sets the queryable ids.
25849
26164
  */
@@ -25880,6 +26195,14 @@ declare class OffersService {
25880
26195
  * Gets or sets the queryable course ids.
25881
26196
  */
25882
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>;
25883
26206
  /**
25884
26207
  * Gets or sets the queryable slot offer slot id.
25885
26208
  */
@@ -25950,7 +26273,7 @@ declare class OffersService {
25950
26273
  * @returns number OK
25951
26274
  * @throws ApiError
25952
26275
  */
25953
- 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, }: {
25954
26277
  /**
25955
26278
  * Gets or sets the queryable ids.
25956
26279
  */
@@ -25987,6 +26310,14 @@ declare class OffersService {
25987
26310
  * Gets or sets the queryable course ids.
25988
26311
  */
25989
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>;
25990
26321
  /**
25991
26322
  * Gets or sets the queryable slot offer slot id.
25992
26323
  */
@@ -26057,7 +26388,7 @@ declare class OffersService {
26057
26388
  * @returns Offer OK
26058
26389
  * @throws ApiError
26059
26390
  */
26060
- 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, }: {
26061
26392
  /**
26062
26393
  * Gets or sets the queryable ids.
26063
26394
  */
@@ -26094,6 +26425,14 @@ declare class OffersService {
26094
26425
  * Gets or sets the queryable course ids.
26095
26426
  */
26096
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>;
26097
26436
  /**
26098
26437
  * Gets or sets the queryable slot offer slot id.
26099
26438
  */
@@ -26164,7 +26503,7 @@ declare class OffersService {
26164
26503
  * @returns Offer OK
26165
26504
  * @throws ApiError
26166
26505
  */
26167
- 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, }: {
26168
26507
  /**
26169
26508
  * Gets or sets the queryable ids.
26170
26509
  */
@@ -26201,6 +26540,14 @@ declare class OffersService {
26201
26540
  * Gets or sets the queryable course ids.
26202
26541
  */
26203
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>;
26204
26551
  /**
26205
26552
  * Gets or sets the queryable slot offer slot id.
26206
26553
  */
@@ -28981,7 +29328,7 @@ declare class OrderItemsService {
28981
29328
  * @returns OrderItemPage OK
28982
29329
  * @throws ApiError
28983
29330
  */
28984
- 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, }: {
28985
29332
  /**
28986
29333
  * Gets or sets the queryable order item ids.
28987
29334
  */
@@ -29002,6 +29349,10 @@ declare class OrderItemsService {
29002
29349
  * Gets or sets the queryable course id.
29003
29350
  */
29004
29351
  courseId?: string;
29352
+ /**
29353
+ * Gets or sets the queryable sellable item id.
29354
+ */
29355
+ sellableItemId?: string;
29005
29356
  /**
29006
29357
  * Gets or sets the queryable offer id.
29007
29358
  */
@@ -29113,7 +29464,7 @@ declare class OrderItemsService {
29113
29464
  * @returns boolean OK
29114
29465
  * @throws ApiError
29115
29466
  */
29116
- 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, }: {
29117
29468
  /**
29118
29469
  * Gets or sets the queryable order item ids.
29119
29470
  */
@@ -29134,6 +29485,10 @@ declare class OrderItemsService {
29134
29485
  * Gets or sets the queryable course id.
29135
29486
  */
29136
29487
  courseId?: string;
29488
+ /**
29489
+ * Gets or sets the queryable sellable item id.
29490
+ */
29491
+ sellableItemId?: string;
29137
29492
  /**
29138
29493
  * Gets or sets the queryable offer id.
29139
29494
  */
@@ -29212,7 +29567,7 @@ declare class OrderItemsService {
29212
29567
  * @returns number OK
29213
29568
  * @throws ApiError
29214
29569
  */
29215
- 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, }: {
29216
29571
  /**
29217
29572
  * Gets or sets the queryable order item ids.
29218
29573
  */
@@ -29233,6 +29588,10 @@ declare class OrderItemsService {
29233
29588
  * Gets or sets the queryable course id.
29234
29589
  */
29235
29590
  courseId?: string;
29591
+ /**
29592
+ * Gets or sets the queryable sellable item id.
29593
+ */
29594
+ sellableItemId?: string;
29236
29595
  /**
29237
29596
  * Gets or sets the queryable offer id.
29238
29597
  */
@@ -29311,7 +29670,7 @@ declare class OrderItemsService {
29311
29670
  * @returns OrderItem OK
29312
29671
  * @throws ApiError
29313
29672
  */
29314
- 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, }: {
29315
29674
  /**
29316
29675
  * Gets or sets the queryable order item ids.
29317
29676
  */
@@ -29332,6 +29691,10 @@ declare class OrderItemsService {
29332
29691
  * Gets or sets the queryable course id.
29333
29692
  */
29334
29693
  courseId?: string;
29694
+ /**
29695
+ * Gets or sets the queryable sellable item id.
29696
+ */
29697
+ sellableItemId?: string;
29335
29698
  /**
29336
29699
  * Gets or sets the queryable offer id.
29337
29700
  */
@@ -29410,7 +29773,7 @@ declare class OrderItemsService {
29410
29773
  * @returns OrderItem OK
29411
29774
  * @throws ApiError
29412
29775
  */
29413
- 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, }: {
29414
29777
  /**
29415
29778
  * Gets or sets the queryable order item ids.
29416
29779
  */
@@ -29431,6 +29794,10 @@ declare class OrderItemsService {
29431
29794
  * Gets or sets the queryable course id.
29432
29795
  */
29433
29796
  courseId?: string;
29797
+ /**
29798
+ * Gets or sets the queryable sellable item id.
29799
+ */
29800
+ sellableItemId?: string;
29434
29801
  /**
29435
29802
  * Gets or sets the queryable offer id.
29436
29803
  */
@@ -38505,7 +38872,7 @@ declare class PublicOrderItemsService {
38505
38872
  * @returns OrderItemPage OK
38506
38873
  * @throws ApiError
38507
38874
  */
38508
- 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, }: {
38509
38876
  xTenantSubdomain?: string;
38510
38877
  /**
38511
38878
  * Gets or sets the queryable order item ids.
@@ -38527,6 +38894,10 @@ declare class PublicOrderItemsService {
38527
38894
  * Gets or sets the queryable course id.
38528
38895
  */
38529
38896
  courseId?: string;
38897
+ /**
38898
+ * Gets or sets the queryable sellable item id.
38899
+ */
38900
+ sellableItemId?: string;
38530
38901
  /**
38531
38902
  * Gets or sets the queryable offer id.
38532
38903
  */
@@ -38714,7 +39085,7 @@ declare class PublicOrderItemsService {
38714
39085
  * @returns boolean OK
38715
39086
  * @throws ApiError
38716
39087
  */
38717
- 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, }: {
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, }: {
38718
39089
  /**
38719
39090
  * The tenants subdomain.
38720
39091
  */
@@ -38739,6 +39110,10 @@ declare class PublicOrderItemsService {
38739
39110
  * Gets or sets the queryable course id.
38740
39111
  */
38741
39112
  courseId?: string;
39113
+ /**
39114
+ * Gets or sets the queryable sellable item id.
39115
+ */
39116
+ sellableItemId?: string;
38742
39117
  /**
38743
39118
  * Gets or sets the queryable offer id.
38744
39119
  */
@@ -40693,10 +41068,15 @@ declare class PublicScheduledSessionsService {
40693
41068
  }): CancelablePromise<boolean>;
40694
41069
  }
40695
41070
 
41071
+ type SellableItemPage = {
41072
+ pagination: Pagination;
41073
+ readonly items: Array<SellableItem>;
41074
+ };
41075
+
40696
41076
  /**
40697
- * Patch model for session updates.
41077
+ * Patch model for sellable item updates.
40698
41078
  */
40699
- type SessionPatch = {
41079
+ type SellableItemPatch = {
40700
41080
  /**
40701
41081
  * Gets or sets the tenant Id.
40702
41082
  */
@@ -40706,61 +41086,57 @@ type SessionPatch = {
40706
41086
  */
40707
41087
  id: string;
40708
41088
  /**
40709
- * Gets or sets the session provider id.
40710
- */
40711
- providerId?: string | null;
40712
- /**
40713
- * Gets or sets the venue id for the activity.
41089
+ * Gets or sets the venue id.
40714
41090
  */
40715
- venueId: string;
41091
+ venueId?: string | null;
40716
41092
  /**
40717
- * Gets or sets the Activity Id.
41093
+ * Gets or sets the activity category id.
40718
41094
  */
40719
- activityId: number;
41095
+ activityId?: number | null;
40720
41096
  /**
40721
- * Gets or sets the Programme Id.
41097
+ * Gets or sets the name.
40722
41098
  */
40723
- programmeId?: string | null;
41099
+ name?: string | null;
40724
41100
  /**
40725
- * Gets or sets the post completion survey Id.
41101
+ * Gets or sets the description.
40726
41102
  */
40727
- postCompletionSurveyId?: string | null;
41103
+ description?: string | null;
40728
41104
  /**
40729
- * Gets or sets the survey Id.
41105
+ * Gets or sets the image url.
40730
41106
  */
40731
- surveyId?: string | null;
41107
+ imageUrl?: string | null;
40732
41108
  /**
40733
- * Gets or sets the cancellation policy id.
41109
+ * Gets or sets a value indicating whether the item is bookable on the web.
40734
41110
  */
40735
- cancellationPolicyId?: string;
41111
+ online?: boolean | null;
40736
41112
  /**
40737
- * Gets or sets the payment policy id.
41113
+ * Gets or sets remaining stock.
40738
41114
  */
40739
- paymentPolicyId?: string;
41115
+ stockQuantity?: number;
40740
41116
  /**
40741
- * Gets or sets the session name.
41117
+ * Gets or sets a value indicating whether the item is featured.
40742
41118
  */
40743
- name: string;
41119
+ featured?: boolean | null;
40744
41120
  /**
40745
- * Gets or sets the session description.
41121
+ * Gets or sets a value indicating whether the item is private.
40746
41122
  */
40747
- description?: string | null;
41123
+ private?: boolean | null;
40748
41124
  /**
40749
- * Gets or sets the session image url.
41125
+ * Gets or sets the checkout survey id.
40750
41126
  */
40751
- imageUrl?: string | null;
41127
+ surveyId?: string | null;
40752
41128
  /**
40753
- * Gets or sets the meeting instructions.
41129
+ * Gets or sets the post-completion survey id.
40754
41130
  */
40755
- meetingInstructions?: string | null;
41131
+ postCompletionSurveyId?: string | null;
40756
41132
  /**
40757
- * Gets or sets the session capacity.
41133
+ * Gets or sets the cancellation policy id.
40758
41134
  */
40759
- capacity: number;
41135
+ cancellationPolicyId?: string | null;
40760
41136
  /**
40761
- * Gets or sets a value indicating whether the session has unlimited capacity.
41137
+ * Gets or sets the payment policy id.
40762
41138
  */
40763
- capacityUnlimited?: boolean | null;
41139
+ paymentPolicyId?: string | null;
40764
41140
  gender?: Gender;
40765
41141
  /**
40766
41142
  * Gets or sets the min age.
@@ -40771,17 +41147,9 @@ type SessionPatch = {
40771
41147
  */
40772
41148
  maxAge?: number | null;
40773
41149
  /**
40774
- * 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.
40775
41151
  */
40776
41152
  noAgeRestriction?: boolean | null;
40777
- /**
40778
- * Gets or sets a value indicating whether session is private or no.
40779
- */
40780
- private?: boolean | null;
40781
- /**
40782
- * Gets or sets a value indicating whether the session is online and can take bookings.
40783
- */
40784
- online?: boolean | null;
40785
41153
  /**
40786
41154
  * Gets or sets additional support options.
40787
41155
  */
@@ -40810,78 +41178,190 @@ type SessionPatch = {
40810
41178
  * Gets or sets the admin contact email.
40811
41179
  */
40812
41180
  adminContactEmail?: string | null;
40813
- checkoutPlatform?: CheckoutPlatform;
40814
- /**
40815
- * Gets or sets the booking link override if checkout will occur externally.
40816
- */
40817
- bookingLinkOverride?: string | null;
40818
41181
  /**
40819
- * Gets or sets the session that this course was originally copied from.
40820
- */
40821
- copiedFrom?: string | null;
40822
- /**
40823
- * Gets or sets a value indicating whether the Session can be used as a template.
41182
+ * Gets or sets a value indicating whether to send reminder emails.
40824
41183
  */
40825
- allowTemplating?: boolean | null;
41184
+ sendReminder?: boolean | null;
40826
41185
  /**
40827
- * Gets or sets the Reminder Hours Before Start.
41186
+ * Gets or sets the reminder hours before start.
40828
41187
  */
40829
41188
  reminderHoursBeforeStart?: number | null;
41189
+ checkoutPlatform?: CheckoutPlatform;
40830
41190
  /**
40831
- * Gets or sets a value indicating whether the session is archived and should be ignored under normal operation.
40832
- */
40833
- archived?: boolean | null;
40834
- /**
40835
- * Gets or sets a value indicating whether the session is deleted and should be ignored under normal operation.
41191
+ * Gets or sets the booking link override.
40836
41192
  */
40837
- deleted?: boolean | null;
41193
+ bookingLinkOverride?: string | null;
40838
41194
  /**
40839
- * Gets or sets a value indicating whether pre-registration / waitlist is enabled for this session template.
41195
+ * Gets or sets a value indicating whether pre-registration is enabled.
40840
41196
  */
40841
41197
  preRegistrationEnabled?: boolean | null;
40842
41198
  /**
40843
- * Gets or sets when pre-registration opens; null means no start boundary.
41199
+ * Gets or sets when pre-registration opens.
40844
41200
  */
40845
41201
  preRegistrationOpensAt?: string | null;
40846
41202
  /**
40847
- * Gets or sets when pre-registration closes; null means no end boundary.
41203
+ * Gets or sets when pre-registration closes.
40848
41204
  */
40849
41205
  preRegistrationClosesAt?: string | null;
40850
41206
  /**
40851
- * Gets or sets optional storefront message for pre-registration.
41207
+ * Gets or sets the pre-registration message.
40852
41208
  */
40853
41209
  preRegistrationMessage?: string | null;
40854
41210
  emailSettings?: UpdateEmailSettings;
40855
41211
  /**
40856
- * Gets or sets the session offers.
41212
+ * Gets or sets ticket types / offers for this item.
40857
41213
  */
40858
41214
  offers?: Array<UpdateOffer> | null;
40859
- customFields?: CustomFieldsBulkUpdate;
40860
41215
  };
40861
41216
 
40862
41217
  /**
40863
- * Post model for session inserts.
41218
+ * Post model for sellable item inserts.
40864
41219
  */
40865
- type SessionPost = {
41220
+ type SellableItemPost = {
40866
41221
  /**
40867
41222
  * Gets or sets the tenant Id.
40868
41223
  */
40869
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;
40870
41351
  emailSettings?: UpdateEmailSettings;
40871
- customFields?: CustomFieldsBulkUpdate;
40872
41352
  };
40873
41353
 
40874
- declare class PublicSessionsService {
41354
+ declare class PublicSellableItemsService {
40875
41355
  readonly httpRequest: BaseHttpRequest;
40876
41356
  constructor(httpRequest: BaseHttpRequest);
40877
41357
  /**
40878
- * @returns Session OK
41358
+ * @returns SellableItem OK
40879
41359
  * @throws ApiError
40880
41360
  */
40881
41361
  getObject({ id, xTenantSubdomain, }: {
40882
41362
  id: string;
40883
41363
  xTenantSubdomain?: string;
40884
- }): CancelablePromise<Session>;
41364
+ }): CancelablePromise<SellableItem>;
40885
41365
  /**
40886
41366
  * Deletes the resource.
40887
41367
  * @returns any OK
@@ -40898,13 +41378,13 @@ declare class PublicSessionsService {
40898
41378
  xTenantSubdomain?: string;
40899
41379
  }): CancelablePromise<any>;
40900
41380
  /**
40901
- * @returns SessionPage OK
41381
+ * @returns SellableItemPage OK
40902
41382
  * @throws ApiError
40903
41383
  */
40904
- getPage({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
41384
+ getPage({ xTenantSubdomain, ids, venueId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
40905
41385
  xTenantSubdomain?: string;
40906
41386
  /**
40907
- * Gets or sets the queryable session ids.
41387
+ * Gets or sets the queryable ids.
40908
41388
  */
40909
41389
  ids?: Array<string>;
40910
41390
  /**
@@ -40912,137 +41392,557 @@ declare class PublicSessionsService {
40912
41392
  */
40913
41393
  venueId?: string;
40914
41394
  /**
40915
- * Gets or sets the queryable Survey Id.
40916
- */
40917
- surveyId?: string;
40918
- /**
40919
- * Gets or sets the queryable Cancellation policy Id.
40920
- */
40921
- cancellationPolicyId?: string;
40922
- /**
40923
- * Gets or sets the queryable Payment policy Id.
40924
- */
40925
- paymentPolicyId?: string;
40926
- /**
40927
- * Gets or sets a value indicating whether to only return sessions with future slots available.
40928
- */
40929
- futureOnly?: boolean;
40930
- /**
40931
- * Gets or sets a value indicating whether return online sessions.
41395
+ * Gets or sets a value indicating whether return online items.
40932
41396
  */
40933
41397
  online?: boolean;
40934
41398
  /**
40935
- * Gets or sets a value indicating whether the session is featured on the storefront.
40936
- */
40937
- featured?: boolean;
40938
- /**
40939
- * Gets or sets a value indicating whether the session is private or open.
40940
- */
40941
- _private?: boolean;
40942
- /**
40943
- * Gets or sets the queryable Programme Id.
40944
- */
40945
- programmeId?: string;
40946
- /**
40947
- * Gets or sets the queryable Provider Id.
40948
- */
40949
- providerId?: string;
40950
- /**
40951
- * Gets or sets a value indicating whether to inlcude the sessions next availability.
40952
- */
40953
- includeNextOpportunity?: boolean;
40954
- /**
40955
- * Gets or sets a value indicating whether to include templatable sessions.
40956
- */
40957
- allowTemplating?: boolean;
40958
- /**
40959
- * Gets or sets a value indicating whether to include archived sessions.
41399
+ * Gets or sets a value indicating whether to include archived items.
40960
41400
  */
40961
41401
  archived?: boolean;
40962
41402
  /**
40963
- * Gets or sets a value indicating whether to include deleted sessions.
41403
+ * Gets or sets a value indicating whether to include deleted items.
40964
41404
  */
40965
41405
  deleted?: boolean;
40966
41406
  /**
40967
- * Gets or sets a value indicating this an openactive reaquest.
40968
- */
40969
- openActiveUpdate?: boolean;
40970
- /**
40971
- * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
41407
+ * Gets or sets a value indicating this is a request from the partner dashboard.
40972
41408
  */
40973
41409
  dashboardRequest?: boolean;
40974
- /**
40975
- * Gets or sets a value indicating whether to include only sessions by given NetworkId.
40976
- */
40977
- networkId?: string;
40978
- /**
40979
- * Gets or sets Distance.
40980
- */
40981
- distance?: number;
40982
- /**
40983
- * Gets or sets MinAgeLTE.
40984
- */
40985
- minAgeLte?: number;
40986
- /**
40987
- * Gets or sets MinAgeGTE.
40988
- */
40989
- minAgeGte?: number;
40990
- /**
40991
- * Gets or sets MaxAgeLTE.
40992
- */
40993
- maxAgeLte?: number;
40994
- /**
40995
- * Gets or sets MaxAgeGTE.
40996
- */
40997
- maxAgeGte?: number;
40998
- /**
40999
- * Gets or sets PriceTotalGTE.
41000
- */
41001
- priceTotalGte?: number;
41002
- /**
41003
- * Gets or sets PriceTotalLTE.
41004
- */
41005
- priceTotalLte?: number;
41006
- /**
41007
- * Gets or sets TimeOfDay.
41008
- */
41009
- timeOfDay?: string;
41010
- /**
41011
- * Gets or sets StartDateTimeGTE.
41012
- */
41013
- startDateTimeGte?: string;
41014
- /**
41015
- * Gets or sets EndDateTimeLTE.
41016
- */
41017
- endDateTimeLte?: string;
41018
- /**
41019
- * Gets or sets Gender.
41020
- */
41021
- gender?: Gender;
41022
- /**
41023
- * Gets or sets PeriodsOfWeek.
41024
- */
41025
- periodsOfWeek?: PeriodsOfWeek;
41026
- /**
41027
- * Gets or sets SearchGeoCenter.
41028
- */
41029
- searchGeoCenter?: string;
41030
- /**
41031
- * Gets or sets AdditionalSupport.
41032
- */
41033
- additionalSupport?: Array<string>;
41034
- /**
41035
- * Gets or sets Activity id.
41036
- */
41037
- activityId?: number;
41038
- /**
41039
- * Gets or sets the queryable session template field permissions Id.
41040
- */
41041
- templateFieldPermissionsId?: string;
41042
- /**
41043
- * Gets or sets the queryable session template field permission ids.
41044
- */
41045
- templateFieldPermissionsIds?: Array<string>;
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;
41685
+ /**
41686
+ * Gets or sets additional support options.
41687
+ */
41688
+ additionalSupport?: Array<string> | null;
41689
+ /**
41690
+ * Gets or sets the contact name.
41691
+ */
41692
+ contactName?: string | null;
41693
+ /**
41694
+ * Gets or sets the contact phone.
41695
+ */
41696
+ contactPhone?: string | null;
41697
+ /**
41698
+ * Gets or sets the contact email.
41699
+ */
41700
+ contactEmail?: string | null;
41701
+ /**
41702
+ * Gets or sets the admin contact name.
41703
+ */
41704
+ adminContactName?: string | null;
41705
+ /**
41706
+ * Gets or sets the admin contact phone.
41707
+ */
41708
+ adminContactPhone?: string | null;
41709
+ /**
41710
+ * Gets or sets the admin contact email.
41711
+ */
41712
+ adminContactEmail?: string | null;
41713
+ checkoutPlatform?: CheckoutPlatform;
41714
+ /**
41715
+ * Gets or sets the booking link override if checkout will occur externally.
41716
+ */
41717
+ bookingLinkOverride?: string | null;
41718
+ /**
41719
+ * Gets or sets the session that this course was originally copied from.
41720
+ */
41721
+ copiedFrom?: string | null;
41722
+ /**
41723
+ * Gets or sets a value indicating whether the Session can be used as a template.
41724
+ */
41725
+ allowTemplating?: boolean | null;
41726
+ /**
41727
+ * Gets or sets the Reminder Hours Before Start.
41728
+ */
41729
+ reminderHoursBeforeStart?: number | null;
41730
+ /**
41731
+ * Gets or sets a value indicating whether the session is archived and should be ignored under normal operation.
41732
+ */
41733
+ archived?: boolean | null;
41734
+ /**
41735
+ * Gets or sets a value indicating whether the session is deleted and should be ignored under normal operation.
41736
+ */
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;
41754
+ emailSettings?: UpdateEmailSettings;
41755
+ /**
41756
+ * Gets or sets the session offers.
41757
+ */
41758
+ offers?: Array<UpdateOffer> | null;
41759
+ customFields?: CustomFieldsBulkUpdate;
41760
+ };
41761
+
41762
+ /**
41763
+ * Post model for session inserts.
41764
+ */
41765
+ type SessionPost = {
41766
+ /**
41767
+ * Gets or sets the tenant Id.
41768
+ */
41769
+ tenantId: string;
41770
+ emailSettings?: UpdateEmailSettings;
41771
+ customFields?: CustomFieldsBulkUpdate;
41772
+ };
41773
+
41774
+ declare class PublicSessionsService {
41775
+ readonly httpRequest: BaseHttpRequest;
41776
+ constructor(httpRequest: BaseHttpRequest);
41777
+ /**
41778
+ * @returns Session OK
41779
+ * @throws ApiError
41780
+ */
41781
+ getObject({ id, xTenantSubdomain, }: {
41782
+ id: string;
41783
+ xTenantSubdomain?: string;
41784
+ }): CancelablePromise<Session>;
41785
+ /**
41786
+ * Deletes the resource.
41787
+ * @returns any OK
41788
+ * @throws ApiError
41789
+ */
41790
+ deleteById({ id, xTenantSubdomain, }: {
41791
+ /**
41792
+ * The <typeparamref name="TObject" /> id.
41793
+ */
41794
+ id: string;
41795
+ /**
41796
+ * The tenants subdomain.
41797
+ */
41798
+ xTenantSubdomain?: string;
41799
+ }): CancelablePromise<any>;
41800
+ /**
41801
+ * @returns SessionPage OK
41802
+ * @throws ApiError
41803
+ */
41804
+ getPage({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, _private, programmeId, providerId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, searchGeoCenter, additionalSupport, activityId, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
41805
+ xTenantSubdomain?: string;
41806
+ /**
41807
+ * Gets or sets the queryable session ids.
41808
+ */
41809
+ ids?: Array<string>;
41810
+ /**
41811
+ * Gets or sets the queryable Venue Id.
41812
+ */
41813
+ venueId?: string;
41814
+ /**
41815
+ * Gets or sets the queryable Survey Id.
41816
+ */
41817
+ surveyId?: string;
41818
+ /**
41819
+ * Gets or sets the queryable Cancellation policy Id.
41820
+ */
41821
+ cancellationPolicyId?: string;
41822
+ /**
41823
+ * Gets or sets the queryable Payment policy Id.
41824
+ */
41825
+ paymentPolicyId?: string;
41826
+ /**
41827
+ * Gets or sets a value indicating whether to only return sessions with future slots available.
41828
+ */
41829
+ futureOnly?: boolean;
41830
+ /**
41831
+ * Gets or sets a value indicating whether return online sessions.
41832
+ */
41833
+ online?: boolean;
41834
+ /**
41835
+ * Gets or sets a value indicating whether the session is featured on the storefront.
41836
+ */
41837
+ featured?: boolean;
41838
+ /**
41839
+ * Gets or sets a value indicating whether the session is private or open.
41840
+ */
41841
+ _private?: boolean;
41842
+ /**
41843
+ * Gets or sets the queryable Programme Id.
41844
+ */
41845
+ programmeId?: string;
41846
+ /**
41847
+ * Gets or sets the queryable Provider Id.
41848
+ */
41849
+ providerId?: string;
41850
+ /**
41851
+ * Gets or sets a value indicating whether to inlcude the sessions next availability.
41852
+ */
41853
+ includeNextOpportunity?: boolean;
41854
+ /**
41855
+ * Gets or sets a value indicating whether to include templatable sessions.
41856
+ */
41857
+ allowTemplating?: boolean;
41858
+ /**
41859
+ * Gets or sets a value indicating whether to include archived sessions.
41860
+ */
41861
+ archived?: boolean;
41862
+ /**
41863
+ * Gets or sets a value indicating whether to include deleted sessions.
41864
+ */
41865
+ deleted?: boolean;
41866
+ /**
41867
+ * Gets or sets a value indicating this an openactive reaquest.
41868
+ */
41869
+ openActiveUpdate?: boolean;
41870
+ /**
41871
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
41872
+ */
41873
+ dashboardRequest?: boolean;
41874
+ /**
41875
+ * Gets or sets a value indicating whether to include only sessions by given NetworkId.
41876
+ */
41877
+ networkId?: string;
41878
+ /**
41879
+ * Gets or sets Distance.
41880
+ */
41881
+ distance?: number;
41882
+ /**
41883
+ * Gets or sets MinAgeLTE.
41884
+ */
41885
+ minAgeLte?: number;
41886
+ /**
41887
+ * Gets or sets MinAgeGTE.
41888
+ */
41889
+ minAgeGte?: number;
41890
+ /**
41891
+ * Gets or sets MaxAgeLTE.
41892
+ */
41893
+ maxAgeLte?: number;
41894
+ /**
41895
+ * Gets or sets MaxAgeGTE.
41896
+ */
41897
+ maxAgeGte?: number;
41898
+ /**
41899
+ * Gets or sets PriceTotalGTE.
41900
+ */
41901
+ priceTotalGte?: number;
41902
+ /**
41903
+ * Gets or sets PriceTotalLTE.
41904
+ */
41905
+ priceTotalLte?: number;
41906
+ /**
41907
+ * Gets or sets TimeOfDay.
41908
+ */
41909
+ timeOfDay?: string;
41910
+ /**
41911
+ * Gets or sets StartDateTimeGTE.
41912
+ */
41913
+ startDateTimeGte?: string;
41914
+ /**
41915
+ * Gets or sets EndDateTimeLTE.
41916
+ */
41917
+ endDateTimeLte?: string;
41918
+ /**
41919
+ * Gets or sets Gender.
41920
+ */
41921
+ gender?: Gender;
41922
+ /**
41923
+ * Gets or sets PeriodsOfWeek.
41924
+ */
41925
+ periodsOfWeek?: PeriodsOfWeek;
41926
+ /**
41927
+ * Gets or sets SearchGeoCenter.
41928
+ */
41929
+ searchGeoCenter?: string;
41930
+ /**
41931
+ * Gets or sets AdditionalSupport.
41932
+ */
41933
+ additionalSupport?: Array<string>;
41934
+ /**
41935
+ * Gets or sets Activity id.
41936
+ */
41937
+ activityId?: number;
41938
+ /**
41939
+ * Gets or sets the queryable session template field permissions Id.
41940
+ */
41941
+ templateFieldPermissionsId?: string;
41942
+ /**
41943
+ * Gets or sets the queryable session template field permission ids.
41944
+ */
41945
+ templateFieldPermissionsIds?: Array<string>;
41046
41946
  /**
41047
41947
  * Gets or sets the page number for paged queries.
41048
41948
  */
@@ -48439,144 +49339,664 @@ declare class ScheduledSessionsService {
48439
49339
  * Gets or sets the sort order direction.
48440
49340
  */
48441
49341
  sortOrderDirection?: SearchSortOrderDirection;
48442
- }): CancelablePromise<Array<ScheduledSession>>;
48443
- }
48444
-
48445
- type ScheduledSessionSchedulePage = {
48446
- pagination: Pagination;
48447
- readonly items: Array<ScheduledSessionSchedule>;
48448
- };
48449
-
48450
- /**
48451
- * Post model for scheduled session schedule updates.
48452
- */
48453
- type ScheduledSessionSchedulePatch = {
48454
- /**
48455
- * Gets or sets the tenant Id.
48456
- */
48457
- tenantId: string;
48458
- /**
48459
- * Gets or sets the Id.
48460
- */
48461
- id: string;
48462
- };
48463
-
48464
- /**
48465
- * Post model for scheduled session schedule inserts.
48466
- */
48467
- type ScheduledSessionSchedulePost = {
48468
- /**
48469
- * Gets or sets the tenant Id.
48470
- */
48471
- tenantId: string;
48472
- /**
48473
- * Gets or sets the session id.
48474
- */
48475
- sessionId: string;
48476
- /**
48477
- * Gets or sets the scheduled session start date time in UTC as is the applications required convention. (this datetime must always be UTC).
48478
- */
48479
- startDateTime: string;
48480
- /**
48481
- * Gets or sets the scheduled session duration.
48482
- */
48483
- durationMinutes: number;
48484
- /**
48485
- * Gets or sets the schedules evaluated rule string.
48486
- */
48487
- rRuleString: string;
48488
- /**
48489
- * Gets or sets the schedules end date.
48490
- */
48491
- recurUntil?: string | null;
48492
- /**
48493
- * Gets or sets a value indicating whether the schedule should recur indefinately.
48494
- */
48495
- recurIndefinately?: boolean | null;
48496
- /**
48497
- * Gets or sets the capacity.
48498
- */
48499
- capacity: number;
48500
- /**
48501
- * Gets or sets a value indicating whether the session has unlimited capacity.
48502
- */
48503
- 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>>;
48504
49824
  /**
48505
- * 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
48506
49828
  */
48507
- transactionId?: string | null;
48508
- };
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
+ }
48509
49900
 
48510
- declare class ScheduledSessionsSchedulesService {
49901
+ declare class SellableItemsService {
48511
49902
  readonly httpRequest: BaseHttpRequest;
48512
49903
  constructor(httpRequest: BaseHttpRequest);
48513
49904
  /**
48514
- * Makes the given schedule Id Active />.
48515
- * @returns ScheduledSessionSchedule OK
49905
+ * Assigns a deal to a sellable item.
49906
+ * @returns SellableItem OK
48516
49907
  * @throws ApiError
48517
49908
  */
48518
- makeActive({ scheduledSessionScheduleId, }: {
49909
+ assignDeal({ sellableItemId, dealId, }: {
48519
49910
  /**
48520
- * The slot schedule Id.
49911
+ * The sellable item id.
48521
49912
  */
48522
- scheduledSessionScheduleId: string;
48523
- }): CancelablePromise<ScheduledSessionSchedule>;
49913
+ sellableItemId: string;
49914
+ /**
49915
+ * The deal id.
49916
+ */
49917
+ dealId: string;
49918
+ }): CancelablePromise<SellableItem>;
48524
49919
  /**
48525
- * Evaluate schedules and insert forward scheduled sessions.
48526
- * @returns number OK
49920
+ * Unassigns a deal from a sellable item.
49921
+ * @returns SellableItem OK
48527
49922
  * @throws ApiError
48528
49923
  */
48529
- 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>;
48530
49934
  /**
48531
- * Cleans table of unconfirmed schedules.
48532
- * @returns number OK
49935
+ * Takes the sellable item offline (not published on the storefront).
49936
+ * @returns SellableItem OK
48533
49937
  * @throws ApiError
48534
49938
  */
48535
- 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>;
48536
49956
  /**
48537
49957
  * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
48538
- * @returns ScheduledSessionSchedule OK
49958
+ * @returns SellableItem OK
48539
49959
  * @throws ApiError
48540
49960
  */
48541
49961
  post({ requestBody, }: {
48542
49962
  /**
48543
49963
  * The <typeparamref name="TObject" /> model.
48544
49964
  */
48545
- requestBody?: ScheduledSessionSchedulePost;
48546
- }): CancelablePromise<ScheduledSessionSchedule>;
49965
+ requestBody?: SellableItemPost;
49966
+ }): CancelablePromise<SellableItem>;
48547
49967
  /**
48548
49968
  * Patches the resource.
48549
- * @returns ScheduledSessionSchedule OK
49969
+ * @returns SellableItem OK
48550
49970
  * @throws ApiError
48551
49971
  */
48552
49972
  patch({ requestBody, }: {
48553
49973
  /**
48554
49974
  * The <typeparamref name="TObject" /> model.
48555
49975
  */
48556
- requestBody?: ScheduledSessionSchedulePatch;
48557
- }): CancelablePromise<ScheduledSessionSchedule>;
49976
+ requestBody?: SellableItemPatch;
49977
+ }): CancelablePromise<SellableItem>;
48558
49978
  /**
48559
49979
  * Inserts a list of resources.
48560
- * @returns ScheduledSessionSchedule OK
49980
+ * @returns SellableItem OK
48561
49981
  * @throws ApiError
48562
49982
  */
48563
49983
  postList({ requestBody, }: {
48564
49984
  /**
48565
49985
  * The list of <typeparamref name="TObject" />.
48566
49986
  */
48567
- requestBody?: Array<ScheduledSessionSchedulePost>;
48568
- }): CancelablePromise<Array<ScheduledSessionSchedule>>;
49987
+ requestBody?: Array<SellableItemPost>;
49988
+ }): CancelablePromise<Array<SellableItem>>;
48569
49989
  /**
48570
49990
  * Patches the resource.
48571
- * @returns ScheduledSessionSchedule OK
49991
+ * @returns SellableItem OK
48572
49992
  * @throws ApiError
48573
49993
  */
48574
49994
  patchWithReferences({ requestBody, }: {
48575
49995
  /**
48576
49996
  * The <typeparamref name="TObject" /> model.
48577
49997
  */
48578
- requestBody?: ScheduledSessionSchedulePatch;
48579
- }): CancelablePromise<ScheduledSessionSchedule>;
49998
+ requestBody?: SellableItemPatch;
49999
+ }): CancelablePromise<SellableItem>;
48580
50000
  /**
48581
50001
  * Deletes the resource.
48582
50002
  * @returns any OK
@@ -48586,38 +50006,38 @@ declare class ScheduledSessionsSchedulesService {
48586
50006
  /**
48587
50007
  * The <typeparamref name="TObject" /> model.
48588
50008
  */
48589
- requestBody?: ScheduledSessionSchedule;
50009
+ requestBody?: SellableItem;
48590
50010
  }): CancelablePromise<any>;
48591
50011
  /**
48592
50012
  * Gets a list of resources.
48593
- * @returns ScheduledSessionSchedulePage OK
50013
+ * @returns SellableItemPage OK
48594
50014
  * @throws ApiError
48595
50015
  */
48596
- 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, }: {
48597
50017
  /**
48598
- * Gets or sets the queryable session id.
50018
+ * Gets or sets the queryable ids.
48599
50019
  */
48600
- sessionId?: string;
50020
+ ids?: Array<string>;
48601
50021
  /**
48602
- * Gets or sets the queryable slot facility Ids.
50022
+ * Gets or sets the queryable Venue Id.
48603
50023
  */
48604
- sessionIds?: Array<string>;
50024
+ venueId?: string;
48605
50025
  /**
48606
- * Gets or sets the queryable slot schedule last run date.
50026
+ * Gets or sets a value indicating whether return online items.
48607
50027
  */
48608
- lastRunDateTimeLte?: string;
50028
+ online?: boolean;
48609
50029
  /**
48610
- * Gets or sets the queryable schedule status.
50030
+ * Gets or sets a value indicating whether to include archived items.
48611
50031
  */
48612
- status?: ScheduleStatus;
50032
+ archived?: boolean;
48613
50033
  /**
48614
- * Gets or sets the queryable schedule statuses.
50034
+ * Gets or sets a value indicating whether to include deleted items.
48615
50035
  */
48616
- statuses?: Array<ScheduleStatus>;
50036
+ deleted?: boolean;
48617
50037
  /**
48618
- * 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.
48619
50039
  */
48620
- bookableOnly?: boolean;
50040
+ dashboardRequest?: boolean;
48621
50041
  /**
48622
50042
  * Gets or sets the page number for paged queries.
48623
50043
  */
@@ -48662,7 +50082,7 @@ declare class ScheduledSessionsSchedulesService {
48662
50082
  * Gets or sets the sort order direction.
48663
50083
  */
48664
50084
  sortOrderDirection?: SearchSortOrderDirection;
48665
- }): CancelablePromise<ScheduledSessionSchedulePage>;
50085
+ }): CancelablePromise<SellableItemPage>;
48666
50086
  /**
48667
50087
  * Deletes the resource.
48668
50088
  * @returns any OK
@@ -48676,7 +50096,7 @@ declare class ScheduledSessionsSchedulesService {
48676
50096
  }): CancelablePromise<any>;
48677
50097
  /**
48678
50098
  * Gets the resource by its Id.
48679
- * @returns ScheduledSessionSchedule OK
50099
+ * @returns SellableItem OK
48680
50100
  * @throws ApiError
48681
50101
  */
48682
50102
  getObject({ id, }: {
@@ -48684,7 +50104,7 @@ declare class ScheduledSessionsSchedulesService {
48684
50104
  * The <typeparamref name="TObject" /> id.
48685
50105
  */
48686
50106
  id: string;
48687
- }): CancelablePromise<ScheduledSessionSchedule>;
50107
+ }): CancelablePromise<SellableItem>;
48688
50108
  /**
48689
50109
  * Returns a value indicating whether the resource is deletable.
48690
50110
  * @returns boolean OK
@@ -48701,31 +50121,31 @@ declare class ScheduledSessionsSchedulesService {
48701
50121
  * @returns boolean OK
48702
50122
  * @throws ApiError
48703
50123
  */
48704
- 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, }: {
48705
50125
  /**
48706
- * Gets or sets the queryable session id.
50126
+ * Gets or sets the queryable ids.
48707
50127
  */
48708
- sessionId?: string;
50128
+ ids?: Array<string>;
48709
50129
  /**
48710
- * Gets or sets the queryable slot facility Ids.
50130
+ * Gets or sets the queryable Venue Id.
48711
50131
  */
48712
- sessionIds?: Array<string>;
50132
+ venueId?: string;
48713
50133
  /**
48714
- * Gets or sets the queryable slot schedule last run date.
50134
+ * Gets or sets a value indicating whether return online items.
48715
50135
  */
48716
- lastRunDateTimeLte?: string;
50136
+ online?: boolean;
48717
50137
  /**
48718
- * Gets or sets the queryable schedule status.
50138
+ * Gets or sets a value indicating whether to include archived items.
48719
50139
  */
48720
- status?: ScheduleStatus;
50140
+ archived?: boolean;
48721
50141
  /**
48722
- * Gets or sets the queryable schedule statuses.
50142
+ * Gets or sets a value indicating whether to include deleted items.
48723
50143
  */
48724
- statuses?: Array<ScheduleStatus>;
50144
+ deleted?: boolean;
48725
50145
  /**
48726
- * 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.
48727
50147
  */
48728
- bookableOnly?: boolean;
50148
+ dashboardRequest?: boolean;
48729
50149
  /**
48730
50150
  * Gets or sets the page number for paged queries.
48731
50151
  */
@@ -48776,31 +50196,31 @@ declare class ScheduledSessionsSchedulesService {
48776
50196
  * @returns number OK
48777
50197
  * @throws ApiError
48778
50198
  */
48779
- 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, }: {
48780
50200
  /**
48781
- * Gets or sets the queryable session id.
50201
+ * Gets or sets the queryable ids.
48782
50202
  */
48783
- sessionId?: string;
50203
+ ids?: Array<string>;
48784
50204
  /**
48785
- * Gets or sets the queryable slot facility Ids.
50205
+ * Gets or sets the queryable Venue Id.
48786
50206
  */
48787
- sessionIds?: Array<string>;
50207
+ venueId?: string;
48788
50208
  /**
48789
- * Gets or sets the queryable slot schedule last run date.
50209
+ * Gets or sets a value indicating whether return online items.
48790
50210
  */
48791
- lastRunDateTimeLte?: string;
50211
+ online?: boolean;
48792
50212
  /**
48793
- * Gets or sets the queryable schedule status.
50213
+ * Gets or sets a value indicating whether to include archived items.
48794
50214
  */
48795
- status?: ScheduleStatus;
50215
+ archived?: boolean;
48796
50216
  /**
48797
- * Gets or sets the queryable schedule statuses.
50217
+ * Gets or sets a value indicating whether to include deleted items.
48798
50218
  */
48799
- statuses?: Array<ScheduleStatus>;
50219
+ deleted?: boolean;
48800
50220
  /**
48801
- * 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.
48802
50222
  */
48803
- bookableOnly?: boolean;
50223
+ dashboardRequest?: boolean;
48804
50224
  /**
48805
50225
  * Gets or sets the page number for paged queries.
48806
50226
  */
@@ -48848,34 +50268,34 @@ declare class ScheduledSessionsSchedulesService {
48848
50268
  }): CancelablePromise<number>;
48849
50269
  /**
48850
50270
  * Gets a list of resources unpaged and without references.
48851
- * @returns ScheduledSessionSchedule OK
50271
+ * @returns SellableItem OK
48852
50272
  * @throws ApiError
48853
50273
  */
48854
- 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, }: {
48855
50275
  /**
48856
- * Gets or sets the queryable session id.
50276
+ * Gets or sets the queryable ids.
48857
50277
  */
48858
- sessionId?: string;
50278
+ ids?: Array<string>;
48859
50279
  /**
48860
- * Gets or sets the queryable slot facility Ids.
50280
+ * Gets or sets the queryable Venue Id.
48861
50281
  */
48862
- sessionIds?: Array<string>;
50282
+ venueId?: string;
48863
50283
  /**
48864
- * Gets or sets the queryable slot schedule last run date.
50284
+ * Gets or sets a value indicating whether return online items.
48865
50285
  */
48866
- lastRunDateTimeLte?: string;
50286
+ online?: boolean;
48867
50287
  /**
48868
- * Gets or sets the queryable schedule status.
50288
+ * Gets or sets a value indicating whether to include archived items.
48869
50289
  */
48870
- status?: ScheduleStatus;
50290
+ archived?: boolean;
48871
50291
  /**
48872
- * Gets or sets the queryable schedule statuses.
50292
+ * Gets or sets a value indicating whether to include deleted items.
48873
50293
  */
48874
- statuses?: Array<ScheduleStatus>;
50294
+ deleted?: boolean;
48875
50295
  /**
48876
- * 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.
48877
50297
  */
48878
- bookableOnly?: boolean;
50298
+ dashboardRequest?: boolean;
48879
50299
  /**
48880
50300
  * Gets or sets the page number for paged queries.
48881
50301
  */
@@ -48920,37 +50340,37 @@ declare class ScheduledSessionsSchedulesService {
48920
50340
  * Gets or sets the sort order direction.
48921
50341
  */
48922
50342
  sortOrderDirection?: SearchSortOrderDirection;
48923
- }): CancelablePromise<Array<ScheduledSessionSchedule>>;
50343
+ }): CancelablePromise<Array<SellableItem>>;
48924
50344
  /**
48925
50345
  * Gets a list of resources.
48926
- * @returns ScheduledSessionSchedule OK
50346
+ * @returns SellableItem OK
48927
50347
  * @throws ApiError
48928
50348
  */
48929
- 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, }: {
48930
50350
  /**
48931
- * Gets or sets the queryable session id.
50351
+ * Gets or sets the queryable ids.
48932
50352
  */
48933
- sessionId?: string;
50353
+ ids?: Array<string>;
48934
50354
  /**
48935
- * Gets or sets the queryable slot facility Ids.
50355
+ * Gets or sets the queryable Venue Id.
48936
50356
  */
48937
- sessionIds?: Array<string>;
50357
+ venueId?: string;
48938
50358
  /**
48939
- * Gets or sets the queryable slot schedule last run date.
50359
+ * Gets or sets a value indicating whether return online items.
48940
50360
  */
48941
- lastRunDateTimeLte?: string;
50361
+ online?: boolean;
48942
50362
  /**
48943
- * Gets or sets the queryable schedule status.
50363
+ * Gets or sets a value indicating whether to include archived items.
48944
50364
  */
48945
- status?: ScheduleStatus;
50365
+ archived?: boolean;
48946
50366
  /**
48947
- * Gets or sets the queryable schedule statuses.
50367
+ * Gets or sets a value indicating whether to include deleted items.
48948
50368
  */
48949
- statuses?: Array<ScheduleStatus>;
50369
+ deleted?: boolean;
48950
50370
  /**
48951
- * 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.
48952
50372
  */
48953
- bookableOnly?: boolean;
50373
+ dashboardRequest?: boolean;
48954
50374
  /**
48955
50375
  * Gets or sets the page number for paged queries.
48956
50376
  */
@@ -48995,7 +50415,7 @@ declare class ScheduledSessionsSchedulesService {
48995
50415
  * Gets or sets the sort order direction.
48996
50416
  */
48997
50417
  sortOrderDirection?: SearchSortOrderDirection;
48998
- }): CancelablePromise<Array<ScheduledSessionSchedule>>;
50418
+ }): CancelablePromise<Array<SellableItem>>;
48999
50419
  }
49000
50420
 
49001
50421
  /**
@@ -49144,7 +50564,7 @@ declare class SessionsService {
49144
50564
  readonly httpRequest: BaseHttpRequest;
49145
50565
  constructor(httpRequest: BaseHttpRequest);
49146
50566
  /**
49147
- * 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.
49148
50568
  * @returns ScheduledSession OK
49149
50569
  * @throws ApiError
49150
50570
  */
@@ -49154,7 +50574,7 @@ declare class SessionsService {
49154
50574
  */
49155
50575
  sessionId: string;
49156
50576
  /**
49157
- * The quanity required for reschedule.
50577
+ * The quantity required for reschedule.
49158
50578
  */
49159
50579
  quantity: number;
49160
50580
  }): CancelablePromise<ScheduledSession>;
@@ -69023,6 +70443,7 @@ declare class ApiClient {
69023
70443
  readonly publicProgrammes: PublicProgrammesService;
69024
70444
  readonly publicProviders: PublicProvidersService;
69025
70445
  readonly publicScheduledSessions: PublicScheduledSessionsService;
70446
+ readonly publicSellableItems: PublicSellableItemsService;
69026
70447
  readonly publicSessions: PublicSessionsService;
69027
70448
  readonly publicSlots: PublicSlotsService;
69028
70449
  readonly publicStorefrontStaffPreview: PublicStorefrontStaffPreviewService;
@@ -69040,6 +70461,7 @@ declare class ApiClient {
69040
70461
  readonly rescheduleLog: RescheduleLogService;
69041
70462
  readonly scheduledSessions: ScheduledSessionsService;
69042
70463
  readonly scheduledSessionsSchedules: ScheduledSessionsSchedulesService;
70464
+ readonly sellableItems: SellableItemsService;
69043
70465
  readonly sessions: SessionsService;
69044
70466
  readonly slotOffers: SlotOffersService;
69045
70467
  readonly slots: SlotsService;
@@ -69208,4 +70630,4 @@ type ValidationResultModel = {
69208
70630
  readonly errors?: Array<ValidationError> | null;
69209
70631
  };
69210
70632
 
69211
- 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 };