reach-api-sdk 1.0.191 → 1.0.193

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/dist/reach-sdk.d.ts +515 -73
  2. package/dist/reach-sdk.js +298 -5
  3. package/package.json +1 -1
  4. package/src/apiClient.ts +3 -0
  5. package/src/definition/swagger.yaml +806 -6
  6. package/src/index.ts +2 -0
  7. package/src/models/Course.ts +8 -0
  8. package/src/models/GenericActivity.ts +4 -0
  9. package/src/models/Session.ts +8 -0
  10. package/src/models/TenantWebsiteSetting.ts +3 -0
  11. package/src/models/UpcomingLayout.ts +12 -0
  12. package/src/services/BookingService.ts +36 -0
  13. package/src/services/CoursesService.ts +104 -2
  14. package/src/services/GenericActivityService.ts +30 -0
  15. package/src/services/LeasingService.ts +24 -0
  16. package/src/services/OrderItemsService.ts +48 -0
  17. package/src/services/OrdersService.ts +24 -0
  18. package/src/services/PublicBookingService.ts +12 -0
  19. package/src/services/PublicCalendarService.ts +57 -0
  20. package/src/services/PublicCoursesService.ts +24 -0
  21. package/src/services/PublicGenericActivityService.ts +24 -0
  22. package/src/services/PublicLeasingService.ts +12 -0
  23. package/src/services/PublicNetworksService.ts +12 -0
  24. package/src/services/PublicOrderItemsService.ts +24 -0
  25. package/src/services/PublicOrdersService.ts +12 -0
  26. package/src/services/PublicScheduledSessionsService.ts +12 -0
  27. package/src/services/PublicSessionsService.ts +30 -0
  28. package/src/services/PublicVenuesService.ts +18 -0
  29. package/src/services/ScheduledSessionsSchedulesService.ts +24 -0
  30. package/src/services/ScheduledSessionsService.ts +24 -0
  31. package/src/services/SessionsService.ts +106 -4
  32. package/src/services/VenuesService.ts +24 -0
package/src/index.ts CHANGED
@@ -386,6 +386,7 @@ export type { TotalRevenueReportPage } from './models/TotalRevenueReportPage';
386
386
  export type { TotalRevenueReportPatch } from './models/TotalRevenueReportPatch';
387
387
  export type { TotalRevenueReportPost } from './models/TotalRevenueReportPost';
388
388
  export type { UnsplashSearchResponse } from './models/UnsplashSearchResponse';
389
+ export { UpcomingLayout } from './models/UpcomingLayout';
389
390
  export type { UpdateEmailSettings } from './models/UpdateEmailSettings';
390
391
  export type { UpdateOffer } from './models/UpdateOffer';
391
392
  export type { User } from './models/User';
@@ -500,6 +501,7 @@ export { ProgrammesService } from './services/ProgrammesService';
500
501
  export { ProvidersService } from './services/ProvidersService';
501
502
  export { ProviderTypesService } from './services/ProviderTypesService';
502
503
  export { PublicBookingService } from './services/PublicBookingService';
504
+ export { PublicCalendarService } from './services/PublicCalendarService';
503
505
  export { PublicCoursesService } from './services/PublicCoursesService';
504
506
  export { PublicCustomersService } from './services/PublicCustomersService';
505
507
  export { PublicFacilitiesService } from './services/PublicFacilitiesService';
@@ -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
  */
@@ -177,6 +181,10 @@ export type Course = {
177
181
  * Gets or sets the booking link override if checkout will occur externally.
178
182
  */
179
183
  bookingLinkOverride?: string | null;
184
+ /**
185
+ * Gets or sets a value indicating whether the activity should be featured on the storefront.
186
+ */
187
+ featured?: boolean;
180
188
  /**
181
189
  * Gets the computed image url.
182
190
  */
@@ -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
  */
@@ -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
  */
@@ -170,6 +174,10 @@ export type Session = {
170
174
  * Gets or sets the booking link override if checkout will occur externally.
171
175
  */
172
176
  bookingLinkOverride?: string | null;
177
+ /**
178
+ * Gets or sets a value indicating whether the activity should be featured on the storefront.
179
+ */
180
+ featured?: boolean;
173
181
  /**
174
182
  * Gets the computed image url.
175
183
  */
@@ -3,6 +3,8 @@
3
3
  /* tslint:disable */
4
4
  /* eslint-disable */
5
5
 
6
+ import type { UpcomingLayout } from './UpcomingLayout';
7
+
6
8
  /**
7
9
  * Represents an organisation within the Reach application.
8
10
  */
@@ -95,4 +97,5 @@ export type TenantWebsiteSetting = {
95
97
  * Gets or sets the tenants website marketing optin text.
96
98
  */
97
99
  tenantMarketingOptinText?: string | null;
100
+ upcomingLayout?: UpcomingLayout;
98
101
  };
@@ -0,0 +1,12 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+
6
+ /**
7
+ * UpcomingLayout.
8
+ */
9
+ export enum UpcomingLayout {
10
+ GRID = 'Grid',
11
+ CALENDAR = 'Calendar',
12
+ }
@@ -107,6 +107,7 @@ export class BookingService {
107
107
  orderStages,
108
108
  orderDateGte,
109
109
  orderDateLte,
110
+ endUserIdentityId,
110
111
  pageNumber,
111
112
  take,
112
113
  skip,
@@ -192,6 +193,10 @@ export class BookingService {
192
193
  * Gets or sets the queryable order date created is less than or equal to.
193
194
  */
194
195
  orderDateLte?: string;
196
+ /**
197
+ * Gets or sets the end user identity Id for use in a query search.
198
+ */
199
+ endUserIdentityId?: string;
195
200
  /**
196
201
  * Gets or sets the page number for paged queries.
197
202
  */
@@ -265,6 +270,7 @@ export class BookingService {
265
270
  OrderStages: orderStages,
266
271
  OrderDateGTE: orderDateGte,
267
272
  OrderDateLTE: orderDateLte,
273
+ EndUserIdentityId: endUserIdentityId,
268
274
  PageNumber: pageNumber,
269
275
  Take: take,
270
276
  Skip: skip,
@@ -312,6 +318,7 @@ export class BookingService {
312
318
  orderStages,
313
319
  orderDateGte,
314
320
  orderDateLte,
321
+ endUserIdentityId,
315
322
  pageNumber,
316
323
  take,
317
324
  skip,
@@ -397,6 +404,10 @@ export class BookingService {
397
404
  * Gets or sets the queryable order date created is less than or equal to.
398
405
  */
399
406
  orderDateLte?: string;
407
+ /**
408
+ * Gets or sets the end user identity Id for use in a query search.
409
+ */
410
+ endUserIdentityId?: string;
400
411
  /**
401
412
  * Gets or sets the page number for paged queries.
402
413
  */
@@ -470,6 +481,7 @@ export class BookingService {
470
481
  OrderStages: orderStages,
471
482
  OrderDateGTE: orderDateGte,
472
483
  OrderDateLTE: orderDateLte,
484
+ EndUserIdentityId: endUserIdentityId,
473
485
  PageNumber: pageNumber,
474
486
  Take: take,
475
487
  Skip: skip,
@@ -646,6 +658,7 @@ export class BookingService {
646
658
  orderStages,
647
659
  orderDateGte,
648
660
  orderDateLte,
661
+ endUserIdentityId,
649
662
  pageNumber,
650
663
  take,
651
664
  skip,
@@ -730,6 +743,10 @@ export class BookingService {
730
743
  * Gets or sets the queryable order date created is less than or equal to.
731
744
  */
732
745
  orderDateLte?: string;
746
+ /**
747
+ * Gets or sets the end user identity Id for use in a query search.
748
+ */
749
+ endUserIdentityId?: string;
733
750
  /**
734
751
  * Gets or sets the page number for paged queries.
735
752
  */
@@ -797,6 +814,7 @@ export class BookingService {
797
814
  OrderStages: orderStages,
798
815
  OrderDateGTE: orderDateGte,
799
816
  OrderDateLTE: orderDateLte,
817
+ EndUserIdentityId: endUserIdentityId,
800
818
  PageNumber: pageNumber,
801
819
  Take: take,
802
820
  Skip: skip,
@@ -922,6 +940,7 @@ export class BookingService {
922
940
  orderStages,
923
941
  orderDateGte,
924
942
  orderDateLte,
943
+ endUserIdentityId,
925
944
  pageNumber,
926
945
  take,
927
946
  skip,
@@ -1006,6 +1025,10 @@ export class BookingService {
1006
1025
  * Gets or sets the queryable order date created is less than or equal to.
1007
1026
  */
1008
1027
  orderDateLte?: string;
1028
+ /**
1029
+ * Gets or sets the end user identity Id for use in a query search.
1030
+ */
1031
+ endUserIdentityId?: string;
1009
1032
  /**
1010
1033
  * Gets or sets the page number for paged queries.
1011
1034
  */
@@ -1073,6 +1096,7 @@ export class BookingService {
1073
1096
  OrderStages: orderStages,
1074
1097
  OrderDateGTE: orderDateGte,
1075
1098
  OrderDateLTE: orderDateLte,
1099
+ EndUserIdentityId: endUserIdentityId,
1076
1100
  PageNumber: pageNumber,
1077
1101
  Take: take,
1078
1102
  Skip: skip,
@@ -1117,6 +1141,7 @@ export class BookingService {
1117
1141
  orderStages,
1118
1142
  orderDateGte,
1119
1143
  orderDateLte,
1144
+ endUserIdentityId,
1120
1145
  pageNumber,
1121
1146
  take,
1122
1147
  skip,
@@ -1201,6 +1226,10 @@ export class BookingService {
1201
1226
  * Gets or sets the queryable order date created is less than or equal to.
1202
1227
  */
1203
1228
  orderDateLte?: string;
1229
+ /**
1230
+ * Gets or sets the end user identity Id for use in a query search.
1231
+ */
1232
+ endUserIdentityId?: string;
1204
1233
  /**
1205
1234
  * Gets or sets the page number for paged queries.
1206
1235
  */
@@ -1268,6 +1297,7 @@ export class BookingService {
1268
1297
  OrderStages: orderStages,
1269
1298
  OrderDateGTE: orderDateGte,
1270
1299
  OrderDateLTE: orderDateLte,
1300
+ EndUserIdentityId: endUserIdentityId,
1271
1301
  PageNumber: pageNumber,
1272
1302
  Take: take,
1273
1303
  Skip: skip,
@@ -1312,6 +1342,7 @@ export class BookingService {
1312
1342
  orderStages,
1313
1343
  orderDateGte,
1314
1344
  orderDateLte,
1345
+ endUserIdentityId,
1315
1346
  pageNumber,
1316
1347
  take,
1317
1348
  skip,
@@ -1396,6 +1427,10 @@ export class BookingService {
1396
1427
  * Gets or sets the queryable order date created is less than or equal to.
1397
1428
  */
1398
1429
  orderDateLte?: string;
1430
+ /**
1431
+ * Gets or sets the end user identity Id for use in a query search.
1432
+ */
1433
+ endUserIdentityId?: string;
1399
1434
  /**
1400
1435
  * Gets or sets the page number for paged queries.
1401
1436
  */
@@ -1463,6 +1498,7 @@ export class BookingService {
1463
1498
  OrderStages: orderStages,
1464
1499
  OrderDateGTE: orderDateGte,
1465
1500
  OrderDateLTE: orderDateLte,
1501
+ EndUserIdentityId: endUserIdentityId,
1466
1502
  PageNumber: pageNumber,
1467
1503
  Take: take,
1468
1504
  Skip: skip,
@@ -282,7 +282,7 @@ export class CoursesService {
282
282
  }
283
283
 
284
284
  /**
285
- * Asign deal to course />.
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
- * Unasign deal from course />.
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,
@@ -503,6 +558,7 @@ export class CoursesService {
503
558
  remainingUsesGte,
504
559
  futureOnly,
505
560
  online,
561
+ featured,
506
562
  hasAvailability,
507
563
  orderFirstNameContains,
508
564
  orderLastNameContains,
@@ -568,6 +624,10 @@ export class CoursesService {
568
624
  * Gets or sets a value indicating this an openactive reaquest.
569
625
  */
570
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;
571
631
  /**
572
632
  * Gets or sets the queryable booking status.
573
633
  */
@@ -604,6 +664,10 @@ export class CoursesService {
604
664
  * Gets or sets a value indicating whether return online courses.
605
665
  */
606
666
  online?: boolean;
667
+ /**
668
+ * Gets or sets a value indicating whether the course is featured on the storefront.
669
+ */
670
+ featured?: boolean;
607
671
  /**
608
672
  * Gets or sets a value indicating whether the scheduled session has availability.
609
673
  */
@@ -700,6 +764,7 @@ export class CoursesService {
700
764
  Archived: archived,
701
765
  Deleted: deleted,
702
766
  OpenActiveUpdate: openActiveUpdate,
767
+ DashboardRequest: dashboardRequest,
703
768
  BookingStatus: bookingStatus,
704
769
  StartDateTimeLTE: startDateTimeLte,
705
770
  StartDateTimeGTE: startDateTimeGte,
@@ -709,6 +774,7 @@ export class CoursesService {
709
774
  RemainingUsesGTE: remainingUsesGte,
710
775
  FutureOnly: futureOnly,
711
776
  Online: online,
777
+ Featured: featured,
712
778
  HasAvailability: hasAvailability,
713
779
  OrderFirstNameContains: orderFirstNameContains,
714
780
  OrderLastNameContains: orderLastNameContains,
@@ -836,6 +902,7 @@ export class CoursesService {
836
902
  archived,
837
903
  deleted,
838
904
  openActiveUpdate,
905
+ dashboardRequest,
839
906
  bookingStatus,
840
907
  startDateTimeLte,
841
908
  startDateTimeGte,
@@ -845,6 +912,7 @@ export class CoursesService {
845
912
  remainingUsesGte,
846
913
  futureOnly,
847
914
  online,
915
+ featured,
848
916
  hasAvailability,
849
917
  orderFirstNameContains,
850
918
  orderLastNameContains,
@@ -910,6 +978,10 @@ export class CoursesService {
910
978
  * Gets or sets a value indicating this an openactive reaquest.
911
979
  */
912
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;
913
985
  /**
914
986
  * Gets or sets the queryable booking status.
915
987
  */
@@ -946,6 +1018,10 @@ export class CoursesService {
946
1018
  * Gets or sets a value indicating whether return online courses.
947
1019
  */
948
1020
  online?: boolean;
1021
+ /**
1022
+ * Gets or sets a value indicating whether the course is featured on the storefront.
1023
+ */
1024
+ featured?: boolean;
949
1025
  /**
950
1026
  * Gets or sets a value indicating whether the scheduled session has availability.
951
1027
  */
@@ -1042,6 +1118,7 @@ export class CoursesService {
1042
1118
  Archived: archived,
1043
1119
  Deleted: deleted,
1044
1120
  OpenActiveUpdate: openActiveUpdate,
1121
+ DashboardRequest: dashboardRequest,
1045
1122
  BookingStatus: bookingStatus,
1046
1123
  StartDateTimeLTE: startDateTimeLte,
1047
1124
  StartDateTimeGTE: startDateTimeGte,
@@ -1051,6 +1128,7 @@ export class CoursesService {
1051
1128
  RemainingUsesGTE: remainingUsesGte,
1052
1129
  FutureOnly: futureOnly,
1053
1130
  Online: online,
1131
+ Featured: featured,
1054
1132
  HasAvailability: hasAvailability,
1055
1133
  OrderFirstNameContains: orderFirstNameContains,
1056
1134
  OrderLastNameContains: orderLastNameContains,
@@ -1097,6 +1175,7 @@ export class CoursesService {
1097
1175
  archived,
1098
1176
  deleted,
1099
1177
  openActiveUpdate,
1178
+ dashboardRequest,
1100
1179
  bookingStatus,
1101
1180
  startDateTimeLte,
1102
1181
  startDateTimeGte,
@@ -1106,6 +1185,7 @@ export class CoursesService {
1106
1185
  remainingUsesGte,
1107
1186
  futureOnly,
1108
1187
  online,
1188
+ featured,
1109
1189
  hasAvailability,
1110
1190
  orderFirstNameContains,
1111
1191
  orderLastNameContains,
@@ -1171,6 +1251,10 @@ export class CoursesService {
1171
1251
  * Gets or sets a value indicating this an openactive reaquest.
1172
1252
  */
1173
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;
1174
1258
  /**
1175
1259
  * Gets or sets the queryable booking status.
1176
1260
  */
@@ -1207,6 +1291,10 @@ export class CoursesService {
1207
1291
  * Gets or sets a value indicating whether return online courses.
1208
1292
  */
1209
1293
  online?: boolean;
1294
+ /**
1295
+ * Gets or sets a value indicating whether the course is featured on the storefront.
1296
+ */
1297
+ featured?: boolean;
1210
1298
  /**
1211
1299
  * Gets or sets a value indicating whether the scheduled session has availability.
1212
1300
  */
@@ -1303,6 +1391,7 @@ export class CoursesService {
1303
1391
  Archived: archived,
1304
1392
  Deleted: deleted,
1305
1393
  OpenActiveUpdate: openActiveUpdate,
1394
+ DashboardRequest: dashboardRequest,
1306
1395
  BookingStatus: bookingStatus,
1307
1396
  StartDateTimeLTE: startDateTimeLte,
1308
1397
  StartDateTimeGTE: startDateTimeGte,
@@ -1312,6 +1401,7 @@ export class CoursesService {
1312
1401
  RemainingUsesGTE: remainingUsesGte,
1313
1402
  FutureOnly: futureOnly,
1314
1403
  Online: online,
1404
+ Featured: featured,
1315
1405
  HasAvailability: hasAvailability,
1316
1406
  OrderFirstNameContains: orderFirstNameContains,
1317
1407
  OrderLastNameContains: orderLastNameContains,
@@ -1358,6 +1448,7 @@ export class CoursesService {
1358
1448
  archived,
1359
1449
  deleted,
1360
1450
  openActiveUpdate,
1451
+ dashboardRequest,
1361
1452
  bookingStatus,
1362
1453
  startDateTimeLte,
1363
1454
  startDateTimeGte,
@@ -1367,6 +1458,7 @@ export class CoursesService {
1367
1458
  remainingUsesGte,
1368
1459
  futureOnly,
1369
1460
  online,
1461
+ featured,
1370
1462
  hasAvailability,
1371
1463
  orderFirstNameContains,
1372
1464
  orderLastNameContains,
@@ -1432,6 +1524,10 @@ export class CoursesService {
1432
1524
  * Gets or sets a value indicating this an openactive reaquest.
1433
1525
  */
1434
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;
1435
1531
  /**
1436
1532
  * Gets or sets the queryable booking status.
1437
1533
  */
@@ -1468,6 +1564,10 @@ export class CoursesService {
1468
1564
  * Gets or sets a value indicating whether return online courses.
1469
1565
  */
1470
1566
  online?: boolean;
1567
+ /**
1568
+ * Gets or sets a value indicating whether the course is featured on the storefront.
1569
+ */
1570
+ featured?: boolean;
1471
1571
  /**
1472
1572
  * Gets or sets a value indicating whether the scheduled session has availability.
1473
1573
  */
@@ -1564,6 +1664,7 @@ export class CoursesService {
1564
1664
  Archived: archived,
1565
1665
  Deleted: deleted,
1566
1666
  OpenActiveUpdate: openActiveUpdate,
1667
+ DashboardRequest: dashboardRequest,
1567
1668
  BookingStatus: bookingStatus,
1568
1669
  StartDateTimeLTE: startDateTimeLte,
1569
1670
  StartDateTimeGTE: startDateTimeGte,
@@ -1573,6 +1674,7 @@ export class CoursesService {
1573
1674
  RemainingUsesGTE: remainingUsesGte,
1574
1675
  FutureOnly: futureOnly,
1575
1676
  Online: online,
1677
+ Featured: featured,
1576
1678
  HasAvailability: hasAvailability,
1577
1679
  OrderFirstNameContains: orderFirstNameContains,
1578
1680
  OrderLastNameContains: orderLastNameContains,
@@ -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,