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
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
|
*/
|
|
@@ -288,6 +292,10 @@ export type Course = {
|
|
|
288
292
|
* Gets the slots remaining uses when also considering Order leases. This is computed at runtime since order leases expire silently, that is, there is no process that recalculates remaining uses when an Order lease expiry is reached.
|
|
289
293
|
*/
|
|
290
294
|
readonly actualRemainingUses?: number | null;
|
|
295
|
+
/**
|
|
296
|
+
* Gets the courses total number of sessions.
|
|
297
|
+
*/
|
|
298
|
+
readonly totalSessions?: number;
|
|
291
299
|
/**
|
|
292
300
|
* Gets the courses period label.
|
|
293
301
|
*/
|
package/src/models/CreateDeal.ts
CHANGED
|
@@ -71,4 +71,12 @@ export type CreateDeal = {
|
|
|
71
71
|
* Gets the venues shortened formatted address.
|
|
72
72
|
*/
|
|
73
73
|
readonly typeLabel?: string | null;
|
|
74
|
+
/**
|
|
75
|
+
* Gets a value indicating whether the deal is a promotional deal (manually entered by the user).
|
|
76
|
+
*/
|
|
77
|
+
readonly isPromotional?: boolean;
|
|
78
|
+
/**
|
|
79
|
+
* Gets the user-friendly label for the deal type.
|
|
80
|
+
*/
|
|
81
|
+
readonly typeDisplayName?: string | null;
|
|
74
82
|
};
|
package/src/models/Deal.ts
CHANGED
|
@@ -71,4 +71,12 @@ export type Deal = {
|
|
|
71
71
|
* Gets the venues shortened formatted address.
|
|
72
72
|
*/
|
|
73
73
|
readonly typeLabel?: string | null;
|
|
74
|
+
/**
|
|
75
|
+
* Gets a value indicating whether the deal is a promotional deal (manually entered by the user).
|
|
76
|
+
*/
|
|
77
|
+
readonly isPromotional?: boolean;
|
|
78
|
+
/**
|
|
79
|
+
* Gets the user-friendly label for the deal type.
|
|
80
|
+
*/
|
|
81
|
+
readonly typeDisplayName?: string | null;
|
|
74
82
|
};
|
|
@@ -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
|
*/
|
|
@@ -244,6 +244,7 @@ export class CourseSessionsService {
|
|
|
244
244
|
endDateTimeGte,
|
|
245
245
|
futureOnly,
|
|
246
246
|
includeVenue,
|
|
247
|
+
includeOffers,
|
|
247
248
|
excludeArchived,
|
|
248
249
|
pageNumber,
|
|
249
250
|
take,
|
|
@@ -313,6 +314,10 @@ export class CourseSessionsService {
|
|
|
313
314
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
314
315
|
*/
|
|
315
316
|
includeVenue?: boolean;
|
|
317
|
+
/**
|
|
318
|
+
* Gets or sets a value indicating whether to include offer detail in the results.
|
|
319
|
+
*/
|
|
320
|
+
includeOffers?: boolean;
|
|
316
321
|
/**
|
|
317
322
|
* Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
|
|
318
323
|
*/
|
|
@@ -380,6 +385,7 @@ export class CourseSessionsService {
|
|
|
380
385
|
EndDateTimeGTE: endDateTimeGte,
|
|
381
386
|
FutureOnly: futureOnly,
|
|
382
387
|
IncludeVenue: includeVenue,
|
|
388
|
+
IncludeOffers: includeOffers,
|
|
383
389
|
ExcludeArchived: excludeArchived,
|
|
384
390
|
PageNumber: pageNumber,
|
|
385
391
|
Take: take,
|
|
@@ -502,6 +508,7 @@ export class CourseSessionsService {
|
|
|
502
508
|
endDateTimeGte,
|
|
503
509
|
futureOnly,
|
|
504
510
|
includeVenue,
|
|
511
|
+
includeOffers,
|
|
505
512
|
excludeArchived,
|
|
506
513
|
pageNumber,
|
|
507
514
|
take,
|
|
@@ -571,6 +578,10 @@ export class CourseSessionsService {
|
|
|
571
578
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
572
579
|
*/
|
|
573
580
|
includeVenue?: boolean;
|
|
581
|
+
/**
|
|
582
|
+
* Gets or sets a value indicating whether to include offer detail in the results.
|
|
583
|
+
*/
|
|
584
|
+
includeOffers?: boolean;
|
|
574
585
|
/**
|
|
575
586
|
* Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
|
|
576
587
|
*/
|
|
@@ -638,6 +649,7 @@ export class CourseSessionsService {
|
|
|
638
649
|
EndDateTimeGTE: endDateTimeGte,
|
|
639
650
|
FutureOnly: futureOnly,
|
|
640
651
|
IncludeVenue: includeVenue,
|
|
652
|
+
IncludeOffers: includeOffers,
|
|
641
653
|
ExcludeArchived: excludeArchived,
|
|
642
654
|
PageNumber: pageNumber,
|
|
643
655
|
Take: take,
|
|
@@ -679,6 +691,7 @@ export class CourseSessionsService {
|
|
|
679
691
|
endDateTimeGte,
|
|
680
692
|
futureOnly,
|
|
681
693
|
includeVenue,
|
|
694
|
+
includeOffers,
|
|
682
695
|
excludeArchived,
|
|
683
696
|
pageNumber,
|
|
684
697
|
take,
|
|
@@ -748,6 +761,10 @@ export class CourseSessionsService {
|
|
|
748
761
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
749
762
|
*/
|
|
750
763
|
includeVenue?: boolean;
|
|
764
|
+
/**
|
|
765
|
+
* Gets or sets a value indicating whether to include offer detail in the results.
|
|
766
|
+
*/
|
|
767
|
+
includeOffers?: boolean;
|
|
751
768
|
/**
|
|
752
769
|
* Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
|
|
753
770
|
*/
|
|
@@ -815,6 +832,7 @@ export class CourseSessionsService {
|
|
|
815
832
|
EndDateTimeGTE: endDateTimeGte,
|
|
816
833
|
FutureOnly: futureOnly,
|
|
817
834
|
IncludeVenue: includeVenue,
|
|
835
|
+
IncludeOffers: includeOffers,
|
|
818
836
|
ExcludeArchived: excludeArchived,
|
|
819
837
|
PageNumber: pageNumber,
|
|
820
838
|
Take: take,
|
|
@@ -856,6 +874,7 @@ export class CourseSessionsService {
|
|
|
856
874
|
endDateTimeGte,
|
|
857
875
|
futureOnly,
|
|
858
876
|
includeVenue,
|
|
877
|
+
includeOffers,
|
|
859
878
|
excludeArchived,
|
|
860
879
|
pageNumber,
|
|
861
880
|
take,
|
|
@@ -925,6 +944,10 @@ export class CourseSessionsService {
|
|
|
925
944
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
926
945
|
*/
|
|
927
946
|
includeVenue?: boolean;
|
|
947
|
+
/**
|
|
948
|
+
* Gets or sets a value indicating whether to include offer detail in the results.
|
|
949
|
+
*/
|
|
950
|
+
includeOffers?: boolean;
|
|
928
951
|
/**
|
|
929
952
|
* Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
|
|
930
953
|
*/
|
|
@@ -992,6 +1015,7 @@ export class CourseSessionsService {
|
|
|
992
1015
|
EndDateTimeGTE: endDateTimeGte,
|
|
993
1016
|
FutureOnly: futureOnly,
|
|
994
1017
|
IncludeVenue: includeVenue,
|
|
1018
|
+
IncludeOffers: includeOffers,
|
|
995
1019
|
ExcludeArchived: excludeArchived,
|
|
996
1020
|
PageNumber: pageNumber,
|
|
997
1021
|
Take: take,
|
|
@@ -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,
|
|
@@ -167,6 +168,7 @@ export class GenericActivityService {
|
|
|
167
168
|
periodsOfWeek,
|
|
168
169
|
additionalSupport,
|
|
169
170
|
amenity,
|
|
171
|
+
programmeIds,
|
|
170
172
|
pageNumber,
|
|
171
173
|
take,
|
|
172
174
|
skip,
|
|
@@ -215,6 +217,10 @@ export class GenericActivityService {
|
|
|
215
217
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
216
218
|
*/
|
|
217
219
|
includeNextOpportunity?: boolean;
|
|
220
|
+
/**
|
|
221
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
222
|
+
*/
|
|
223
|
+
featured?: boolean;
|
|
218
224
|
/**
|
|
219
225
|
* Gets or sets SearchGeoCenter.
|
|
220
226
|
*/
|
|
@@ -299,6 +305,10 @@ export class GenericActivityService {
|
|
|
299
305
|
* Gets or sets AmenityId.
|
|
300
306
|
*/
|
|
301
307
|
amenity?: Array<number>;
|
|
308
|
+
/**
|
|
309
|
+
* Gets or sets the Programme ids.
|
|
310
|
+
*/
|
|
311
|
+
programmeIds?: Array<string>;
|
|
302
312
|
/**
|
|
303
313
|
* Gets or sets the page number for paged queries.
|
|
304
314
|
*/
|
|
@@ -357,6 +367,7 @@ export class GenericActivityService {
|
|
|
357
367
|
Deleted: deleted,
|
|
358
368
|
ActivityType: activityType,
|
|
359
369
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
370
|
+
Featured: featured,
|
|
360
371
|
SearchGeoCenter: searchGeoCenter,
|
|
361
372
|
OpenactiveActivityId: openactiveActivityId,
|
|
362
373
|
ActivityId: activityId,
|
|
@@ -378,6 +389,7 @@ export class GenericActivityService {
|
|
|
378
389
|
PeriodsOfWeek: periodsOfWeek,
|
|
379
390
|
AdditionalSupport: additionalSupport,
|
|
380
391
|
Amenity: amenity,
|
|
392
|
+
ProgrammeIds: programmeIds,
|
|
381
393
|
PageNumber: pageNumber,
|
|
382
394
|
Take: take,
|
|
383
395
|
Skip: skip,
|
|
@@ -440,6 +452,7 @@ export class GenericActivityService {
|
|
|
440
452
|
deleted,
|
|
441
453
|
activityType,
|
|
442
454
|
includeNextOpportunity,
|
|
455
|
+
featured,
|
|
443
456
|
searchGeoCenter,
|
|
444
457
|
openactiveActivityId,
|
|
445
458
|
activityId,
|
|
@@ -461,6 +474,7 @@ export class GenericActivityService {
|
|
|
461
474
|
periodsOfWeek,
|
|
462
475
|
additionalSupport,
|
|
463
476
|
amenity,
|
|
477
|
+
programmeIds,
|
|
464
478
|
pageNumber,
|
|
465
479
|
take,
|
|
466
480
|
skip,
|
|
@@ -509,6 +523,10 @@ export class GenericActivityService {
|
|
|
509
523
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
510
524
|
*/
|
|
511
525
|
includeNextOpportunity?: boolean;
|
|
526
|
+
/**
|
|
527
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
528
|
+
*/
|
|
529
|
+
featured?: boolean;
|
|
512
530
|
/**
|
|
513
531
|
* Gets or sets SearchGeoCenter.
|
|
514
532
|
*/
|
|
@@ -593,6 +611,10 @@ export class GenericActivityService {
|
|
|
593
611
|
* Gets or sets AmenityId.
|
|
594
612
|
*/
|
|
595
613
|
amenity?: Array<number>;
|
|
614
|
+
/**
|
|
615
|
+
* Gets or sets the Programme ids.
|
|
616
|
+
*/
|
|
617
|
+
programmeIds?: Array<string>;
|
|
596
618
|
/**
|
|
597
619
|
* Gets or sets the page number for paged queries.
|
|
598
620
|
*/
|
|
@@ -651,6 +673,7 @@ export class GenericActivityService {
|
|
|
651
673
|
Deleted: deleted,
|
|
652
674
|
ActivityType: activityType,
|
|
653
675
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
676
|
+
Featured: featured,
|
|
654
677
|
SearchGeoCenter: searchGeoCenter,
|
|
655
678
|
OpenactiveActivityId: openactiveActivityId,
|
|
656
679
|
ActivityId: activityId,
|
|
@@ -672,6 +695,7 @@ export class GenericActivityService {
|
|
|
672
695
|
PeriodsOfWeek: periodsOfWeek,
|
|
673
696
|
AdditionalSupport: additionalSupport,
|
|
674
697
|
Amenity: amenity,
|
|
698
|
+
ProgrammeIds: programmeIds,
|
|
675
699
|
PageNumber: pageNumber,
|
|
676
700
|
Take: take,
|
|
677
701
|
Skip: skip,
|
|
@@ -707,6 +731,7 @@ export class GenericActivityService {
|
|
|
707
731
|
deleted,
|
|
708
732
|
activityType,
|
|
709
733
|
includeNextOpportunity,
|
|
734
|
+
featured,
|
|
710
735
|
searchGeoCenter,
|
|
711
736
|
openactiveActivityId,
|
|
712
737
|
activityId,
|
|
@@ -728,6 +753,7 @@ export class GenericActivityService {
|
|
|
728
753
|
periodsOfWeek,
|
|
729
754
|
additionalSupport,
|
|
730
755
|
amenity,
|
|
756
|
+
programmeIds,
|
|
731
757
|
pageNumber,
|
|
732
758
|
take,
|
|
733
759
|
skip,
|
|
@@ -776,6 +802,10 @@ export class GenericActivityService {
|
|
|
776
802
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
777
803
|
*/
|
|
778
804
|
includeNextOpportunity?: boolean;
|
|
805
|
+
/**
|
|
806
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
807
|
+
*/
|
|
808
|
+
featured?: boolean;
|
|
779
809
|
/**
|
|
780
810
|
* Gets or sets SearchGeoCenter.
|
|
781
811
|
*/
|
|
@@ -860,6 +890,10 @@ export class GenericActivityService {
|
|
|
860
890
|
* Gets or sets AmenityId.
|
|
861
891
|
*/
|
|
862
892
|
amenity?: Array<number>;
|
|
893
|
+
/**
|
|
894
|
+
* Gets or sets the Programme ids.
|
|
895
|
+
*/
|
|
896
|
+
programmeIds?: Array<string>;
|
|
863
897
|
/**
|
|
864
898
|
* Gets or sets the page number for paged queries.
|
|
865
899
|
*/
|
|
@@ -918,6 +952,7 @@ export class GenericActivityService {
|
|
|
918
952
|
Deleted: deleted,
|
|
919
953
|
ActivityType: activityType,
|
|
920
954
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
955
|
+
Featured: featured,
|
|
921
956
|
SearchGeoCenter: searchGeoCenter,
|
|
922
957
|
OpenactiveActivityId: openactiveActivityId,
|
|
923
958
|
ActivityId: activityId,
|
|
@@ -939,6 +974,7 @@ export class GenericActivityService {
|
|
|
939
974
|
PeriodsOfWeek: periodsOfWeek,
|
|
940
975
|
AdditionalSupport: additionalSupport,
|
|
941
976
|
Amenity: amenity,
|
|
977
|
+
ProgrammeIds: programmeIds,
|
|
942
978
|
PageNumber: pageNumber,
|
|
943
979
|
Take: take,
|
|
944
980
|
Skip: skip,
|
|
@@ -974,6 +1010,7 @@ export class GenericActivityService {
|
|
|
974
1010
|
deleted,
|
|
975
1011
|
activityType,
|
|
976
1012
|
includeNextOpportunity,
|
|
1013
|
+
featured,
|
|
977
1014
|
searchGeoCenter,
|
|
978
1015
|
openactiveActivityId,
|
|
979
1016
|
activityId,
|
|
@@ -995,6 +1032,7 @@ export class GenericActivityService {
|
|
|
995
1032
|
periodsOfWeek,
|
|
996
1033
|
additionalSupport,
|
|
997
1034
|
amenity,
|
|
1035
|
+
programmeIds,
|
|
998
1036
|
pageNumber,
|
|
999
1037
|
take,
|
|
1000
1038
|
skip,
|
|
@@ -1043,6 +1081,10 @@ export class GenericActivityService {
|
|
|
1043
1081
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
1044
1082
|
*/
|
|
1045
1083
|
includeNextOpportunity?: boolean;
|
|
1084
|
+
/**
|
|
1085
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
1086
|
+
*/
|
|
1087
|
+
featured?: boolean;
|
|
1046
1088
|
/**
|
|
1047
1089
|
* Gets or sets SearchGeoCenter.
|
|
1048
1090
|
*/
|
|
@@ -1127,6 +1169,10 @@ export class GenericActivityService {
|
|
|
1127
1169
|
* Gets or sets AmenityId.
|
|
1128
1170
|
*/
|
|
1129
1171
|
amenity?: Array<number>;
|
|
1172
|
+
/**
|
|
1173
|
+
* Gets or sets the Programme ids.
|
|
1174
|
+
*/
|
|
1175
|
+
programmeIds?: Array<string>;
|
|
1130
1176
|
/**
|
|
1131
1177
|
* Gets or sets the page number for paged queries.
|
|
1132
1178
|
*/
|
|
@@ -1185,6 +1231,7 @@ export class GenericActivityService {
|
|
|
1185
1231
|
Deleted: deleted,
|
|
1186
1232
|
ActivityType: activityType,
|
|
1187
1233
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
1234
|
+
Featured: featured,
|
|
1188
1235
|
SearchGeoCenter: searchGeoCenter,
|
|
1189
1236
|
OpenactiveActivityId: openactiveActivityId,
|
|
1190
1237
|
ActivityId: activityId,
|
|
@@ -1206,6 +1253,7 @@ export class GenericActivityService {
|
|
|
1206
1253
|
PeriodsOfWeek: periodsOfWeek,
|
|
1207
1254
|
AdditionalSupport: additionalSupport,
|
|
1208
1255
|
Amenity: amenity,
|
|
1256
|
+
ProgrammeIds: programmeIds,
|
|
1209
1257
|
PageNumber: pageNumber,
|
|
1210
1258
|
Take: take,
|
|
1211
1259
|
Skip: skip,
|
|
@@ -1241,6 +1289,7 @@ export class GenericActivityService {
|
|
|
1241
1289
|
deleted,
|
|
1242
1290
|
activityType,
|
|
1243
1291
|
includeNextOpportunity,
|
|
1292
|
+
featured,
|
|
1244
1293
|
searchGeoCenter,
|
|
1245
1294
|
openactiveActivityId,
|
|
1246
1295
|
activityId,
|
|
@@ -1262,6 +1311,7 @@ export class GenericActivityService {
|
|
|
1262
1311
|
periodsOfWeek,
|
|
1263
1312
|
additionalSupport,
|
|
1264
1313
|
amenity,
|
|
1314
|
+
programmeIds,
|
|
1265
1315
|
pageNumber,
|
|
1266
1316
|
take,
|
|
1267
1317
|
skip,
|
|
@@ -1310,6 +1360,10 @@ export class GenericActivityService {
|
|
|
1310
1360
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
1311
1361
|
*/
|
|
1312
1362
|
includeNextOpportunity?: boolean;
|
|
1363
|
+
/**
|
|
1364
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
1365
|
+
*/
|
|
1366
|
+
featured?: boolean;
|
|
1313
1367
|
/**
|
|
1314
1368
|
* Gets or sets SearchGeoCenter.
|
|
1315
1369
|
*/
|
|
@@ -1394,6 +1448,10 @@ export class GenericActivityService {
|
|
|
1394
1448
|
* Gets or sets AmenityId.
|
|
1395
1449
|
*/
|
|
1396
1450
|
amenity?: Array<number>;
|
|
1451
|
+
/**
|
|
1452
|
+
* Gets or sets the Programme ids.
|
|
1453
|
+
*/
|
|
1454
|
+
programmeIds?: Array<string>;
|
|
1397
1455
|
/**
|
|
1398
1456
|
* Gets or sets the page number for paged queries.
|
|
1399
1457
|
*/
|
|
@@ -1452,6 +1510,7 @@ export class GenericActivityService {
|
|
|
1452
1510
|
Deleted: deleted,
|
|
1453
1511
|
ActivityType: activityType,
|
|
1454
1512
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
1513
|
+
Featured: featured,
|
|
1455
1514
|
SearchGeoCenter: searchGeoCenter,
|
|
1456
1515
|
OpenactiveActivityId: openactiveActivityId,
|
|
1457
1516
|
ActivityId: activityId,
|
|
@@ -1473,6 +1532,7 @@ export class GenericActivityService {
|
|
|
1473
1532
|
PeriodsOfWeek: periodsOfWeek,
|
|
1474
1533
|
AdditionalSupport: additionalSupport,
|
|
1475
1534
|
Amenity: amenity,
|
|
1535
|
+
ProgrammeIds: programmeIds,
|
|
1476
1536
|
PageNumber: pageNumber,
|
|
1477
1537
|
Take: take,
|
|
1478
1538
|
Skip: skip,
|