reach-api-sdk 1.0.191 → 1.0.193

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/dist/reach-sdk.d.ts +515 -73
  2. package/dist/reach-sdk.js +298 -5
  3. package/package.json +1 -1
  4. package/src/apiClient.ts +3 -0
  5. package/src/definition/swagger.yaml +806 -6
  6. package/src/index.ts +2 -0
  7. package/src/models/Course.ts +8 -0
  8. package/src/models/GenericActivity.ts +4 -0
  9. package/src/models/Session.ts +8 -0
  10. package/src/models/TenantWebsiteSetting.ts +3 -0
  11. package/src/models/UpcomingLayout.ts +12 -0
  12. package/src/services/BookingService.ts +36 -0
  13. package/src/services/CoursesService.ts +104 -2
  14. package/src/services/GenericActivityService.ts +30 -0
  15. package/src/services/LeasingService.ts +24 -0
  16. package/src/services/OrderItemsService.ts +48 -0
  17. package/src/services/OrdersService.ts +24 -0
  18. package/src/services/PublicBookingService.ts +12 -0
  19. package/src/services/PublicCalendarService.ts +57 -0
  20. package/src/services/PublicCoursesService.ts +24 -0
  21. package/src/services/PublicGenericActivityService.ts +24 -0
  22. package/src/services/PublicLeasingService.ts +12 -0
  23. package/src/services/PublicNetworksService.ts +12 -0
  24. package/src/services/PublicOrderItemsService.ts +24 -0
  25. package/src/services/PublicOrdersService.ts +12 -0
  26. package/src/services/PublicScheduledSessionsService.ts +12 -0
  27. package/src/services/PublicSessionsService.ts +30 -0
  28. package/src/services/PublicVenuesService.ts +18 -0
  29. package/src/services/ScheduledSessionsSchedulesService.ts +24 -0
  30. package/src/services/ScheduledSessionsService.ts +24 -0
  31. package/src/services/SessionsService.ts +106 -4
  32. package/src/services/VenuesService.ts +24 -0
@@ -27,12 +27,14 @@ export class PublicNetworksService {
27
27
  paymentPolicyId,
28
28
  futureOnly,
29
29
  online,
30
+ featured,
30
31
  programmeId,
31
32
  includeNextOpportunity,
32
33
  allowTemplating,
33
34
  archived,
34
35
  deleted,
35
36
  openActiveUpdate,
37
+ dashboardRequest,
36
38
  networkId,
37
39
  distance,
38
40
  minAgeLte,
@@ -89,6 +91,10 @@ export class PublicNetworksService {
89
91
  * Gets or sets a value indicating whether return online sessions.
90
92
  */
91
93
  online?: boolean;
94
+ /**
95
+ * Gets or sets a value indicating whether the session is featured on the storefront.
96
+ */
97
+ featured?: boolean;
92
98
  /**
93
99
  * Gets or sets the queryable Programme Id.
94
100
  */
@@ -113,6 +119,10 @@ export class PublicNetworksService {
113
119
  * Gets or sets a value indicating this an openactive reaquest.
114
120
  */
115
121
  openActiveUpdate?: boolean;
122
+ /**
123
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
124
+ */
125
+ dashboardRequest?: boolean;
116
126
  /**
117
127
  * Gets or sets a value indicating whether to include only sessions by given NetworkId.
118
128
  */
@@ -233,12 +243,14 @@ export class PublicNetworksService {
233
243
  PaymentPolicyId: paymentPolicyId,
234
244
  FutureOnly: futureOnly,
235
245
  Online: online,
246
+ Featured: featured,
236
247
  ProgrammeId: programmeId,
237
248
  IncludeNextOpportunity: includeNextOpportunity,
238
249
  AllowTemplating: allowTemplating,
239
250
  Archived: archived,
240
251
  Deleted: deleted,
241
252
  OpenActiveUpdate: openActiveUpdate,
253
+ DashboardRequest: dashboardRequest,
242
254
  NetworkId: networkId,
243
255
  Distance: distance,
244
256
  MinAgeLTE: minAgeLte,
@@ -32,6 +32,8 @@ export class PublicOrderItemsService {
32
32
  parentOrderItemId,
33
33
  orderByOpportunityStartdate,
34
34
  eventTiming,
35
+ endUserIdentityId,
36
+ dashboardRequest,
35
37
  pageNumber,
36
38
  take,
37
39
  skip,
@@ -85,6 +87,14 @@ export class PublicOrderItemsService {
85
87
  * Gets or sets the queryable event timing.
86
88
  */
87
89
  eventTiming?: EventTiming;
90
+ /**
91
+ * Gets or sets the end user identity Id for use in a query search.
92
+ */
93
+ endUserIdentityId?: string;
94
+ /**
95
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
96
+ */
97
+ dashboardRequest?: boolean;
88
98
  /**
89
99
  * Gets or sets the page number for paged queries.
90
100
  */
@@ -147,6 +157,8 @@ export class PublicOrderItemsService {
147
157
  ParentOrderItemId: parentOrderItemId,
148
158
  OrderByOpportunityStartdate: orderByOpportunityStartdate,
149
159
  EventTiming: eventTiming,
160
+ EndUserIdentityId: endUserIdentityId,
161
+ DashboardRequest: dashboardRequest,
150
162
  PageNumber: pageNumber,
151
163
  Take: take,
152
164
  Skip: skip,
@@ -431,6 +443,8 @@ export class PublicOrderItemsService {
431
443
  parentOrderItemId,
432
444
  orderByOpportunityStartdate,
433
445
  eventTiming,
446
+ endUserIdentityId,
447
+ dashboardRequest,
434
448
  pageNumber,
435
449
  take,
436
450
  skip,
@@ -487,6 +501,14 @@ export class PublicOrderItemsService {
487
501
  * Gets or sets the queryable event timing.
488
502
  */
489
503
  eventTiming?: EventTiming;
504
+ /**
505
+ * Gets or sets the end user identity Id for use in a query search.
506
+ */
507
+ endUserIdentityId?: string;
508
+ /**
509
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
510
+ */
511
+ dashboardRequest?: boolean;
490
512
  /**
491
513
  * Gets or sets the page number for paged queries.
492
514
  */
@@ -549,6 +571,8 @@ export class PublicOrderItemsService {
549
571
  ParentOrderItemId: parentOrderItemId,
550
572
  OrderByOpportunityStartdate: orderByOpportunityStartdate,
551
573
  EventTiming: eventTiming,
574
+ EndUserIdentityId: endUserIdentityId,
575
+ DashboardRequest: dashboardRequest,
552
576
  PageNumber: pageNumber,
553
577
  Take: take,
554
578
  Skip: skip,
@@ -101,6 +101,7 @@ export class PublicOrdersService {
101
101
  orderStages,
102
102
  orderDateGte,
103
103
  orderDateLte,
104
+ endUserIdentityId,
104
105
  pageNumber,
105
106
  take,
106
107
  skip,
@@ -182,6 +183,10 @@ export class PublicOrdersService {
182
183
  * Gets or sets the queryable order date created is less than or equal to.
183
184
  */
184
185
  orderDateLte?: string;
186
+ /**
187
+ * Gets or sets the end user identity Id for use in a query search.
188
+ */
189
+ endUserIdentityId?: string;
185
190
  /**
186
191
  * Gets or sets the page number for paged queries.
187
192
  */
@@ -251,6 +256,7 @@ export class PublicOrdersService {
251
256
  OrderStages: orderStages,
252
257
  OrderDateGTE: orderDateGte,
253
258
  OrderDateLTE: orderDateLte,
259
+ EndUserIdentityId: endUserIdentityId,
254
260
  PageNumber: pageNumber,
255
261
  Take: take,
256
262
  Skip: skip,
@@ -584,6 +590,7 @@ export class PublicOrdersService {
584
590
  orderStages,
585
591
  orderDateGte,
586
592
  orderDateLte,
593
+ endUserIdentityId,
587
594
  pageNumber,
588
595
  take,
589
596
  skip,
@@ -668,6 +675,10 @@ export class PublicOrdersService {
668
675
  * Gets or sets the queryable order date created is less than or equal to.
669
676
  */
670
677
  orderDateLte?: string;
678
+ /**
679
+ * Gets or sets the end user identity Id for use in a query search.
680
+ */
681
+ endUserIdentityId?: string;
671
682
  /**
672
683
  * Gets or sets the page number for paged queries.
673
684
  */
@@ -737,6 +748,7 @@ export class PublicOrdersService {
737
748
  OrderStages: orderStages,
738
749
  OrderDateGTE: orderDateGte,
739
750
  OrderDateLTE: orderDateLte,
751
+ EndUserIdentityId: endUserIdentityId,
740
752
  PageNumber: pageNumber,
741
753
  Take: take,
742
754
  Skip: skip,
@@ -102,6 +102,7 @@ export class PublicScheduledSessionsService {
102
102
  remainingUsesLte,
103
103
  remainingUsesGte,
104
104
  futureOnly,
105
+ bookableOnly,
105
106
  includeImages,
106
107
  includeVenue,
107
108
  includeOrders,
@@ -188,6 +189,10 @@ export class PublicScheduledSessionsService {
188
189
  * Gets or sets a value indicating whether to only return future scheduled session.
189
190
  */
190
191
  futureOnly?: boolean;
192
+ /**
193
+ * Gets or sets a value indicating whether to only return bookable scheduled sessions.
194
+ */
195
+ bookableOnly?: boolean;
191
196
  /**
192
197
  * Gets or sets a value indicating whether to include image detail in the results.
193
198
  */
@@ -292,6 +297,7 @@ export class PublicScheduledSessionsService {
292
297
  RemainingUsesLTE: remainingUsesLte,
293
298
  RemainingUsesGTE: remainingUsesGte,
294
299
  FutureOnly: futureOnly,
300
+ BookableOnly: bookableOnly,
295
301
  IncludeImages: includeImages,
296
302
  IncludeVenue: includeVenue,
297
303
  IncludeOrders: includeOrders,
@@ -480,6 +486,7 @@ export class PublicScheduledSessionsService {
480
486
  remainingUsesLte,
481
487
  remainingUsesGte,
482
488
  futureOnly,
489
+ bookableOnly,
483
490
  includeImages,
484
491
  includeVenue,
485
492
  includeOrders,
@@ -569,6 +576,10 @@ export class PublicScheduledSessionsService {
569
576
  * Gets or sets a value indicating whether to only return future scheduled session.
570
577
  */
571
578
  futureOnly?: boolean;
579
+ /**
580
+ * Gets or sets a value indicating whether to only return bookable scheduled sessions.
581
+ */
582
+ bookableOnly?: boolean;
572
583
  /**
573
584
  * Gets or sets a value indicating whether to include image detail in the results.
574
585
  */
@@ -673,6 +684,7 @@ export class PublicScheduledSessionsService {
673
684
  RemainingUsesLTE: remainingUsesLte,
674
685
  RemainingUsesGTE: remainingUsesGte,
675
686
  FutureOnly: futureOnly,
687
+ BookableOnly: bookableOnly,
676
688
  IncludeImages: includeImages,
677
689
  IncludeVenue: includeVenue,
678
690
  IncludeOrders: includeOrders,
@@ -96,12 +96,14 @@ export class PublicSessionsService {
96
96
  paymentPolicyId,
97
97
  futureOnly,
98
98
  online,
99
+ featured,
99
100
  programmeId,
100
101
  includeNextOpportunity,
101
102
  allowTemplating,
102
103
  archived,
103
104
  deleted,
104
105
  openActiveUpdate,
106
+ dashboardRequest,
105
107
  networkId,
106
108
  distance,
107
109
  minAgeLte,
@@ -159,6 +161,10 @@ export class PublicSessionsService {
159
161
  * Gets or sets a value indicating whether return online sessions.
160
162
  */
161
163
  online?: boolean;
164
+ /**
165
+ * Gets or sets a value indicating whether the session is featured on the storefront.
166
+ */
167
+ featured?: boolean;
162
168
  /**
163
169
  * Gets or sets the queryable Programme Id.
164
170
  */
@@ -183,6 +189,10 @@ export class PublicSessionsService {
183
189
  * Gets or sets a value indicating this an openactive reaquest.
184
190
  */
185
191
  openActiveUpdate?: boolean;
192
+ /**
193
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
194
+ */
195
+ dashboardRequest?: boolean;
186
196
  /**
187
197
  * Gets or sets a value indicating whether to include only sessions by given NetworkId.
188
198
  */
@@ -306,12 +316,14 @@ export class PublicSessionsService {
306
316
  PaymentPolicyId: paymentPolicyId,
307
317
  FutureOnly: futureOnly,
308
318
  Online: online,
319
+ Featured: featured,
309
320
  ProgrammeId: programmeId,
310
321
  IncludeNextOpportunity: includeNextOpportunity,
311
322
  AllowTemplating: allowTemplating,
312
323
  Archived: archived,
313
324
  Deleted: deleted,
314
325
  OpenActiveUpdate: openActiveUpdate,
326
+ DashboardRequest: dashboardRequest,
315
327
  NetworkId: networkId,
316
328
  Distance: distance,
317
329
  MinAgeLTE: minAgeLte,
@@ -446,6 +458,7 @@ export class PublicSessionsService {
446
458
  remainingUsesLte,
447
459
  remainingUsesGte,
448
460
  futureOnly,
461
+ bookableOnly,
449
462
  includeImages,
450
463
  includeVenue,
451
464
  includeOrders,
@@ -535,6 +548,10 @@ export class PublicSessionsService {
535
548
  * Gets or sets a value indicating whether to only return future scheduled session.
536
549
  */
537
550
  futureOnly?: boolean;
551
+ /**
552
+ * Gets or sets a value indicating whether to only return bookable scheduled sessions.
553
+ */
554
+ bookableOnly?: boolean;
538
555
  /**
539
556
  * Gets or sets a value indicating whether to include image detail in the results.
540
557
  */
@@ -639,6 +656,7 @@ export class PublicSessionsService {
639
656
  RemainingUsesLTE: remainingUsesLte,
640
657
  RemainingUsesGTE: remainingUsesGte,
641
658
  FutureOnly: futureOnly,
659
+ BookableOnly: bookableOnly,
642
660
  IncludeImages: includeImages,
643
661
  IncludeVenue: includeVenue,
644
662
  IncludeOrders: includeOrders,
@@ -784,12 +802,14 @@ export class PublicSessionsService {
784
802
  paymentPolicyId,
785
803
  futureOnly,
786
804
  online,
805
+ featured,
787
806
  programmeId,
788
807
  includeNextOpportunity,
789
808
  allowTemplating,
790
809
  archived,
791
810
  deleted,
792
811
  openActiveUpdate,
812
+ dashboardRequest,
793
813
  networkId,
794
814
  distance,
795
815
  minAgeLte,
@@ -850,6 +870,10 @@ export class PublicSessionsService {
850
870
  * Gets or sets a value indicating whether return online sessions.
851
871
  */
852
872
  online?: boolean;
873
+ /**
874
+ * Gets or sets a value indicating whether the session is featured on the storefront.
875
+ */
876
+ featured?: boolean;
853
877
  /**
854
878
  * Gets or sets the queryable Programme Id.
855
879
  */
@@ -874,6 +898,10 @@ export class PublicSessionsService {
874
898
  * Gets or sets a value indicating this an openactive reaquest.
875
899
  */
876
900
  openActiveUpdate?: boolean;
901
+ /**
902
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
903
+ */
904
+ dashboardRequest?: boolean;
877
905
  /**
878
906
  * Gets or sets a value indicating whether to include only sessions by given NetworkId.
879
907
  */
@@ -997,12 +1025,14 @@ export class PublicSessionsService {
997
1025
  PaymentPolicyId: paymentPolicyId,
998
1026
  FutureOnly: futureOnly,
999
1027
  Online: online,
1028
+ Featured: featured,
1000
1029
  ProgrammeId: programmeId,
1001
1030
  IncludeNextOpportunity: includeNextOpportunity,
1002
1031
  AllowTemplating: allowTemplating,
1003
1032
  Archived: archived,
1004
1033
  Deleted: deleted,
1005
1034
  OpenActiveUpdate: openActiveUpdate,
1035
+ DashboardRequest: dashboardRequest,
1006
1036
  NetworkId: networkId,
1007
1037
  Distance: distance,
1008
1038
  MinAgeLTE: minAgeLte,
@@ -101,6 +101,7 @@ export class PublicVenuesService {
101
101
  includeOpportunityOffers,
102
102
  includeNextOpportunity,
103
103
  distance,
104
+ dashboardRequest,
104
105
  pageNumber,
105
106
  take,
106
107
  skip,
@@ -186,6 +187,10 @@ export class PublicVenuesService {
186
187
  * Gets or sets Distance.
187
188
  */
188
189
  distance?: number;
190
+ /**
191
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
192
+ */
193
+ dashboardRequest?: boolean;
189
194
  /**
190
195
  * Gets or sets the page number for paged queries.
191
196
  */
@@ -256,6 +261,7 @@ export class PublicVenuesService {
256
261
  IncludeOpportunityOffers: includeOpportunityOffers,
257
262
  IncludeNextOpportunity: includeNextOpportunity,
258
263
  Distance: distance,
264
+ DashboardRequest: dashboardRequest,
259
265
  PageNumber: pageNumber,
260
266
  Take: take,
261
267
  Skip: skip,
@@ -334,6 +340,7 @@ export class PublicVenuesService {
334
340
  includeOpportunityOffers,
335
341
  includeNextOpportunity,
336
342
  distance,
343
+ dashboardRequest,
337
344
  pageNumber,
338
345
  take,
339
346
  skip,
@@ -418,6 +425,10 @@ export class PublicVenuesService {
418
425
  * Gets or sets Distance.
419
426
  */
420
427
  distance?: number;
428
+ /**
429
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
430
+ */
431
+ dashboardRequest?: boolean;
421
432
  /**
422
433
  * Gets or sets the page number for paged queries.
423
434
  */
@@ -485,6 +496,7 @@ export class PublicVenuesService {
485
496
  IncludeOpportunityOffers: includeOpportunityOffers,
486
497
  IncludeNextOpportunity: includeNextOpportunity,
487
498
  Distance: distance,
499
+ DashboardRequest: dashboardRequest,
488
500
  PageNumber: pageNumber,
489
501
  Take: take,
490
502
  Skip: skip,
@@ -632,6 +644,7 @@ export class PublicVenuesService {
632
644
  includeOpportunityOffers,
633
645
  includeNextOpportunity,
634
646
  distance,
647
+ dashboardRequest,
635
648
  pageNumber,
636
649
  take,
637
650
  skip,
@@ -720,6 +733,10 @@ export class PublicVenuesService {
720
733
  * Gets or sets Distance.
721
734
  */
722
735
  distance?: number;
736
+ /**
737
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
738
+ */
739
+ dashboardRequest?: boolean;
723
740
  /**
724
741
  * Gets or sets the page number for paged queries.
725
742
  */
@@ -790,6 +807,7 @@ export class PublicVenuesService {
790
807
  IncludeOpportunityOffers: includeOpportunityOffers,
791
808
  IncludeNextOpportunity: includeNextOpportunity,
792
809
  Distance: distance,
810
+ DashboardRequest: dashboardRequest,
793
811
  PageNumber: pageNumber,
794
812
  Take: take,
795
813
  Skip: skip,
@@ -217,6 +217,7 @@ export class ScheduledSessionsSchedulesService {
217
217
  lastRunDateTimeLte,
218
218
  status,
219
219
  statuses,
220
+ bookableOnly,
220
221
  pageNumber,
221
222
  take,
222
223
  skip,
@@ -249,6 +250,10 @@ export class ScheduledSessionsSchedulesService {
249
250
  * Gets or sets the queryable schedule statuses.
250
251
  */
251
252
  statuses?: Array<ScheduleStatus>;
253
+ /**
254
+ * Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
255
+ */
256
+ bookableOnly?: boolean;
252
257
  /**
253
258
  * Gets or sets the page number for paged queries.
254
259
  */
@@ -303,6 +308,7 @@ export class ScheduledSessionsSchedulesService {
303
308
  LastRunDateTimeLTE: lastRunDateTimeLte,
304
309
  Status: status,
305
310
  Statuses: statuses,
311
+ BookableOnly: bookableOnly,
306
312
  PageNumber: pageNumber,
307
313
  Take: take,
308
314
  Skip: skip,
@@ -415,6 +421,7 @@ export class ScheduledSessionsSchedulesService {
415
421
  lastRunDateTimeLte,
416
422
  status,
417
423
  statuses,
424
+ bookableOnly,
418
425
  pageNumber,
419
426
  take,
420
427
  skip,
@@ -447,6 +454,10 @@ export class ScheduledSessionsSchedulesService {
447
454
  * Gets or sets the queryable schedule statuses.
448
455
  */
449
456
  statuses?: Array<ScheduleStatus>;
457
+ /**
458
+ * Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
459
+ */
460
+ bookableOnly?: boolean;
450
461
  /**
451
462
  * Gets or sets the page number for paged queries.
452
463
  */
@@ -501,6 +512,7 @@ export class ScheduledSessionsSchedulesService {
501
512
  LastRunDateTimeLTE: lastRunDateTimeLte,
502
513
  Status: status,
503
514
  Statuses: statuses,
515
+ BookableOnly: bookableOnly,
504
516
  PageNumber: pageNumber,
505
517
  Take: take,
506
518
  Skip: skip,
@@ -532,6 +544,7 @@ export class ScheduledSessionsSchedulesService {
532
544
  lastRunDateTimeLte,
533
545
  status,
534
546
  statuses,
547
+ bookableOnly,
535
548
  pageNumber,
536
549
  take,
537
550
  skip,
@@ -564,6 +577,10 @@ export class ScheduledSessionsSchedulesService {
564
577
  * Gets or sets the queryable schedule statuses.
565
578
  */
566
579
  statuses?: Array<ScheduleStatus>;
580
+ /**
581
+ * Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
582
+ */
583
+ bookableOnly?: boolean;
567
584
  /**
568
585
  * Gets or sets the page number for paged queries.
569
586
  */
@@ -618,6 +635,7 @@ export class ScheduledSessionsSchedulesService {
618
635
  LastRunDateTimeLTE: lastRunDateTimeLte,
619
636
  Status: status,
620
637
  Statuses: statuses,
638
+ BookableOnly: bookableOnly,
621
639
  PageNumber: pageNumber,
622
640
  Take: take,
623
641
  Skip: skip,
@@ -649,6 +667,7 @@ export class ScheduledSessionsSchedulesService {
649
667
  lastRunDateTimeLte,
650
668
  status,
651
669
  statuses,
670
+ bookableOnly,
652
671
  pageNumber,
653
672
  take,
654
673
  skip,
@@ -681,6 +700,10 @@ export class ScheduledSessionsSchedulesService {
681
700
  * Gets or sets the queryable schedule statuses.
682
701
  */
683
702
  statuses?: Array<ScheduleStatus>;
703
+ /**
704
+ * Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
705
+ */
706
+ bookableOnly?: boolean;
684
707
  /**
685
708
  * Gets or sets the page number for paged queries.
686
709
  */
@@ -735,6 +758,7 @@ export class ScheduledSessionsSchedulesService {
735
758
  LastRunDateTimeLTE: lastRunDateTimeLte,
736
759
  Status: status,
737
760
  Statuses: statuses,
761
+ BookableOnly: bookableOnly,
738
762
  PageNumber: pageNumber,
739
763
  Take: take,
740
764
  Skip: skip,
@@ -387,6 +387,7 @@ export class ScheduledSessionsService {
387
387
  remainingUsesLte,
388
388
  remainingUsesGte,
389
389
  futureOnly,
390
+ bookableOnly,
390
391
  includeImages,
391
392
  includeVenue,
392
393
  includeOrders,
@@ -472,6 +473,10 @@ export class ScheduledSessionsService {
472
473
  * Gets or sets a value indicating whether to only return future scheduled session.
473
474
  */
474
475
  futureOnly?: boolean;
476
+ /**
477
+ * Gets or sets a value indicating whether to only return bookable scheduled sessions.
478
+ */
479
+ bookableOnly?: boolean;
475
480
  /**
476
481
  * Gets or sets a value indicating whether to include image detail in the results.
477
482
  */
@@ -573,6 +578,7 @@ export class ScheduledSessionsService {
573
578
  RemainingUsesLTE: remainingUsesLte,
574
579
  RemainingUsesGTE: remainingUsesGte,
575
580
  FutureOnly: futureOnly,
581
+ BookableOnly: bookableOnly,
576
582
  IncludeImages: includeImages,
577
583
  IncludeVenue: includeVenue,
578
584
  IncludeOrders: includeOrders,
@@ -705,6 +711,7 @@ export class ScheduledSessionsService {
705
711
  remainingUsesLte,
706
712
  remainingUsesGte,
707
713
  futureOnly,
714
+ bookableOnly,
708
715
  includeImages,
709
716
  includeVenue,
710
717
  includeOrders,
@@ -790,6 +797,10 @@ export class ScheduledSessionsService {
790
797
  * Gets or sets a value indicating whether to only return future scheduled session.
791
798
  */
792
799
  futureOnly?: boolean;
800
+ /**
801
+ * Gets or sets a value indicating whether to only return bookable scheduled sessions.
802
+ */
803
+ bookableOnly?: boolean;
793
804
  /**
794
805
  * Gets or sets a value indicating whether to include image detail in the results.
795
806
  */
@@ -891,6 +902,7 @@ export class ScheduledSessionsService {
891
902
  RemainingUsesLTE: remainingUsesLte,
892
903
  RemainingUsesGTE: remainingUsesGte,
893
904
  FutureOnly: futureOnly,
905
+ BookableOnly: bookableOnly,
894
906
  IncludeImages: includeImages,
895
907
  IncludeVenue: includeVenue,
896
908
  IncludeOrders: includeOrders,
@@ -942,6 +954,7 @@ export class ScheduledSessionsService {
942
954
  remainingUsesLte,
943
955
  remainingUsesGte,
944
956
  futureOnly,
957
+ bookableOnly,
945
958
  includeImages,
946
959
  includeVenue,
947
960
  includeOrders,
@@ -1027,6 +1040,10 @@ export class ScheduledSessionsService {
1027
1040
  * Gets or sets a value indicating whether to only return future scheduled session.
1028
1041
  */
1029
1042
  futureOnly?: boolean;
1043
+ /**
1044
+ * Gets or sets a value indicating whether to only return bookable scheduled sessions.
1045
+ */
1046
+ bookableOnly?: boolean;
1030
1047
  /**
1031
1048
  * Gets or sets a value indicating whether to include image detail in the results.
1032
1049
  */
@@ -1128,6 +1145,7 @@ export class ScheduledSessionsService {
1128
1145
  RemainingUsesLTE: remainingUsesLte,
1129
1146
  RemainingUsesGTE: remainingUsesGte,
1130
1147
  FutureOnly: futureOnly,
1148
+ BookableOnly: bookableOnly,
1131
1149
  IncludeImages: includeImages,
1132
1150
  IncludeVenue: includeVenue,
1133
1151
  IncludeOrders: includeOrders,
@@ -1179,6 +1197,7 @@ export class ScheduledSessionsService {
1179
1197
  remainingUsesLte,
1180
1198
  remainingUsesGte,
1181
1199
  futureOnly,
1200
+ bookableOnly,
1182
1201
  includeImages,
1183
1202
  includeVenue,
1184
1203
  includeOrders,
@@ -1264,6 +1283,10 @@ export class ScheduledSessionsService {
1264
1283
  * Gets or sets a value indicating whether to only return future scheduled session.
1265
1284
  */
1266
1285
  futureOnly?: boolean;
1286
+ /**
1287
+ * Gets or sets a value indicating whether to only return bookable scheduled sessions.
1288
+ */
1289
+ bookableOnly?: boolean;
1267
1290
  /**
1268
1291
  * Gets or sets a value indicating whether to include image detail in the results.
1269
1292
  */
@@ -1365,6 +1388,7 @@ export class ScheduledSessionsService {
1365
1388
  RemainingUsesLTE: remainingUsesLte,
1366
1389
  RemainingUsesGTE: remainingUsesGte,
1367
1390
  FutureOnly: futureOnly,
1391
+ BookableOnly: bookableOnly,
1368
1392
  IncludeImages: includeImages,
1369
1393
  IncludeVenue: includeVenue,
1370
1394
  IncludeOrders: includeOrders,