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.
- package/dist/reach-sdk.d.ts +515 -73
- package/dist/reach-sdk.js +298 -5
- package/package.json +1 -1
- package/src/apiClient.ts +3 -0
- package/src/definition/swagger.yaml +806 -6
- package/src/index.ts +2 -0
- package/src/models/Course.ts +8 -0
- package/src/models/GenericActivity.ts +4 -0
- package/src/models/Session.ts +8 -0
- package/src/models/TenantWebsiteSetting.ts +3 -0
- package/src/models/UpcomingLayout.ts +12 -0
- package/src/services/BookingService.ts +36 -0
- package/src/services/CoursesService.ts +104 -2
- package/src/services/GenericActivityService.ts +30 -0
- package/src/services/LeasingService.ts +24 -0
- package/src/services/OrderItemsService.ts +48 -0
- package/src/services/OrdersService.ts +24 -0
- package/src/services/PublicBookingService.ts +12 -0
- package/src/services/PublicCalendarService.ts +57 -0
- package/src/services/PublicCoursesService.ts +24 -0
- package/src/services/PublicGenericActivityService.ts +24 -0
- package/src/services/PublicLeasingService.ts +12 -0
- package/src/services/PublicNetworksService.ts +12 -0
- package/src/services/PublicOrderItemsService.ts +24 -0
- package/src/services/PublicOrdersService.ts +12 -0
- package/src/services/PublicScheduledSessionsService.ts +12 -0
- package/src/services/PublicSessionsService.ts +30 -0
- package/src/services/PublicVenuesService.ts +18 -0
- package/src/services/ScheduledSessionsSchedulesService.ts +24 -0
- package/src/services/ScheduledSessionsService.ts +24 -0
- package/src/services/SessionsService.ts +106 -4
- package/src/services/VenuesService.ts +24 -0
|
@@ -237,6 +237,7 @@ export class LeasingService {
|
|
|
237
237
|
orderStages,
|
|
238
238
|
orderDateGte,
|
|
239
239
|
orderDateLte,
|
|
240
|
+
endUserIdentityId,
|
|
240
241
|
pageNumber,
|
|
241
242
|
take,
|
|
242
243
|
skip,
|
|
@@ -317,6 +318,10 @@ export class LeasingService {
|
|
|
317
318
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
318
319
|
*/
|
|
319
320
|
orderDateLte?: string;
|
|
321
|
+
/**
|
|
322
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
323
|
+
*/
|
|
324
|
+
endUserIdentityId?: string;
|
|
320
325
|
/**
|
|
321
326
|
* Gets or sets the page number for paged queries.
|
|
322
327
|
*/
|
|
@@ -383,6 +388,7 @@ export class LeasingService {
|
|
|
383
388
|
OrderStages: orderStages,
|
|
384
389
|
OrderDateGTE: orderDateGte,
|
|
385
390
|
OrderDateLTE: orderDateLte,
|
|
391
|
+
EndUserIdentityId: endUserIdentityId,
|
|
386
392
|
PageNumber: pageNumber,
|
|
387
393
|
Take: take,
|
|
388
394
|
Skip: skip,
|
|
@@ -507,6 +513,7 @@ export class LeasingService {
|
|
|
507
513
|
orderStages,
|
|
508
514
|
orderDateGte,
|
|
509
515
|
orderDateLte,
|
|
516
|
+
endUserIdentityId,
|
|
510
517
|
pageNumber,
|
|
511
518
|
take,
|
|
512
519
|
skip,
|
|
@@ -587,6 +594,10 @@ export class LeasingService {
|
|
|
587
594
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
588
595
|
*/
|
|
589
596
|
orderDateLte?: string;
|
|
597
|
+
/**
|
|
598
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
599
|
+
*/
|
|
600
|
+
endUserIdentityId?: string;
|
|
590
601
|
/**
|
|
591
602
|
* Gets or sets the page number for paged queries.
|
|
592
603
|
*/
|
|
@@ -653,6 +664,7 @@ export class LeasingService {
|
|
|
653
664
|
OrderStages: orderStages,
|
|
654
665
|
OrderDateGTE: orderDateGte,
|
|
655
666
|
OrderDateLTE: orderDateLte,
|
|
667
|
+
EndUserIdentityId: endUserIdentityId,
|
|
656
668
|
PageNumber: pageNumber,
|
|
657
669
|
Take: take,
|
|
658
670
|
Skip: skip,
|
|
@@ -696,6 +708,7 @@ export class LeasingService {
|
|
|
696
708
|
orderStages,
|
|
697
709
|
orderDateGte,
|
|
698
710
|
orderDateLte,
|
|
711
|
+
endUserIdentityId,
|
|
699
712
|
pageNumber,
|
|
700
713
|
take,
|
|
701
714
|
skip,
|
|
@@ -776,6 +789,10 @@ export class LeasingService {
|
|
|
776
789
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
777
790
|
*/
|
|
778
791
|
orderDateLte?: string;
|
|
792
|
+
/**
|
|
793
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
794
|
+
*/
|
|
795
|
+
endUserIdentityId?: string;
|
|
779
796
|
/**
|
|
780
797
|
* Gets or sets the page number for paged queries.
|
|
781
798
|
*/
|
|
@@ -842,6 +859,7 @@ export class LeasingService {
|
|
|
842
859
|
OrderStages: orderStages,
|
|
843
860
|
OrderDateGTE: orderDateGte,
|
|
844
861
|
OrderDateLTE: orderDateLte,
|
|
862
|
+
EndUserIdentityId: endUserIdentityId,
|
|
845
863
|
PageNumber: pageNumber,
|
|
846
864
|
Take: take,
|
|
847
865
|
Skip: skip,
|
|
@@ -885,6 +903,7 @@ export class LeasingService {
|
|
|
885
903
|
orderStages,
|
|
886
904
|
orderDateGte,
|
|
887
905
|
orderDateLte,
|
|
906
|
+
endUserIdentityId,
|
|
888
907
|
pageNumber,
|
|
889
908
|
take,
|
|
890
909
|
skip,
|
|
@@ -965,6 +984,10 @@ export class LeasingService {
|
|
|
965
984
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
966
985
|
*/
|
|
967
986
|
orderDateLte?: string;
|
|
987
|
+
/**
|
|
988
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
989
|
+
*/
|
|
990
|
+
endUserIdentityId?: string;
|
|
968
991
|
/**
|
|
969
992
|
* Gets or sets the page number for paged queries.
|
|
970
993
|
*/
|
|
@@ -1031,6 +1054,7 @@ export class LeasingService {
|
|
|
1031
1054
|
OrderStages: orderStages,
|
|
1032
1055
|
OrderDateGTE: orderDateGte,
|
|
1033
1056
|
OrderDateLTE: orderDateLte,
|
|
1057
|
+
EndUserIdentityId: endUserIdentityId,
|
|
1034
1058
|
PageNumber: pageNumber,
|
|
1035
1059
|
Take: take,
|
|
1036
1060
|
Skip: skip,
|
|
@@ -203,6 +203,8 @@ export class OrderItemsService {
|
|
|
203
203
|
parentOrderItemId,
|
|
204
204
|
orderByOpportunityStartdate,
|
|
205
205
|
eventTiming,
|
|
206
|
+
endUserIdentityId,
|
|
207
|
+
dashboardRequest,
|
|
206
208
|
pageNumber,
|
|
207
209
|
take,
|
|
208
210
|
skip,
|
|
@@ -255,6 +257,14 @@ export class OrderItemsService {
|
|
|
255
257
|
* Gets or sets the queryable event timing.
|
|
256
258
|
*/
|
|
257
259
|
eventTiming?: EventTiming;
|
|
260
|
+
/**
|
|
261
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
262
|
+
*/
|
|
263
|
+
endUserIdentityId?: string;
|
|
264
|
+
/**
|
|
265
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
266
|
+
*/
|
|
267
|
+
dashboardRequest?: boolean;
|
|
258
268
|
/**
|
|
259
269
|
* Gets or sets the page number for paged queries.
|
|
260
270
|
*/
|
|
@@ -314,6 +324,8 @@ export class OrderItemsService {
|
|
|
314
324
|
ParentOrderItemId: parentOrderItemId,
|
|
315
325
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
316
326
|
EventTiming: eventTiming,
|
|
327
|
+
EndUserIdentityId: endUserIdentityId,
|
|
328
|
+
DashboardRequest: dashboardRequest,
|
|
317
329
|
PageNumber: pageNumber,
|
|
318
330
|
Take: take,
|
|
319
331
|
Skip: skip,
|
|
@@ -431,6 +443,8 @@ export class OrderItemsService {
|
|
|
431
443
|
parentOrderItemId,
|
|
432
444
|
orderByOpportunityStartdate,
|
|
433
445
|
eventTiming,
|
|
446
|
+
endUserIdentityId,
|
|
447
|
+
dashboardRequest,
|
|
434
448
|
pageNumber,
|
|
435
449
|
take,
|
|
436
450
|
skip,
|
|
@@ -483,6 +497,14 @@ export class OrderItemsService {
|
|
|
483
497
|
* Gets or sets the queryable event timing.
|
|
484
498
|
*/
|
|
485
499
|
eventTiming?: EventTiming;
|
|
500
|
+
/**
|
|
501
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
502
|
+
*/
|
|
503
|
+
endUserIdentityId?: string;
|
|
504
|
+
/**
|
|
505
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
506
|
+
*/
|
|
507
|
+
dashboardRequest?: boolean;
|
|
486
508
|
/**
|
|
487
509
|
* Gets or sets the page number for paged queries.
|
|
488
510
|
*/
|
|
@@ -542,6 +564,8 @@ export class OrderItemsService {
|
|
|
542
564
|
ParentOrderItemId: parentOrderItemId,
|
|
543
565
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
544
566
|
EventTiming: eventTiming,
|
|
567
|
+
EndUserIdentityId: endUserIdentityId,
|
|
568
|
+
DashboardRequest: dashboardRequest,
|
|
545
569
|
PageNumber: pageNumber,
|
|
546
570
|
Take: take,
|
|
547
571
|
Skip: skip,
|
|
@@ -578,6 +602,8 @@ export class OrderItemsService {
|
|
|
578
602
|
parentOrderItemId,
|
|
579
603
|
orderByOpportunityStartdate,
|
|
580
604
|
eventTiming,
|
|
605
|
+
endUserIdentityId,
|
|
606
|
+
dashboardRequest,
|
|
581
607
|
pageNumber,
|
|
582
608
|
take,
|
|
583
609
|
skip,
|
|
@@ -630,6 +656,14 @@ export class OrderItemsService {
|
|
|
630
656
|
* Gets or sets the queryable event timing.
|
|
631
657
|
*/
|
|
632
658
|
eventTiming?: EventTiming;
|
|
659
|
+
/**
|
|
660
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
661
|
+
*/
|
|
662
|
+
endUserIdentityId?: string;
|
|
663
|
+
/**
|
|
664
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
665
|
+
*/
|
|
666
|
+
dashboardRequest?: boolean;
|
|
633
667
|
/**
|
|
634
668
|
* Gets or sets the page number for paged queries.
|
|
635
669
|
*/
|
|
@@ -689,6 +723,8 @@ export class OrderItemsService {
|
|
|
689
723
|
ParentOrderItemId: parentOrderItemId,
|
|
690
724
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
691
725
|
EventTiming: eventTiming,
|
|
726
|
+
EndUserIdentityId: endUserIdentityId,
|
|
727
|
+
DashboardRequest: dashboardRequest,
|
|
692
728
|
PageNumber: pageNumber,
|
|
693
729
|
Take: take,
|
|
694
730
|
Skip: skip,
|
|
@@ -725,6 +761,8 @@ export class OrderItemsService {
|
|
|
725
761
|
parentOrderItemId,
|
|
726
762
|
orderByOpportunityStartdate,
|
|
727
763
|
eventTiming,
|
|
764
|
+
endUserIdentityId,
|
|
765
|
+
dashboardRequest,
|
|
728
766
|
pageNumber,
|
|
729
767
|
take,
|
|
730
768
|
skip,
|
|
@@ -777,6 +815,14 @@ export class OrderItemsService {
|
|
|
777
815
|
* Gets or sets the queryable event timing.
|
|
778
816
|
*/
|
|
779
817
|
eventTiming?: EventTiming;
|
|
818
|
+
/**
|
|
819
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
820
|
+
*/
|
|
821
|
+
endUserIdentityId?: string;
|
|
822
|
+
/**
|
|
823
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
824
|
+
*/
|
|
825
|
+
dashboardRequest?: boolean;
|
|
780
826
|
/**
|
|
781
827
|
* Gets or sets the page number for paged queries.
|
|
782
828
|
*/
|
|
@@ -836,6 +882,8 @@ export class OrderItemsService {
|
|
|
836
882
|
ParentOrderItemId: parentOrderItemId,
|
|
837
883
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
838
884
|
EventTiming: eventTiming,
|
|
885
|
+
EndUserIdentityId: endUserIdentityId,
|
|
886
|
+
DashboardRequest: dashboardRequest,
|
|
839
887
|
PageNumber: pageNumber,
|
|
840
888
|
Take: take,
|
|
841
889
|
Skip: skip,
|
|
@@ -476,6 +476,7 @@ export class OrdersService {
|
|
|
476
476
|
orderStages,
|
|
477
477
|
orderDateGte,
|
|
478
478
|
orderDateLte,
|
|
479
|
+
endUserIdentityId,
|
|
479
480
|
pageNumber,
|
|
480
481
|
take,
|
|
481
482
|
skip,
|
|
@@ -556,6 +557,10 @@ export class OrdersService {
|
|
|
556
557
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
557
558
|
*/
|
|
558
559
|
orderDateLte?: string;
|
|
560
|
+
/**
|
|
561
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
562
|
+
*/
|
|
563
|
+
endUserIdentityId?: string;
|
|
559
564
|
/**
|
|
560
565
|
* Gets or sets the page number for paged queries.
|
|
561
566
|
*/
|
|
@@ -622,6 +627,7 @@ export class OrdersService {
|
|
|
622
627
|
OrderStages: orderStages,
|
|
623
628
|
OrderDateGTE: orderDateGte,
|
|
624
629
|
OrderDateLTE: orderDateLte,
|
|
630
|
+
EndUserIdentityId: endUserIdentityId,
|
|
625
631
|
PageNumber: pageNumber,
|
|
626
632
|
Take: take,
|
|
627
633
|
Skip: skip,
|
|
@@ -746,6 +752,7 @@ export class OrdersService {
|
|
|
746
752
|
orderStages,
|
|
747
753
|
orderDateGte,
|
|
748
754
|
orderDateLte,
|
|
755
|
+
endUserIdentityId,
|
|
749
756
|
pageNumber,
|
|
750
757
|
take,
|
|
751
758
|
skip,
|
|
@@ -826,6 +833,10 @@ export class OrdersService {
|
|
|
826
833
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
827
834
|
*/
|
|
828
835
|
orderDateLte?: string;
|
|
836
|
+
/**
|
|
837
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
838
|
+
*/
|
|
839
|
+
endUserIdentityId?: string;
|
|
829
840
|
/**
|
|
830
841
|
* Gets or sets the page number for paged queries.
|
|
831
842
|
*/
|
|
@@ -892,6 +903,7 @@ export class OrdersService {
|
|
|
892
903
|
OrderStages: orderStages,
|
|
893
904
|
OrderDateGTE: orderDateGte,
|
|
894
905
|
OrderDateLTE: orderDateLte,
|
|
906
|
+
EndUserIdentityId: endUserIdentityId,
|
|
895
907
|
PageNumber: pageNumber,
|
|
896
908
|
Take: take,
|
|
897
909
|
Skip: skip,
|
|
@@ -935,6 +947,7 @@ export class OrdersService {
|
|
|
935
947
|
orderStages,
|
|
936
948
|
orderDateGte,
|
|
937
949
|
orderDateLte,
|
|
950
|
+
endUserIdentityId,
|
|
938
951
|
pageNumber,
|
|
939
952
|
take,
|
|
940
953
|
skip,
|
|
@@ -1015,6 +1028,10 @@ export class OrdersService {
|
|
|
1015
1028
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
1016
1029
|
*/
|
|
1017
1030
|
orderDateLte?: string;
|
|
1031
|
+
/**
|
|
1032
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
1033
|
+
*/
|
|
1034
|
+
endUserIdentityId?: string;
|
|
1018
1035
|
/**
|
|
1019
1036
|
* Gets or sets the page number for paged queries.
|
|
1020
1037
|
*/
|
|
@@ -1081,6 +1098,7 @@ export class OrdersService {
|
|
|
1081
1098
|
OrderStages: orderStages,
|
|
1082
1099
|
OrderDateGTE: orderDateGte,
|
|
1083
1100
|
OrderDateLTE: orderDateLte,
|
|
1101
|
+
EndUserIdentityId: endUserIdentityId,
|
|
1084
1102
|
PageNumber: pageNumber,
|
|
1085
1103
|
Take: take,
|
|
1086
1104
|
Skip: skip,
|
|
@@ -1124,6 +1142,7 @@ export class OrdersService {
|
|
|
1124
1142
|
orderStages,
|
|
1125
1143
|
orderDateGte,
|
|
1126
1144
|
orderDateLte,
|
|
1145
|
+
endUserIdentityId,
|
|
1127
1146
|
pageNumber,
|
|
1128
1147
|
take,
|
|
1129
1148
|
skip,
|
|
@@ -1204,6 +1223,10 @@ export class OrdersService {
|
|
|
1204
1223
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
1205
1224
|
*/
|
|
1206
1225
|
orderDateLte?: string;
|
|
1226
|
+
/**
|
|
1227
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
1228
|
+
*/
|
|
1229
|
+
endUserIdentityId?: string;
|
|
1207
1230
|
/**
|
|
1208
1231
|
* Gets or sets the page number for paged queries.
|
|
1209
1232
|
*/
|
|
@@ -1270,6 +1293,7 @@ export class OrdersService {
|
|
|
1270
1293
|
OrderStages: orderStages,
|
|
1271
1294
|
OrderDateGTE: orderDateGte,
|
|
1272
1295
|
OrderDateLTE: orderDateLte,
|
|
1296
|
+
EndUserIdentityId: endUserIdentityId,
|
|
1273
1297
|
PageNumber: pageNumber,
|
|
1274
1298
|
Take: take,
|
|
1275
1299
|
Skip: skip,
|
|
@@ -211,6 +211,7 @@ export class PublicBookingService {
|
|
|
211
211
|
orderStages,
|
|
212
212
|
orderDateGte,
|
|
213
213
|
orderDateLte,
|
|
214
|
+
endUserIdentityId,
|
|
214
215
|
pageNumber,
|
|
215
216
|
take,
|
|
216
217
|
skip,
|
|
@@ -299,6 +300,10 @@ export class PublicBookingService {
|
|
|
299
300
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
300
301
|
*/
|
|
301
302
|
orderDateLte?: string;
|
|
303
|
+
/**
|
|
304
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
305
|
+
*/
|
|
306
|
+
endUserIdentityId?: string;
|
|
302
307
|
/**
|
|
303
308
|
* Gets or sets the page number for paged queries.
|
|
304
309
|
*/
|
|
@@ -369,6 +374,7 @@ export class PublicBookingService {
|
|
|
369
374
|
OrderStages: orderStages,
|
|
370
375
|
OrderDateGTE: orderDateGte,
|
|
371
376
|
OrderDateLTE: orderDateLte,
|
|
377
|
+
EndUserIdentityId: endUserIdentityId,
|
|
372
378
|
PageNumber: pageNumber,
|
|
373
379
|
Take: take,
|
|
374
380
|
Skip: skip,
|
|
@@ -484,6 +490,7 @@ export class PublicBookingService {
|
|
|
484
490
|
orderStages,
|
|
485
491
|
orderDateGte,
|
|
486
492
|
orderDateLte,
|
|
493
|
+
endUserIdentityId,
|
|
487
494
|
pageNumber,
|
|
488
495
|
take,
|
|
489
496
|
skip,
|
|
@@ -572,6 +579,10 @@ export class PublicBookingService {
|
|
|
572
579
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
573
580
|
*/
|
|
574
581
|
orderDateLte?: string;
|
|
582
|
+
/**
|
|
583
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
584
|
+
*/
|
|
585
|
+
endUserIdentityId?: string;
|
|
575
586
|
/**
|
|
576
587
|
* Gets or sets the page number for paged queries.
|
|
577
588
|
*/
|
|
@@ -642,6 +653,7 @@ export class PublicBookingService {
|
|
|
642
653
|
OrderStages: orderStages,
|
|
643
654
|
OrderDateGTE: orderDateGte,
|
|
644
655
|
OrderDateLTE: orderDateLte,
|
|
656
|
+
EndUserIdentityId: endUserIdentityId,
|
|
645
657
|
PageNumber: pageNumber,
|
|
646
658
|
Take: take,
|
|
647
659
|
Skip: skip,
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
6
|
+
import type { BaseHttpRequest } from '../core/BaseHttpRequest';
|
|
7
|
+
|
|
8
|
+
export class PublicCalendarService {
|
|
9
|
+
constructor(public readonly httpRequest: BaseHttpRequest) {}
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Gets calendar data.
|
|
13
|
+
* @returns any OK
|
|
14
|
+
* @throws ApiError
|
|
15
|
+
*/
|
|
16
|
+
public getCalendarView({
|
|
17
|
+
xTenantSubdomain,
|
|
18
|
+
startDateTimeGte,
|
|
19
|
+
venueId,
|
|
20
|
+
programmeId,
|
|
21
|
+
}: {
|
|
22
|
+
/**
|
|
23
|
+
* The tenants subdomain.
|
|
24
|
+
*/
|
|
25
|
+
xTenantSubdomain?: string;
|
|
26
|
+
/**
|
|
27
|
+
* Gets or sets the queryable calendar item start date time is greater than or equal to.
|
|
28
|
+
*/
|
|
29
|
+
startDateTimeGte?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Gets or sets the venue Id for use in a query search.
|
|
32
|
+
*/
|
|
33
|
+
venueId?: string;
|
|
34
|
+
/**
|
|
35
|
+
* Gets or sets the programme Id for use in a query search.
|
|
36
|
+
*/
|
|
37
|
+
programmeId?: string;
|
|
38
|
+
}): CancelablePromise<any> {
|
|
39
|
+
return this.httpRequest.request({
|
|
40
|
+
method: 'GET',
|
|
41
|
+
url: '/api/public/calendar',
|
|
42
|
+
headers: {
|
|
43
|
+
'x-tenant-subdomain': xTenantSubdomain,
|
|
44
|
+
},
|
|
45
|
+
query: {
|
|
46
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
47
|
+
VenueId: venueId,
|
|
48
|
+
ProgrammeId: programmeId,
|
|
49
|
+
},
|
|
50
|
+
errors: {
|
|
51
|
+
400: `Bad Request`,
|
|
52
|
+
422: `Unprocessable Content`,
|
|
53
|
+
500: `Internal Server Error`,
|
|
54
|
+
},
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
}
|
|
@@ -96,6 +96,7 @@ export class PublicCoursesService {
|
|
|
96
96
|
archived,
|
|
97
97
|
deleted,
|
|
98
98
|
openActiveUpdate,
|
|
99
|
+
dashboardRequest,
|
|
99
100
|
bookingStatus,
|
|
100
101
|
startDateTimeLte,
|
|
101
102
|
startDateTimeGte,
|
|
@@ -105,6 +106,7 @@ export class PublicCoursesService {
|
|
|
105
106
|
remainingUsesGte,
|
|
106
107
|
futureOnly,
|
|
107
108
|
online,
|
|
109
|
+
featured,
|
|
108
110
|
hasAvailability,
|
|
109
111
|
orderFirstNameContains,
|
|
110
112
|
orderLastNameContains,
|
|
@@ -171,6 +173,10 @@ export class PublicCoursesService {
|
|
|
171
173
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
172
174
|
*/
|
|
173
175
|
openActiveUpdate?: boolean;
|
|
176
|
+
/**
|
|
177
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
178
|
+
*/
|
|
179
|
+
dashboardRequest?: boolean;
|
|
174
180
|
/**
|
|
175
181
|
* Gets or sets the queryable booking status.
|
|
176
182
|
*/
|
|
@@ -207,6 +213,10 @@ export class PublicCoursesService {
|
|
|
207
213
|
* Gets or sets a value indicating whether return online courses.
|
|
208
214
|
*/
|
|
209
215
|
online?: boolean;
|
|
216
|
+
/**
|
|
217
|
+
* Gets or sets a value indicating whether the course is featured on the storefront.
|
|
218
|
+
*/
|
|
219
|
+
featured?: boolean;
|
|
210
220
|
/**
|
|
211
221
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
212
222
|
*/
|
|
@@ -306,6 +316,7 @@ export class PublicCoursesService {
|
|
|
306
316
|
Archived: archived,
|
|
307
317
|
Deleted: deleted,
|
|
308
318
|
OpenActiveUpdate: openActiveUpdate,
|
|
319
|
+
DashboardRequest: dashboardRequest,
|
|
309
320
|
BookingStatus: bookingStatus,
|
|
310
321
|
StartDateTimeLTE: startDateTimeLte,
|
|
311
322
|
StartDateTimeGTE: startDateTimeGte,
|
|
@@ -315,6 +326,7 @@ export class PublicCoursesService {
|
|
|
315
326
|
RemainingUsesGTE: remainingUsesGte,
|
|
316
327
|
FutureOnly: futureOnly,
|
|
317
328
|
Online: online,
|
|
329
|
+
Featured: featured,
|
|
318
330
|
HasAvailability: hasAvailability,
|
|
319
331
|
OrderFirstNameContains: orderFirstNameContains,
|
|
320
332
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -498,6 +510,7 @@ export class PublicCoursesService {
|
|
|
498
510
|
archived,
|
|
499
511
|
deleted,
|
|
500
512
|
openActiveUpdate,
|
|
513
|
+
dashboardRequest,
|
|
501
514
|
bookingStatus,
|
|
502
515
|
startDateTimeLte,
|
|
503
516
|
startDateTimeGte,
|
|
@@ -507,6 +520,7 @@ export class PublicCoursesService {
|
|
|
507
520
|
remainingUsesGte,
|
|
508
521
|
futureOnly,
|
|
509
522
|
online,
|
|
523
|
+
featured,
|
|
510
524
|
hasAvailability,
|
|
511
525
|
orderFirstNameContains,
|
|
512
526
|
orderLastNameContains,
|
|
@@ -576,6 +590,10 @@ export class PublicCoursesService {
|
|
|
576
590
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
577
591
|
*/
|
|
578
592
|
openActiveUpdate?: boolean;
|
|
593
|
+
/**
|
|
594
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
595
|
+
*/
|
|
596
|
+
dashboardRequest?: boolean;
|
|
579
597
|
/**
|
|
580
598
|
* Gets or sets the queryable booking status.
|
|
581
599
|
*/
|
|
@@ -612,6 +630,10 @@ export class PublicCoursesService {
|
|
|
612
630
|
* Gets or sets a value indicating whether return online courses.
|
|
613
631
|
*/
|
|
614
632
|
online?: boolean;
|
|
633
|
+
/**
|
|
634
|
+
* Gets or sets a value indicating whether the course is featured on the storefront.
|
|
635
|
+
*/
|
|
636
|
+
featured?: boolean;
|
|
615
637
|
/**
|
|
616
638
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
617
639
|
*/
|
|
@@ -711,6 +733,7 @@ export class PublicCoursesService {
|
|
|
711
733
|
Archived: archived,
|
|
712
734
|
Deleted: deleted,
|
|
713
735
|
OpenActiveUpdate: openActiveUpdate,
|
|
736
|
+
DashboardRequest: dashboardRequest,
|
|
714
737
|
BookingStatus: bookingStatus,
|
|
715
738
|
StartDateTimeLTE: startDateTimeLte,
|
|
716
739
|
StartDateTimeGTE: startDateTimeGte,
|
|
@@ -720,6 +743,7 @@ export class PublicCoursesService {
|
|
|
720
743
|
RemainingUsesGTE: remainingUsesGte,
|
|
721
744
|
FutureOnly: futureOnly,
|
|
722
745
|
Online: online,
|
|
746
|
+
Featured: featured,
|
|
723
747
|
HasAvailability: hasAvailability,
|
|
724
748
|
OrderFirstNameContains: orderFirstNameContains,
|
|
725
749
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -59,6 +59,7 @@ export class PublicGenericActivityService {
|
|
|
59
59
|
deleted,
|
|
60
60
|
activityType,
|
|
61
61
|
includeNextOpportunity,
|
|
62
|
+
featured,
|
|
62
63
|
searchGeoCenter,
|
|
63
64
|
openactiveActivityId,
|
|
64
65
|
activityId,
|
|
@@ -129,6 +130,10 @@ export class PublicGenericActivityService {
|
|
|
129
130
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
130
131
|
*/
|
|
131
132
|
includeNextOpportunity?: boolean;
|
|
133
|
+
/**
|
|
134
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
135
|
+
*/
|
|
136
|
+
featured?: boolean;
|
|
132
137
|
/**
|
|
133
138
|
* Gets or sets SearchGeoCenter.
|
|
134
139
|
*/
|
|
@@ -274,6 +279,7 @@ export class PublicGenericActivityService {
|
|
|
274
279
|
Deleted: deleted,
|
|
275
280
|
ActivityType: activityType,
|
|
276
281
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
282
|
+
Featured: featured,
|
|
277
283
|
SearchGeoCenter: searchGeoCenter,
|
|
278
284
|
OpenactiveActivityId: openactiveActivityId,
|
|
279
285
|
ActivityId: activityId,
|
|
@@ -330,6 +336,7 @@ export class PublicGenericActivityService {
|
|
|
330
336
|
deleted,
|
|
331
337
|
activityType,
|
|
332
338
|
includeNextOpportunity,
|
|
339
|
+
featured,
|
|
333
340
|
searchGeoCenter,
|
|
334
341
|
openactiveActivityId,
|
|
335
342
|
activityId,
|
|
@@ -399,6 +406,10 @@ export class PublicGenericActivityService {
|
|
|
399
406
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
400
407
|
*/
|
|
401
408
|
includeNextOpportunity?: boolean;
|
|
409
|
+
/**
|
|
410
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
411
|
+
*/
|
|
412
|
+
featured?: boolean;
|
|
402
413
|
/**
|
|
403
414
|
* Gets or sets SearchGeoCenter.
|
|
404
415
|
*/
|
|
@@ -541,6 +552,7 @@ export class PublicGenericActivityService {
|
|
|
541
552
|
Deleted: deleted,
|
|
542
553
|
ActivityType: activityType,
|
|
543
554
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
555
|
+
Featured: featured,
|
|
544
556
|
SearchGeoCenter: searchGeoCenter,
|
|
545
557
|
OpenactiveActivityId: openactiveActivityId,
|
|
546
558
|
ActivityId: activityId,
|
|
@@ -598,6 +610,7 @@ export class PublicGenericActivityService {
|
|
|
598
610
|
deleted,
|
|
599
611
|
activityType,
|
|
600
612
|
includeNextOpportunity,
|
|
613
|
+
featured,
|
|
601
614
|
searchGeoCenter,
|
|
602
615
|
openactiveActivityId,
|
|
603
616
|
activityId,
|
|
@@ -671,6 +684,10 @@ export class PublicGenericActivityService {
|
|
|
671
684
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
672
685
|
*/
|
|
673
686
|
includeNextOpportunity?: boolean;
|
|
687
|
+
/**
|
|
688
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
689
|
+
*/
|
|
690
|
+
featured?: boolean;
|
|
674
691
|
/**
|
|
675
692
|
* Gets or sets SearchGeoCenter.
|
|
676
693
|
*/
|
|
@@ -816,6 +833,7 @@ export class PublicGenericActivityService {
|
|
|
816
833
|
Deleted: deleted,
|
|
817
834
|
ActivityType: activityType,
|
|
818
835
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
836
|
+
Featured: featured,
|
|
819
837
|
SearchGeoCenter: searchGeoCenter,
|
|
820
838
|
OpenactiveActivityId: openactiveActivityId,
|
|
821
839
|
ActivityId: activityId,
|
|
@@ -918,6 +936,7 @@ export class PublicGenericActivityService {
|
|
|
918
936
|
deleted,
|
|
919
937
|
activityType,
|
|
920
938
|
includeNextOpportunity,
|
|
939
|
+
featured,
|
|
921
940
|
searchGeoCenter,
|
|
922
941
|
openactiveActivityId,
|
|
923
942
|
activityId,
|
|
@@ -991,6 +1010,10 @@ export class PublicGenericActivityService {
|
|
|
991
1010
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
992
1011
|
*/
|
|
993
1012
|
includeNextOpportunity?: boolean;
|
|
1013
|
+
/**
|
|
1014
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
1015
|
+
*/
|
|
1016
|
+
featured?: boolean;
|
|
994
1017
|
/**
|
|
995
1018
|
* Gets or sets SearchGeoCenter.
|
|
996
1019
|
*/
|
|
@@ -1136,6 +1159,7 @@ export class PublicGenericActivityService {
|
|
|
1136
1159
|
Deleted: deleted,
|
|
1137
1160
|
ActivityType: activityType,
|
|
1138
1161
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
1162
|
+
Featured: featured,
|
|
1139
1163
|
SearchGeoCenter: searchGeoCenter,
|
|
1140
1164
|
OpenactiveActivityId: openactiveActivityId,
|
|
1141
1165
|
ActivityId: activityId,
|
|
@@ -365,6 +365,7 @@ export class PublicLeasingService {
|
|
|
365
365
|
orderStages,
|
|
366
366
|
orderDateGte,
|
|
367
367
|
orderDateLte,
|
|
368
|
+
endUserIdentityId,
|
|
368
369
|
pageNumber,
|
|
369
370
|
take,
|
|
370
371
|
skip,
|
|
@@ -449,6 +450,10 @@ export class PublicLeasingService {
|
|
|
449
450
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
450
451
|
*/
|
|
451
452
|
orderDateLte?: string;
|
|
453
|
+
/**
|
|
454
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
455
|
+
*/
|
|
456
|
+
endUserIdentityId?: string;
|
|
452
457
|
/**
|
|
453
458
|
* Gets or sets the page number for paged queries.
|
|
454
459
|
*/
|
|
@@ -518,6 +523,7 @@ export class PublicLeasingService {
|
|
|
518
523
|
OrderStages: orderStages,
|
|
519
524
|
OrderDateGTE: orderDateGte,
|
|
520
525
|
OrderDateLTE: orderDateLte,
|
|
526
|
+
EndUserIdentityId: endUserIdentityId,
|
|
521
527
|
PageNumber: pageNumber,
|
|
522
528
|
Take: take,
|
|
523
529
|
Skip: skip,
|
|
@@ -562,6 +568,7 @@ export class PublicLeasingService {
|
|
|
562
568
|
orderStages,
|
|
563
569
|
orderDateGte,
|
|
564
570
|
orderDateLte,
|
|
571
|
+
endUserIdentityId,
|
|
565
572
|
pageNumber,
|
|
566
573
|
take,
|
|
567
574
|
skip,
|
|
@@ -646,6 +653,10 @@ export class PublicLeasingService {
|
|
|
646
653
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
647
654
|
*/
|
|
648
655
|
orderDateLte?: string;
|
|
656
|
+
/**
|
|
657
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
658
|
+
*/
|
|
659
|
+
endUserIdentityId?: string;
|
|
649
660
|
/**
|
|
650
661
|
* Gets or sets the page number for paged queries.
|
|
651
662
|
*/
|
|
@@ -715,6 +726,7 @@ export class PublicLeasingService {
|
|
|
715
726
|
OrderStages: orderStages,
|
|
716
727
|
OrderDateGTE: orderDateGte,
|
|
717
728
|
OrderDateLTE: orderDateLte,
|
|
729
|
+
EndUserIdentityId: endUserIdentityId,
|
|
718
730
|
PageNumber: pageNumber,
|
|
719
731
|
Take: take,
|
|
720
732
|
Skip: skip,
|