reach-api-sdk 1.0.192 → 1.0.194
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 +376 -52
- package/dist/reach-sdk.js +213 -5
- package/package.json +1 -1
- package/src/definition/swagger.yaml +655 -7
- package/src/models/Course.ts +8 -0
- package/src/models/CreateDeal.ts +8 -0
- package/src/models/Deal.ts +8 -0
- package/src/models/GenericActivity.ts +4 -0
- package/src/models/Session.ts +4 -0
- package/src/services/CourseSessionsService.ts +24 -0
- package/src/services/CoursesService.ts +80 -2
- package/src/services/GenericActivityService.ts +60 -0
- package/src/services/OrderItemsService.ts +24 -0
- package/src/services/PublicCalendarService.ts +1 -1
- package/src/services/PublicCoursesService.ts +12 -0
- package/src/services/PublicGenericActivityService.ts +48 -0
- package/src/services/PublicNetworksService.ts +6 -0
- package/src/services/PublicOrderItemsService.ts +12 -0
- package/src/services/PublicScheduledSessionsService.ts +12 -0
- package/src/services/PublicSessionsService.ts +18 -0
- package/src/services/PublicVenuesService.ts +36 -0
- package/src/services/ScheduledSessionsService.ts +24 -0
- package/src/services/SessionsService.ts +82 -4
- package/src/services/VenuesService.ts +48 -0
|
@@ -204,6 +204,7 @@ export class OrderItemsService {
|
|
|
204
204
|
orderByOpportunityStartdate,
|
|
205
205
|
eventTiming,
|
|
206
206
|
endUserIdentityId,
|
|
207
|
+
dashboardRequest,
|
|
207
208
|
pageNumber,
|
|
208
209
|
take,
|
|
209
210
|
skip,
|
|
@@ -260,6 +261,10 @@ export class OrderItemsService {
|
|
|
260
261
|
* Gets or sets the end user identity Id for use in a query search.
|
|
261
262
|
*/
|
|
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;
|
|
263
268
|
/**
|
|
264
269
|
* Gets or sets the page number for paged queries.
|
|
265
270
|
*/
|
|
@@ -320,6 +325,7 @@ export class OrderItemsService {
|
|
|
320
325
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
321
326
|
EventTiming: eventTiming,
|
|
322
327
|
EndUserIdentityId: endUserIdentityId,
|
|
328
|
+
DashboardRequest: dashboardRequest,
|
|
323
329
|
PageNumber: pageNumber,
|
|
324
330
|
Take: take,
|
|
325
331
|
Skip: skip,
|
|
@@ -438,6 +444,7 @@ export class OrderItemsService {
|
|
|
438
444
|
orderByOpportunityStartdate,
|
|
439
445
|
eventTiming,
|
|
440
446
|
endUserIdentityId,
|
|
447
|
+
dashboardRequest,
|
|
441
448
|
pageNumber,
|
|
442
449
|
take,
|
|
443
450
|
skip,
|
|
@@ -494,6 +501,10 @@ export class OrderItemsService {
|
|
|
494
501
|
* Gets or sets the end user identity Id for use in a query search.
|
|
495
502
|
*/
|
|
496
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;
|
|
497
508
|
/**
|
|
498
509
|
* Gets or sets the page number for paged queries.
|
|
499
510
|
*/
|
|
@@ -554,6 +565,7 @@ export class OrderItemsService {
|
|
|
554
565
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
555
566
|
EventTiming: eventTiming,
|
|
556
567
|
EndUserIdentityId: endUserIdentityId,
|
|
568
|
+
DashboardRequest: dashboardRequest,
|
|
557
569
|
PageNumber: pageNumber,
|
|
558
570
|
Take: take,
|
|
559
571
|
Skip: skip,
|
|
@@ -591,6 +603,7 @@ export class OrderItemsService {
|
|
|
591
603
|
orderByOpportunityStartdate,
|
|
592
604
|
eventTiming,
|
|
593
605
|
endUserIdentityId,
|
|
606
|
+
dashboardRequest,
|
|
594
607
|
pageNumber,
|
|
595
608
|
take,
|
|
596
609
|
skip,
|
|
@@ -647,6 +660,10 @@ export class OrderItemsService {
|
|
|
647
660
|
* Gets or sets the end user identity Id for use in a query search.
|
|
648
661
|
*/
|
|
649
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;
|
|
650
667
|
/**
|
|
651
668
|
* Gets or sets the page number for paged queries.
|
|
652
669
|
*/
|
|
@@ -707,6 +724,7 @@ export class OrderItemsService {
|
|
|
707
724
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
708
725
|
EventTiming: eventTiming,
|
|
709
726
|
EndUserIdentityId: endUserIdentityId,
|
|
727
|
+
DashboardRequest: dashboardRequest,
|
|
710
728
|
PageNumber: pageNumber,
|
|
711
729
|
Take: take,
|
|
712
730
|
Skip: skip,
|
|
@@ -744,6 +762,7 @@ export class OrderItemsService {
|
|
|
744
762
|
orderByOpportunityStartdate,
|
|
745
763
|
eventTiming,
|
|
746
764
|
endUserIdentityId,
|
|
765
|
+
dashboardRequest,
|
|
747
766
|
pageNumber,
|
|
748
767
|
take,
|
|
749
768
|
skip,
|
|
@@ -800,6 +819,10 @@ export class OrderItemsService {
|
|
|
800
819
|
* Gets or sets the end user identity Id for use in a query search.
|
|
801
820
|
*/
|
|
802
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;
|
|
803
826
|
/**
|
|
804
827
|
* Gets or sets the page number for paged queries.
|
|
805
828
|
*/
|
|
@@ -860,6 +883,7 @@ export class OrderItemsService {
|
|
|
860
883
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
861
884
|
EventTiming: eventTiming,
|
|
862
885
|
EndUserIdentityId: endUserIdentityId,
|
|
886
|
+
DashboardRequest: dashboardRequest,
|
|
863
887
|
PageNumber: pageNumber,
|
|
864
888
|
Take: take,
|
|
865
889
|
Skip: skip,
|
|
@@ -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,
|
|
@@ -172,6 +173,10 @@ export class PublicCoursesService {
|
|
|
172
173
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
173
174
|
*/
|
|
174
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;
|
|
175
180
|
/**
|
|
176
181
|
* Gets or sets the queryable booking status.
|
|
177
182
|
*/
|
|
@@ -311,6 +316,7 @@ export class PublicCoursesService {
|
|
|
311
316
|
Archived: archived,
|
|
312
317
|
Deleted: deleted,
|
|
313
318
|
OpenActiveUpdate: openActiveUpdate,
|
|
319
|
+
DashboardRequest: dashboardRequest,
|
|
314
320
|
BookingStatus: bookingStatus,
|
|
315
321
|
StartDateTimeLTE: startDateTimeLte,
|
|
316
322
|
StartDateTimeGTE: startDateTimeGte,
|
|
@@ -504,6 +510,7 @@ export class PublicCoursesService {
|
|
|
504
510
|
archived,
|
|
505
511
|
deleted,
|
|
506
512
|
openActiveUpdate,
|
|
513
|
+
dashboardRequest,
|
|
507
514
|
bookingStatus,
|
|
508
515
|
startDateTimeLte,
|
|
509
516
|
startDateTimeGte,
|
|
@@ -583,6 +590,10 @@ export class PublicCoursesService {
|
|
|
583
590
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
584
591
|
*/
|
|
585
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;
|
|
586
597
|
/**
|
|
587
598
|
* Gets or sets the queryable booking status.
|
|
588
599
|
*/
|
|
@@ -722,6 +733,7 @@ export class PublicCoursesService {
|
|
|
722
733
|
Archived: archived,
|
|
723
734
|
Deleted: deleted,
|
|
724
735
|
OpenActiveUpdate: openActiveUpdate,
|
|
736
|
+
DashboardRequest: dashboardRequest,
|
|
725
737
|
BookingStatus: bookingStatus,
|
|
726
738
|
StartDateTimeLTE: startDateTimeLte,
|
|
727
739
|
StartDateTimeGTE: startDateTimeGte,
|
|
@@ -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,
|
|
@@ -80,6 +81,7 @@ export class PublicGenericActivityService {
|
|
|
80
81
|
periodsOfWeek,
|
|
81
82
|
additionalSupport,
|
|
82
83
|
amenity,
|
|
84
|
+
programmeIds,
|
|
83
85
|
pageNumber,
|
|
84
86
|
take,
|
|
85
87
|
skip,
|
|
@@ -129,6 +131,10 @@ export class PublicGenericActivityService {
|
|
|
129
131
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
130
132
|
*/
|
|
131
133
|
includeNextOpportunity?: boolean;
|
|
134
|
+
/**
|
|
135
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
136
|
+
*/
|
|
137
|
+
featured?: boolean;
|
|
132
138
|
/**
|
|
133
139
|
* Gets or sets SearchGeoCenter.
|
|
134
140
|
*/
|
|
@@ -213,6 +219,10 @@ export class PublicGenericActivityService {
|
|
|
213
219
|
* Gets or sets AmenityId.
|
|
214
220
|
*/
|
|
215
221
|
amenity?: Array<number>;
|
|
222
|
+
/**
|
|
223
|
+
* Gets or sets the Programme ids.
|
|
224
|
+
*/
|
|
225
|
+
programmeIds?: Array<string>;
|
|
216
226
|
/**
|
|
217
227
|
* Gets or sets the page number for paged queries.
|
|
218
228
|
*/
|
|
@@ -274,6 +284,7 @@ export class PublicGenericActivityService {
|
|
|
274
284
|
Deleted: deleted,
|
|
275
285
|
ActivityType: activityType,
|
|
276
286
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
287
|
+
Featured: featured,
|
|
277
288
|
SearchGeoCenter: searchGeoCenter,
|
|
278
289
|
OpenactiveActivityId: openactiveActivityId,
|
|
279
290
|
ActivityId: activityId,
|
|
@@ -295,6 +306,7 @@ export class PublicGenericActivityService {
|
|
|
295
306
|
PeriodsOfWeek: periodsOfWeek,
|
|
296
307
|
AdditionalSupport: additionalSupport,
|
|
297
308
|
Amenity: amenity,
|
|
309
|
+
ProgrammeIds: programmeIds,
|
|
298
310
|
PageNumber: pageNumber,
|
|
299
311
|
Take: take,
|
|
300
312
|
Skip: skip,
|
|
@@ -330,6 +342,7 @@ export class PublicGenericActivityService {
|
|
|
330
342
|
deleted,
|
|
331
343
|
activityType,
|
|
332
344
|
includeNextOpportunity,
|
|
345
|
+
featured,
|
|
333
346
|
searchGeoCenter,
|
|
334
347
|
openactiveActivityId,
|
|
335
348
|
activityId,
|
|
@@ -351,6 +364,7 @@ export class PublicGenericActivityService {
|
|
|
351
364
|
periodsOfWeek,
|
|
352
365
|
additionalSupport,
|
|
353
366
|
amenity,
|
|
367
|
+
programmeIds,
|
|
354
368
|
pageNumber,
|
|
355
369
|
take,
|
|
356
370
|
skip,
|
|
@@ -399,6 +413,10 @@ export class PublicGenericActivityService {
|
|
|
399
413
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
400
414
|
*/
|
|
401
415
|
includeNextOpportunity?: boolean;
|
|
416
|
+
/**
|
|
417
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
418
|
+
*/
|
|
419
|
+
featured?: boolean;
|
|
402
420
|
/**
|
|
403
421
|
* Gets or sets SearchGeoCenter.
|
|
404
422
|
*/
|
|
@@ -483,6 +501,10 @@ export class PublicGenericActivityService {
|
|
|
483
501
|
* Gets or sets AmenityId.
|
|
484
502
|
*/
|
|
485
503
|
amenity?: Array<number>;
|
|
504
|
+
/**
|
|
505
|
+
* Gets or sets the Programme ids.
|
|
506
|
+
*/
|
|
507
|
+
programmeIds?: Array<string>;
|
|
486
508
|
/**
|
|
487
509
|
* Gets or sets the page number for paged queries.
|
|
488
510
|
*/
|
|
@@ -541,6 +563,7 @@ export class PublicGenericActivityService {
|
|
|
541
563
|
Deleted: deleted,
|
|
542
564
|
ActivityType: activityType,
|
|
543
565
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
566
|
+
Featured: featured,
|
|
544
567
|
SearchGeoCenter: searchGeoCenter,
|
|
545
568
|
OpenactiveActivityId: openactiveActivityId,
|
|
546
569
|
ActivityId: activityId,
|
|
@@ -562,6 +585,7 @@ export class PublicGenericActivityService {
|
|
|
562
585
|
PeriodsOfWeek: periodsOfWeek,
|
|
563
586
|
AdditionalSupport: additionalSupport,
|
|
564
587
|
Amenity: amenity,
|
|
588
|
+
ProgrammeIds: programmeIds,
|
|
565
589
|
PageNumber: pageNumber,
|
|
566
590
|
Take: take,
|
|
567
591
|
Skip: skip,
|
|
@@ -598,6 +622,7 @@ export class PublicGenericActivityService {
|
|
|
598
622
|
deleted,
|
|
599
623
|
activityType,
|
|
600
624
|
includeNextOpportunity,
|
|
625
|
+
featured,
|
|
601
626
|
searchGeoCenter,
|
|
602
627
|
openactiveActivityId,
|
|
603
628
|
activityId,
|
|
@@ -619,6 +644,7 @@ export class PublicGenericActivityService {
|
|
|
619
644
|
periodsOfWeek,
|
|
620
645
|
additionalSupport,
|
|
621
646
|
amenity,
|
|
647
|
+
programmeIds,
|
|
622
648
|
pageNumber,
|
|
623
649
|
take,
|
|
624
650
|
skip,
|
|
@@ -671,6 +697,10 @@ export class PublicGenericActivityService {
|
|
|
671
697
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
672
698
|
*/
|
|
673
699
|
includeNextOpportunity?: boolean;
|
|
700
|
+
/**
|
|
701
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
702
|
+
*/
|
|
703
|
+
featured?: boolean;
|
|
674
704
|
/**
|
|
675
705
|
* Gets or sets SearchGeoCenter.
|
|
676
706
|
*/
|
|
@@ -755,6 +785,10 @@ export class PublicGenericActivityService {
|
|
|
755
785
|
* Gets or sets AmenityId.
|
|
756
786
|
*/
|
|
757
787
|
amenity?: Array<number>;
|
|
788
|
+
/**
|
|
789
|
+
* Gets or sets the Programme ids.
|
|
790
|
+
*/
|
|
791
|
+
programmeIds?: Array<string>;
|
|
758
792
|
/**
|
|
759
793
|
* Gets or sets the page number for paged queries.
|
|
760
794
|
*/
|
|
@@ -816,6 +850,7 @@ export class PublicGenericActivityService {
|
|
|
816
850
|
Deleted: deleted,
|
|
817
851
|
ActivityType: activityType,
|
|
818
852
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
853
|
+
Featured: featured,
|
|
819
854
|
SearchGeoCenter: searchGeoCenter,
|
|
820
855
|
OpenactiveActivityId: openactiveActivityId,
|
|
821
856
|
ActivityId: activityId,
|
|
@@ -837,6 +872,7 @@ export class PublicGenericActivityService {
|
|
|
837
872
|
PeriodsOfWeek: periodsOfWeek,
|
|
838
873
|
AdditionalSupport: additionalSupport,
|
|
839
874
|
Amenity: amenity,
|
|
875
|
+
ProgrammeIds: programmeIds,
|
|
840
876
|
PageNumber: pageNumber,
|
|
841
877
|
Take: take,
|
|
842
878
|
Skip: skip,
|
|
@@ -918,6 +954,7 @@ export class PublicGenericActivityService {
|
|
|
918
954
|
deleted,
|
|
919
955
|
activityType,
|
|
920
956
|
includeNextOpportunity,
|
|
957
|
+
featured,
|
|
921
958
|
searchGeoCenter,
|
|
922
959
|
openactiveActivityId,
|
|
923
960
|
activityId,
|
|
@@ -939,6 +976,7 @@ export class PublicGenericActivityService {
|
|
|
939
976
|
periodsOfWeek,
|
|
940
977
|
additionalSupport,
|
|
941
978
|
amenity,
|
|
979
|
+
programmeIds,
|
|
942
980
|
pageNumber,
|
|
943
981
|
take,
|
|
944
982
|
skip,
|
|
@@ -991,6 +1029,10 @@ export class PublicGenericActivityService {
|
|
|
991
1029
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
992
1030
|
*/
|
|
993
1031
|
includeNextOpportunity?: boolean;
|
|
1032
|
+
/**
|
|
1033
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
1034
|
+
*/
|
|
1035
|
+
featured?: boolean;
|
|
994
1036
|
/**
|
|
995
1037
|
* Gets or sets SearchGeoCenter.
|
|
996
1038
|
*/
|
|
@@ -1075,6 +1117,10 @@ export class PublicGenericActivityService {
|
|
|
1075
1117
|
* Gets or sets AmenityId.
|
|
1076
1118
|
*/
|
|
1077
1119
|
amenity?: Array<number>;
|
|
1120
|
+
/**
|
|
1121
|
+
* Gets or sets the Programme ids.
|
|
1122
|
+
*/
|
|
1123
|
+
programmeIds?: Array<string>;
|
|
1078
1124
|
/**
|
|
1079
1125
|
* Gets or sets the page number for paged queries.
|
|
1080
1126
|
*/
|
|
@@ -1136,6 +1182,7 @@ export class PublicGenericActivityService {
|
|
|
1136
1182
|
Deleted: deleted,
|
|
1137
1183
|
ActivityType: activityType,
|
|
1138
1184
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
1185
|
+
Featured: featured,
|
|
1139
1186
|
SearchGeoCenter: searchGeoCenter,
|
|
1140
1187
|
OpenactiveActivityId: openactiveActivityId,
|
|
1141
1188
|
ActivityId: activityId,
|
|
@@ -1157,6 +1204,7 @@ export class PublicGenericActivityService {
|
|
|
1157
1204
|
PeriodsOfWeek: periodsOfWeek,
|
|
1158
1205
|
AdditionalSupport: additionalSupport,
|
|
1159
1206
|
Amenity: amenity,
|
|
1207
|
+
ProgrammeIds: programmeIds,
|
|
1160
1208
|
PageNumber: pageNumber,
|
|
1161
1209
|
Take: take,
|
|
1162
1210
|
Skip: skip,
|
|
@@ -34,6 +34,7 @@ export class PublicNetworksService {
|
|
|
34
34
|
archived,
|
|
35
35
|
deleted,
|
|
36
36
|
openActiveUpdate,
|
|
37
|
+
dashboardRequest,
|
|
37
38
|
networkId,
|
|
38
39
|
distance,
|
|
39
40
|
minAgeLte,
|
|
@@ -118,6 +119,10 @@ export class PublicNetworksService {
|
|
|
118
119
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
119
120
|
*/
|
|
120
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;
|
|
121
126
|
/**
|
|
122
127
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
123
128
|
*/
|
|
@@ -245,6 +250,7 @@ export class PublicNetworksService {
|
|
|
245
250
|
Archived: archived,
|
|
246
251
|
Deleted: deleted,
|
|
247
252
|
OpenActiveUpdate: openActiveUpdate,
|
|
253
|
+
DashboardRequest: dashboardRequest,
|
|
248
254
|
NetworkId: networkId,
|
|
249
255
|
Distance: distance,
|
|
250
256
|
MinAgeLTE: minAgeLte,
|
|
@@ -33,6 +33,7 @@ export class PublicOrderItemsService {
|
|
|
33
33
|
orderByOpportunityStartdate,
|
|
34
34
|
eventTiming,
|
|
35
35
|
endUserIdentityId,
|
|
36
|
+
dashboardRequest,
|
|
36
37
|
pageNumber,
|
|
37
38
|
take,
|
|
38
39
|
skip,
|
|
@@ -90,6 +91,10 @@ export class PublicOrderItemsService {
|
|
|
90
91
|
* Gets or sets the end user identity Id for use in a query search.
|
|
91
92
|
*/
|
|
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;
|
|
93
98
|
/**
|
|
94
99
|
* Gets or sets the page number for paged queries.
|
|
95
100
|
*/
|
|
@@ -153,6 +158,7 @@ export class PublicOrderItemsService {
|
|
|
153
158
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
154
159
|
EventTiming: eventTiming,
|
|
155
160
|
EndUserIdentityId: endUserIdentityId,
|
|
161
|
+
DashboardRequest: dashboardRequest,
|
|
156
162
|
PageNumber: pageNumber,
|
|
157
163
|
Take: take,
|
|
158
164
|
Skip: skip,
|
|
@@ -438,6 +444,7 @@ export class PublicOrderItemsService {
|
|
|
438
444
|
orderByOpportunityStartdate,
|
|
439
445
|
eventTiming,
|
|
440
446
|
endUserIdentityId,
|
|
447
|
+
dashboardRequest,
|
|
441
448
|
pageNumber,
|
|
442
449
|
take,
|
|
443
450
|
skip,
|
|
@@ -498,6 +505,10 @@ export class PublicOrderItemsService {
|
|
|
498
505
|
* Gets or sets the end user identity Id for use in a query search.
|
|
499
506
|
*/
|
|
500
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;
|
|
501
512
|
/**
|
|
502
513
|
* Gets or sets the page number for paged queries.
|
|
503
514
|
*/
|
|
@@ -561,6 +572,7 @@ export class PublicOrderItemsService {
|
|
|
561
572
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
562
573
|
EventTiming: eventTiming,
|
|
563
574
|
EndUserIdentityId: endUserIdentityId,
|
|
575
|
+
DashboardRequest: dashboardRequest,
|
|
564
576
|
PageNumber: pageNumber,
|
|
565
577
|
Take: take,
|
|
566
578
|
Skip: skip,
|
|
@@ -105,6 +105,7 @@ export class PublicScheduledSessionsService {
|
|
|
105
105
|
bookableOnly,
|
|
106
106
|
includeImages,
|
|
107
107
|
includeVenue,
|
|
108
|
+
includeOffers,
|
|
108
109
|
includeOrders,
|
|
109
110
|
hasAvailability,
|
|
110
111
|
excludeArchived,
|
|
@@ -201,6 +202,10 @@ export class PublicScheduledSessionsService {
|
|
|
201
202
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
202
203
|
*/
|
|
203
204
|
includeVenue?: boolean;
|
|
205
|
+
/**
|
|
206
|
+
* Gets or sets a value indicating whether to include offer detail in the results.
|
|
207
|
+
*/
|
|
208
|
+
includeOffers?: boolean;
|
|
204
209
|
/**
|
|
205
210
|
* Gets or sets a value indicating whether to include order detail in the results.
|
|
206
211
|
*/
|
|
@@ -300,6 +305,7 @@ export class PublicScheduledSessionsService {
|
|
|
300
305
|
BookableOnly: bookableOnly,
|
|
301
306
|
IncludeImages: includeImages,
|
|
302
307
|
IncludeVenue: includeVenue,
|
|
308
|
+
IncludeOffers: includeOffers,
|
|
303
309
|
IncludeOrders: includeOrders,
|
|
304
310
|
HasAvailability: hasAvailability,
|
|
305
311
|
ExcludeArchived: excludeArchived,
|
|
@@ -489,6 +495,7 @@ export class PublicScheduledSessionsService {
|
|
|
489
495
|
bookableOnly,
|
|
490
496
|
includeImages,
|
|
491
497
|
includeVenue,
|
|
498
|
+
includeOffers,
|
|
492
499
|
includeOrders,
|
|
493
500
|
hasAvailability,
|
|
494
501
|
excludeArchived,
|
|
@@ -588,6 +595,10 @@ export class PublicScheduledSessionsService {
|
|
|
588
595
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
589
596
|
*/
|
|
590
597
|
includeVenue?: boolean;
|
|
598
|
+
/**
|
|
599
|
+
* Gets or sets a value indicating whether to include offer detail in the results.
|
|
600
|
+
*/
|
|
601
|
+
includeOffers?: boolean;
|
|
591
602
|
/**
|
|
592
603
|
* Gets or sets a value indicating whether to include order detail in the results.
|
|
593
604
|
*/
|
|
@@ -687,6 +698,7 @@ export class PublicScheduledSessionsService {
|
|
|
687
698
|
BookableOnly: bookableOnly,
|
|
688
699
|
IncludeImages: includeImages,
|
|
689
700
|
IncludeVenue: includeVenue,
|
|
701
|
+
IncludeOffers: includeOffers,
|
|
690
702
|
IncludeOrders: includeOrders,
|
|
691
703
|
HasAvailability: hasAvailability,
|
|
692
704
|
ExcludeArchived: excludeArchived,
|
|
@@ -103,6 +103,7 @@ export class PublicSessionsService {
|
|
|
103
103
|
archived,
|
|
104
104
|
deleted,
|
|
105
105
|
openActiveUpdate,
|
|
106
|
+
dashboardRequest,
|
|
106
107
|
networkId,
|
|
107
108
|
distance,
|
|
108
109
|
minAgeLte,
|
|
@@ -188,6 +189,10 @@ export class PublicSessionsService {
|
|
|
188
189
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
189
190
|
*/
|
|
190
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;
|
|
191
196
|
/**
|
|
192
197
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
193
198
|
*/
|
|
@@ -318,6 +323,7 @@ export class PublicSessionsService {
|
|
|
318
323
|
Archived: archived,
|
|
319
324
|
Deleted: deleted,
|
|
320
325
|
OpenActiveUpdate: openActiveUpdate,
|
|
326
|
+
DashboardRequest: dashboardRequest,
|
|
321
327
|
NetworkId: networkId,
|
|
322
328
|
Distance: distance,
|
|
323
329
|
MinAgeLTE: minAgeLte,
|
|
@@ -455,6 +461,7 @@ export class PublicSessionsService {
|
|
|
455
461
|
bookableOnly,
|
|
456
462
|
includeImages,
|
|
457
463
|
includeVenue,
|
|
464
|
+
includeOffers,
|
|
458
465
|
includeOrders,
|
|
459
466
|
hasAvailability,
|
|
460
467
|
excludeArchived,
|
|
@@ -554,6 +561,10 @@ export class PublicSessionsService {
|
|
|
554
561
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
555
562
|
*/
|
|
556
563
|
includeVenue?: boolean;
|
|
564
|
+
/**
|
|
565
|
+
* Gets or sets a value indicating whether to include offer detail in the results.
|
|
566
|
+
*/
|
|
567
|
+
includeOffers?: boolean;
|
|
557
568
|
/**
|
|
558
569
|
* Gets or sets a value indicating whether to include order detail in the results.
|
|
559
570
|
*/
|
|
@@ -653,6 +664,7 @@ export class PublicSessionsService {
|
|
|
653
664
|
BookableOnly: bookableOnly,
|
|
654
665
|
IncludeImages: includeImages,
|
|
655
666
|
IncludeVenue: includeVenue,
|
|
667
|
+
IncludeOffers: includeOffers,
|
|
656
668
|
IncludeOrders: includeOrders,
|
|
657
669
|
HasAvailability: hasAvailability,
|
|
658
670
|
ExcludeArchived: excludeArchived,
|
|
@@ -803,6 +815,7 @@ export class PublicSessionsService {
|
|
|
803
815
|
archived,
|
|
804
816
|
deleted,
|
|
805
817
|
openActiveUpdate,
|
|
818
|
+
dashboardRequest,
|
|
806
819
|
networkId,
|
|
807
820
|
distance,
|
|
808
821
|
minAgeLte,
|
|
@@ -891,6 +904,10 @@ export class PublicSessionsService {
|
|
|
891
904
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
892
905
|
*/
|
|
893
906
|
openActiveUpdate?: boolean;
|
|
907
|
+
/**
|
|
908
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
909
|
+
*/
|
|
910
|
+
dashboardRequest?: boolean;
|
|
894
911
|
/**
|
|
895
912
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
896
913
|
*/
|
|
@@ -1021,6 +1038,7 @@ export class PublicSessionsService {
|
|
|
1021
1038
|
Archived: archived,
|
|
1022
1039
|
Deleted: deleted,
|
|
1023
1040
|
OpenActiveUpdate: openActiveUpdate,
|
|
1041
|
+
DashboardRequest: dashboardRequest,
|
|
1024
1042
|
NetworkId: networkId,
|
|
1025
1043
|
Distance: distance,
|
|
1026
1044
|
MinAgeLTE: minAgeLte,
|
|
@@ -101,6 +101,8 @@ export class PublicVenuesService {
|
|
|
101
101
|
includeOpportunityOffers,
|
|
102
102
|
includeNextOpportunity,
|
|
103
103
|
distance,
|
|
104
|
+
dashboardRequest,
|
|
105
|
+
programmeIds,
|
|
104
106
|
pageNumber,
|
|
105
107
|
take,
|
|
106
108
|
skip,
|
|
@@ -186,6 +188,14 @@ export class PublicVenuesService {
|
|
|
186
188
|
* Gets or sets Distance.
|
|
187
189
|
*/
|
|
188
190
|
distance?: number;
|
|
191
|
+
/**
|
|
192
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
193
|
+
*/
|
|
194
|
+
dashboardRequest?: boolean;
|
|
195
|
+
/**
|
|
196
|
+
* Gets or sets the programme ids.
|
|
197
|
+
*/
|
|
198
|
+
programmeIds?: Array<string>;
|
|
189
199
|
/**
|
|
190
200
|
* Gets or sets the page number for paged queries.
|
|
191
201
|
*/
|
|
@@ -256,6 +266,8 @@ export class PublicVenuesService {
|
|
|
256
266
|
IncludeOpportunityOffers: includeOpportunityOffers,
|
|
257
267
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
258
268
|
Distance: distance,
|
|
269
|
+
DashboardRequest: dashboardRequest,
|
|
270
|
+
ProgrammeIds: programmeIds,
|
|
259
271
|
PageNumber: pageNumber,
|
|
260
272
|
Take: take,
|
|
261
273
|
Skip: skip,
|
|
@@ -334,6 +346,8 @@ export class PublicVenuesService {
|
|
|
334
346
|
includeOpportunityOffers,
|
|
335
347
|
includeNextOpportunity,
|
|
336
348
|
distance,
|
|
349
|
+
dashboardRequest,
|
|
350
|
+
programmeIds,
|
|
337
351
|
pageNumber,
|
|
338
352
|
take,
|
|
339
353
|
skip,
|
|
@@ -418,6 +432,14 @@ export class PublicVenuesService {
|
|
|
418
432
|
* Gets or sets Distance.
|
|
419
433
|
*/
|
|
420
434
|
distance?: number;
|
|
435
|
+
/**
|
|
436
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
437
|
+
*/
|
|
438
|
+
dashboardRequest?: boolean;
|
|
439
|
+
/**
|
|
440
|
+
* Gets or sets the programme ids.
|
|
441
|
+
*/
|
|
442
|
+
programmeIds?: Array<string>;
|
|
421
443
|
/**
|
|
422
444
|
* Gets or sets the page number for paged queries.
|
|
423
445
|
*/
|
|
@@ -485,6 +507,8 @@ export class PublicVenuesService {
|
|
|
485
507
|
IncludeOpportunityOffers: includeOpportunityOffers,
|
|
486
508
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
487
509
|
Distance: distance,
|
|
510
|
+
DashboardRequest: dashboardRequest,
|
|
511
|
+
ProgrammeIds: programmeIds,
|
|
488
512
|
PageNumber: pageNumber,
|
|
489
513
|
Take: take,
|
|
490
514
|
Skip: skip,
|
|
@@ -632,6 +656,8 @@ export class PublicVenuesService {
|
|
|
632
656
|
includeOpportunityOffers,
|
|
633
657
|
includeNextOpportunity,
|
|
634
658
|
distance,
|
|
659
|
+
dashboardRequest,
|
|
660
|
+
programmeIds,
|
|
635
661
|
pageNumber,
|
|
636
662
|
take,
|
|
637
663
|
skip,
|
|
@@ -720,6 +746,14 @@ export class PublicVenuesService {
|
|
|
720
746
|
* Gets or sets Distance.
|
|
721
747
|
*/
|
|
722
748
|
distance?: number;
|
|
749
|
+
/**
|
|
750
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
751
|
+
*/
|
|
752
|
+
dashboardRequest?: boolean;
|
|
753
|
+
/**
|
|
754
|
+
* Gets or sets the programme ids.
|
|
755
|
+
*/
|
|
756
|
+
programmeIds?: Array<string>;
|
|
723
757
|
/**
|
|
724
758
|
* Gets or sets the page number for paged queries.
|
|
725
759
|
*/
|
|
@@ -790,6 +824,8 @@ export class PublicVenuesService {
|
|
|
790
824
|
IncludeOpportunityOffers: includeOpportunityOffers,
|
|
791
825
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
792
826
|
Distance: distance,
|
|
827
|
+
DashboardRequest: dashboardRequest,
|
|
828
|
+
ProgrammeIds: programmeIds,
|
|
793
829
|
PageNumber: pageNumber,
|
|
794
830
|
Take: take,
|
|
795
831
|
Skip: skip,
|