reach-api-sdk 1.0.192 → 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 +237 -41
- package/dist/reach-sdk.js +158 -4
- package/package.json +1 -1
- package/src/definition/swagger.yaml +445 -6
- package/src/models/Course.ts +4 -0
- package/src/models/GenericActivity.ts +4 -0
- package/src/models/Session.ts +4 -0
- package/src/services/CoursesService.ts +80 -2
- package/src/services/GenericActivityService.ts +30 -0
- package/src/services/OrderItemsService.ts +24 -0
- package/src/services/PublicCoursesService.ts +12 -0
- package/src/services/PublicGenericActivityService.ts +24 -0
- package/src/services/PublicNetworksService.ts +6 -0
- package/src/services/PublicOrderItemsService.ts +12 -0
- package/src/services/PublicSessionsService.ts +12 -0
- package/src/services/PublicVenuesService.ts +18 -0
- package/src/services/SessionsService.ts +82 -4
- package/src/services/VenuesService.ts +24 -0
package/src/models/Course.ts
CHANGED
|
@@ -168,6 +168,10 @@ export type Course = {
|
|
|
168
168
|
* Gets or sets the admin contact email.
|
|
169
169
|
*/
|
|
170
170
|
adminContactEmail?: string | null;
|
|
171
|
+
/**
|
|
172
|
+
* Gets or sets a valu indicating whether to send the reminder email.
|
|
173
|
+
*/
|
|
174
|
+
sendReminder?: boolean | null;
|
|
171
175
|
/**
|
|
172
176
|
* Gets or sets the reminder hours before start.
|
|
173
177
|
*/
|
|
@@ -106,6 +106,10 @@ export type GenericActivity = {
|
|
|
106
106
|
* Gets or sets a value indicating whether there is an age restriction.
|
|
107
107
|
*/
|
|
108
108
|
noAgeRestriction?: boolean;
|
|
109
|
+
/**
|
|
110
|
+
* Gets or sets a value indicating whether the activity should be featured on the storefront.
|
|
111
|
+
*/
|
|
112
|
+
featured?: boolean;
|
|
109
113
|
/**
|
|
110
114
|
* Gets or sets the start date.
|
|
111
115
|
*/
|
package/src/models/Session.ts
CHANGED
|
@@ -161,6 +161,10 @@ export type Session = {
|
|
|
161
161
|
* Gets or sets the admin contact email.
|
|
162
162
|
*/
|
|
163
163
|
adminContactEmail?: string | null;
|
|
164
|
+
/**
|
|
165
|
+
* Gets or sets a valu indicating whether to send the reminder email.
|
|
166
|
+
*/
|
|
167
|
+
sendReminder?: boolean | null;
|
|
164
168
|
/**
|
|
165
169
|
* Gets or sets the reminder hours before start.
|
|
166
170
|
*/
|
|
@@ -282,7 +282,7 @@ export class CoursesService {
|
|
|
282
282
|
}
|
|
283
283
|
|
|
284
284
|
/**
|
|
285
|
-
*
|
|
285
|
+
* Assign deal to course />.
|
|
286
286
|
* @returns Course OK
|
|
287
287
|
* @throws ApiError
|
|
288
288
|
*/
|
|
@@ -315,7 +315,7 @@ export class CoursesService {
|
|
|
315
315
|
}
|
|
316
316
|
|
|
317
317
|
/**
|
|
318
|
-
*
|
|
318
|
+
* Unassign deal from course />.
|
|
319
319
|
* @returns Course OK
|
|
320
320
|
* @throws ApiError
|
|
321
321
|
*/
|
|
@@ -347,6 +347,60 @@ export class CoursesService {
|
|
|
347
347
|
});
|
|
348
348
|
}
|
|
349
349
|
|
|
350
|
+
/**
|
|
351
|
+
* Set the course as featured (displays more prominently on the storefront).
|
|
352
|
+
* @returns Course OK
|
|
353
|
+
* @throws ApiError
|
|
354
|
+
*/
|
|
355
|
+
public setFeatured({
|
|
356
|
+
id,
|
|
357
|
+
}: {
|
|
358
|
+
/**
|
|
359
|
+
* The course Id.
|
|
360
|
+
*/
|
|
361
|
+
id: string;
|
|
362
|
+
}): CancelablePromise<Course> {
|
|
363
|
+
return this.httpRequest.request({
|
|
364
|
+
method: 'PATCH',
|
|
365
|
+
url: '/api/courses/{id}/set-featured',
|
|
366
|
+
path: {
|
|
367
|
+
id: id,
|
|
368
|
+
},
|
|
369
|
+
errors: {
|
|
370
|
+
400: `Bad Request`,
|
|
371
|
+
422: `Unprocessable Content`,
|
|
372
|
+
500: `Internal Server Error`,
|
|
373
|
+
},
|
|
374
|
+
});
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
/**
|
|
378
|
+
* Remove the course as featured (displays as standard on the storefront).
|
|
379
|
+
* @returns Course OK
|
|
380
|
+
* @throws ApiError
|
|
381
|
+
*/
|
|
382
|
+
public removeFeatured({
|
|
383
|
+
id,
|
|
384
|
+
}: {
|
|
385
|
+
/**
|
|
386
|
+
* The course Id.
|
|
387
|
+
*/
|
|
388
|
+
id: string;
|
|
389
|
+
}): CancelablePromise<Course> {
|
|
390
|
+
return this.httpRequest.request({
|
|
391
|
+
method: 'PATCH',
|
|
392
|
+
url: '/api/courses/{id}/remove-featured',
|
|
393
|
+
path: {
|
|
394
|
+
id: id,
|
|
395
|
+
},
|
|
396
|
+
errors: {
|
|
397
|
+
400: `Bad Request`,
|
|
398
|
+
422: `Unprocessable Content`,
|
|
399
|
+
500: `Internal Server Error`,
|
|
400
|
+
},
|
|
401
|
+
});
|
|
402
|
+
}
|
|
403
|
+
|
|
350
404
|
/**
|
|
351
405
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
352
406
|
* @returns Course OK
|
|
@@ -494,6 +548,7 @@ export class CoursesService {
|
|
|
494
548
|
archived,
|
|
495
549
|
deleted,
|
|
496
550
|
openActiveUpdate,
|
|
551
|
+
dashboardRequest,
|
|
497
552
|
bookingStatus,
|
|
498
553
|
startDateTimeLte,
|
|
499
554
|
startDateTimeGte,
|
|
@@ -569,6 +624,10 @@ export class CoursesService {
|
|
|
569
624
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
570
625
|
*/
|
|
571
626
|
openActiveUpdate?: boolean;
|
|
627
|
+
/**
|
|
628
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
629
|
+
*/
|
|
630
|
+
dashboardRequest?: boolean;
|
|
572
631
|
/**
|
|
573
632
|
* Gets or sets the queryable booking status.
|
|
574
633
|
*/
|
|
@@ -705,6 +764,7 @@ export class CoursesService {
|
|
|
705
764
|
Archived: archived,
|
|
706
765
|
Deleted: deleted,
|
|
707
766
|
OpenActiveUpdate: openActiveUpdate,
|
|
767
|
+
DashboardRequest: dashboardRequest,
|
|
708
768
|
BookingStatus: bookingStatus,
|
|
709
769
|
StartDateTimeLTE: startDateTimeLte,
|
|
710
770
|
StartDateTimeGTE: startDateTimeGte,
|
|
@@ -842,6 +902,7 @@ export class CoursesService {
|
|
|
842
902
|
archived,
|
|
843
903
|
deleted,
|
|
844
904
|
openActiveUpdate,
|
|
905
|
+
dashboardRequest,
|
|
845
906
|
bookingStatus,
|
|
846
907
|
startDateTimeLte,
|
|
847
908
|
startDateTimeGte,
|
|
@@ -917,6 +978,10 @@ export class CoursesService {
|
|
|
917
978
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
918
979
|
*/
|
|
919
980
|
openActiveUpdate?: boolean;
|
|
981
|
+
/**
|
|
982
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
983
|
+
*/
|
|
984
|
+
dashboardRequest?: boolean;
|
|
920
985
|
/**
|
|
921
986
|
* Gets or sets the queryable booking status.
|
|
922
987
|
*/
|
|
@@ -1053,6 +1118,7 @@ export class CoursesService {
|
|
|
1053
1118
|
Archived: archived,
|
|
1054
1119
|
Deleted: deleted,
|
|
1055
1120
|
OpenActiveUpdate: openActiveUpdate,
|
|
1121
|
+
DashboardRequest: dashboardRequest,
|
|
1056
1122
|
BookingStatus: bookingStatus,
|
|
1057
1123
|
StartDateTimeLTE: startDateTimeLte,
|
|
1058
1124
|
StartDateTimeGTE: startDateTimeGte,
|
|
@@ -1109,6 +1175,7 @@ export class CoursesService {
|
|
|
1109
1175
|
archived,
|
|
1110
1176
|
deleted,
|
|
1111
1177
|
openActiveUpdate,
|
|
1178
|
+
dashboardRequest,
|
|
1112
1179
|
bookingStatus,
|
|
1113
1180
|
startDateTimeLte,
|
|
1114
1181
|
startDateTimeGte,
|
|
@@ -1184,6 +1251,10 @@ export class CoursesService {
|
|
|
1184
1251
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
1185
1252
|
*/
|
|
1186
1253
|
openActiveUpdate?: boolean;
|
|
1254
|
+
/**
|
|
1255
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
1256
|
+
*/
|
|
1257
|
+
dashboardRequest?: boolean;
|
|
1187
1258
|
/**
|
|
1188
1259
|
* Gets or sets the queryable booking status.
|
|
1189
1260
|
*/
|
|
@@ -1320,6 +1391,7 @@ export class CoursesService {
|
|
|
1320
1391
|
Archived: archived,
|
|
1321
1392
|
Deleted: deleted,
|
|
1322
1393
|
OpenActiveUpdate: openActiveUpdate,
|
|
1394
|
+
DashboardRequest: dashboardRequest,
|
|
1323
1395
|
BookingStatus: bookingStatus,
|
|
1324
1396
|
StartDateTimeLTE: startDateTimeLte,
|
|
1325
1397
|
StartDateTimeGTE: startDateTimeGte,
|
|
@@ -1376,6 +1448,7 @@ export class CoursesService {
|
|
|
1376
1448
|
archived,
|
|
1377
1449
|
deleted,
|
|
1378
1450
|
openActiveUpdate,
|
|
1451
|
+
dashboardRequest,
|
|
1379
1452
|
bookingStatus,
|
|
1380
1453
|
startDateTimeLte,
|
|
1381
1454
|
startDateTimeGte,
|
|
@@ -1451,6 +1524,10 @@ export class CoursesService {
|
|
|
1451
1524
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
1452
1525
|
*/
|
|
1453
1526
|
openActiveUpdate?: boolean;
|
|
1527
|
+
/**
|
|
1528
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
1529
|
+
*/
|
|
1530
|
+
dashboardRequest?: boolean;
|
|
1454
1531
|
/**
|
|
1455
1532
|
* Gets or sets the queryable booking status.
|
|
1456
1533
|
*/
|
|
@@ -1587,6 +1664,7 @@ export class CoursesService {
|
|
|
1587
1664
|
Archived: archived,
|
|
1588
1665
|
Deleted: deleted,
|
|
1589
1666
|
OpenActiveUpdate: openActiveUpdate,
|
|
1667
|
+
DashboardRequest: dashboardRequest,
|
|
1590
1668
|
BookingStatus: bookingStatus,
|
|
1591
1669
|
StartDateTimeLTE: startDateTimeLte,
|
|
1592
1670
|
StartDateTimeGTE: startDateTimeGte,
|
|
@@ -146,6 +146,7 @@ export class GenericActivityService {
|
|
|
146
146
|
deleted,
|
|
147
147
|
activityType,
|
|
148
148
|
includeNextOpportunity,
|
|
149
|
+
featured,
|
|
149
150
|
searchGeoCenter,
|
|
150
151
|
openactiveActivityId,
|
|
151
152
|
activityId,
|
|
@@ -215,6 +216,10 @@ export class GenericActivityService {
|
|
|
215
216
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
216
217
|
*/
|
|
217
218
|
includeNextOpportunity?: boolean;
|
|
219
|
+
/**
|
|
220
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
221
|
+
*/
|
|
222
|
+
featured?: boolean;
|
|
218
223
|
/**
|
|
219
224
|
* Gets or sets SearchGeoCenter.
|
|
220
225
|
*/
|
|
@@ -357,6 +362,7 @@ export class GenericActivityService {
|
|
|
357
362
|
Deleted: deleted,
|
|
358
363
|
ActivityType: activityType,
|
|
359
364
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
365
|
+
Featured: featured,
|
|
360
366
|
SearchGeoCenter: searchGeoCenter,
|
|
361
367
|
OpenactiveActivityId: openactiveActivityId,
|
|
362
368
|
ActivityId: activityId,
|
|
@@ -440,6 +446,7 @@ export class GenericActivityService {
|
|
|
440
446
|
deleted,
|
|
441
447
|
activityType,
|
|
442
448
|
includeNextOpportunity,
|
|
449
|
+
featured,
|
|
443
450
|
searchGeoCenter,
|
|
444
451
|
openactiveActivityId,
|
|
445
452
|
activityId,
|
|
@@ -509,6 +516,10 @@ export class GenericActivityService {
|
|
|
509
516
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
510
517
|
*/
|
|
511
518
|
includeNextOpportunity?: boolean;
|
|
519
|
+
/**
|
|
520
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
521
|
+
*/
|
|
522
|
+
featured?: boolean;
|
|
512
523
|
/**
|
|
513
524
|
* Gets or sets SearchGeoCenter.
|
|
514
525
|
*/
|
|
@@ -651,6 +662,7 @@ export class GenericActivityService {
|
|
|
651
662
|
Deleted: deleted,
|
|
652
663
|
ActivityType: activityType,
|
|
653
664
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
665
|
+
Featured: featured,
|
|
654
666
|
SearchGeoCenter: searchGeoCenter,
|
|
655
667
|
OpenactiveActivityId: openactiveActivityId,
|
|
656
668
|
ActivityId: activityId,
|
|
@@ -707,6 +719,7 @@ export class GenericActivityService {
|
|
|
707
719
|
deleted,
|
|
708
720
|
activityType,
|
|
709
721
|
includeNextOpportunity,
|
|
722
|
+
featured,
|
|
710
723
|
searchGeoCenter,
|
|
711
724
|
openactiveActivityId,
|
|
712
725
|
activityId,
|
|
@@ -776,6 +789,10 @@ export class GenericActivityService {
|
|
|
776
789
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
777
790
|
*/
|
|
778
791
|
includeNextOpportunity?: boolean;
|
|
792
|
+
/**
|
|
793
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
794
|
+
*/
|
|
795
|
+
featured?: boolean;
|
|
779
796
|
/**
|
|
780
797
|
* Gets or sets SearchGeoCenter.
|
|
781
798
|
*/
|
|
@@ -918,6 +935,7 @@ export class GenericActivityService {
|
|
|
918
935
|
Deleted: deleted,
|
|
919
936
|
ActivityType: activityType,
|
|
920
937
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
938
|
+
Featured: featured,
|
|
921
939
|
SearchGeoCenter: searchGeoCenter,
|
|
922
940
|
OpenactiveActivityId: openactiveActivityId,
|
|
923
941
|
ActivityId: activityId,
|
|
@@ -974,6 +992,7 @@ export class GenericActivityService {
|
|
|
974
992
|
deleted,
|
|
975
993
|
activityType,
|
|
976
994
|
includeNextOpportunity,
|
|
995
|
+
featured,
|
|
977
996
|
searchGeoCenter,
|
|
978
997
|
openactiveActivityId,
|
|
979
998
|
activityId,
|
|
@@ -1043,6 +1062,10 @@ export class GenericActivityService {
|
|
|
1043
1062
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
1044
1063
|
*/
|
|
1045
1064
|
includeNextOpportunity?: boolean;
|
|
1065
|
+
/**
|
|
1066
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
1067
|
+
*/
|
|
1068
|
+
featured?: boolean;
|
|
1046
1069
|
/**
|
|
1047
1070
|
* Gets or sets SearchGeoCenter.
|
|
1048
1071
|
*/
|
|
@@ -1185,6 +1208,7 @@ export class GenericActivityService {
|
|
|
1185
1208
|
Deleted: deleted,
|
|
1186
1209
|
ActivityType: activityType,
|
|
1187
1210
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
1211
|
+
Featured: featured,
|
|
1188
1212
|
SearchGeoCenter: searchGeoCenter,
|
|
1189
1213
|
OpenactiveActivityId: openactiveActivityId,
|
|
1190
1214
|
ActivityId: activityId,
|
|
@@ -1241,6 +1265,7 @@ export class GenericActivityService {
|
|
|
1241
1265
|
deleted,
|
|
1242
1266
|
activityType,
|
|
1243
1267
|
includeNextOpportunity,
|
|
1268
|
+
featured,
|
|
1244
1269
|
searchGeoCenter,
|
|
1245
1270
|
openactiveActivityId,
|
|
1246
1271
|
activityId,
|
|
@@ -1310,6 +1335,10 @@ export class GenericActivityService {
|
|
|
1310
1335
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
1311
1336
|
*/
|
|
1312
1337
|
includeNextOpportunity?: boolean;
|
|
1338
|
+
/**
|
|
1339
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
1340
|
+
*/
|
|
1341
|
+
featured?: boolean;
|
|
1313
1342
|
/**
|
|
1314
1343
|
* Gets or sets SearchGeoCenter.
|
|
1315
1344
|
*/
|
|
@@ -1452,6 +1481,7 @@ export class GenericActivityService {
|
|
|
1452
1481
|
Deleted: deleted,
|
|
1453
1482
|
ActivityType: activityType,
|
|
1454
1483
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
1484
|
+
Featured: featured,
|
|
1455
1485
|
SearchGeoCenter: searchGeoCenter,
|
|
1456
1486
|
OpenactiveActivityId: openactiveActivityId,
|
|
1457
1487
|
ActivityId: activityId,
|
|
@@ -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,
|
|
@@ -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,
|
|
@@ -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,
|