reach-api-sdk 1.0.196 → 1.0.198
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 +245 -100
- package/dist/reach-sdk.js +123 -73
- package/package.json +1 -1
- package/src/definition/swagger.yaml +270 -72
- package/src/index.ts +1 -0
- package/src/models/Course.ts +4 -0
- package/src/models/CoursePatch.ts +4 -0
- package/src/models/CreateTemplateDetail.ts +4 -0
- package/src/models/CreateTemplateFieldPermission.ts +1 -0
- package/src/models/GenericActivity.ts +4 -0
- package/src/models/Programme.ts +2 -0
- package/src/models/ProgrammePatch.ts +3 -0
- package/src/models/Session.ts +4 -0
- package/src/models/SessionPatch.ts +4 -0
- package/src/models/TemplateDetail.ts +4 -0
- package/src/models/TemplateDetailPatch.ts +4 -0
- package/src/models/TemplateFieldPermission.ts +1 -0
- package/src/models/TemplateFieldPermissionPatch.ts +1 -0
- package/src/models/Venue.ts +2 -0
- package/src/models/VenuePatch.ts +2 -0
- package/src/models/WaitlistConversionStatsResponseDto.ts +10 -0
- package/src/services/CoursesService.ts +30 -0
- package/src/services/GenericActivityService.ts +84 -48
- package/src/services/PublicCoursesService.ts +12 -0
- package/src/services/PublicGenericActivityService.ts +56 -32
- package/src/services/PublicNetworksService.ts +14 -8
- package/src/services/PublicSessionsService.ts +28 -16
- package/src/services/SessionsService.ts +70 -40
- package/src/services/WaitlistOpportunityReportService.ts +3 -2
|
@@ -148,6 +148,7 @@ export class GenericActivityService {
|
|
|
148
148
|
activityType,
|
|
149
149
|
includeNextOpportunity,
|
|
150
150
|
featured,
|
|
151
|
+
_private,
|
|
151
152
|
searchGeoCenter,
|
|
152
153
|
openactiveActivityId,
|
|
153
154
|
activityId,
|
|
@@ -164,8 +165,8 @@ export class GenericActivityService {
|
|
|
164
165
|
priceTotalGte,
|
|
165
166
|
priceTotalLte,
|
|
166
167
|
timeOfDay,
|
|
167
|
-
|
|
168
|
-
|
|
168
|
+
startDateTimeGte,
|
|
169
|
+
endDateTimeLte,
|
|
169
170
|
gender,
|
|
170
171
|
periodsOfWeek,
|
|
171
172
|
additionalSupport,
|
|
@@ -223,6 +224,10 @@ export class GenericActivityService {
|
|
|
223
224
|
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
224
225
|
*/
|
|
225
226
|
featured?: boolean;
|
|
227
|
+
/**
|
|
228
|
+
* Gets or sets a value indicating does session is private or no.
|
|
229
|
+
*/
|
|
230
|
+
_private?: boolean;
|
|
226
231
|
/**
|
|
227
232
|
* Gets or sets SearchGeoCenter.
|
|
228
233
|
*/
|
|
@@ -288,13 +293,13 @@ export class GenericActivityService {
|
|
|
288
293
|
*/
|
|
289
294
|
timeOfDay?: string;
|
|
290
295
|
/**
|
|
291
|
-
* Gets or sets
|
|
296
|
+
* Gets or sets StartDateTimeGTE.
|
|
292
297
|
*/
|
|
293
|
-
|
|
298
|
+
startDateTimeGte?: string;
|
|
294
299
|
/**
|
|
295
|
-
* Gets or sets
|
|
300
|
+
* Gets or sets EndDateTimeLTE.
|
|
296
301
|
*/
|
|
297
|
-
|
|
302
|
+
endDateTimeLte?: string;
|
|
298
303
|
/**
|
|
299
304
|
* Gets or sets Gender.
|
|
300
305
|
*/
|
|
@@ -374,6 +379,7 @@ export class GenericActivityService {
|
|
|
374
379
|
ActivityType: activityType,
|
|
375
380
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
376
381
|
Featured: featured,
|
|
382
|
+
Private: _private,
|
|
377
383
|
SearchGeoCenter: searchGeoCenter,
|
|
378
384
|
OpenactiveActivityId: openactiveActivityId,
|
|
379
385
|
ActivityId: activityId,
|
|
@@ -390,8 +396,8 @@ export class GenericActivityService {
|
|
|
390
396
|
PriceTotalGTE: priceTotalGte,
|
|
391
397
|
PriceTotalLTE: priceTotalLte,
|
|
392
398
|
TimeOfDay: timeOfDay,
|
|
393
|
-
|
|
394
|
-
|
|
399
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
400
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
395
401
|
Gender: gender,
|
|
396
402
|
PeriodsOfWeek: periodsOfWeek,
|
|
397
403
|
AdditionalSupport: additionalSupport,
|
|
@@ -460,6 +466,7 @@ export class GenericActivityService {
|
|
|
460
466
|
activityType,
|
|
461
467
|
includeNextOpportunity,
|
|
462
468
|
featured,
|
|
469
|
+
_private,
|
|
463
470
|
searchGeoCenter,
|
|
464
471
|
openactiveActivityId,
|
|
465
472
|
activityId,
|
|
@@ -476,8 +483,8 @@ export class GenericActivityService {
|
|
|
476
483
|
priceTotalGte,
|
|
477
484
|
priceTotalLte,
|
|
478
485
|
timeOfDay,
|
|
479
|
-
|
|
480
|
-
|
|
486
|
+
startDateTimeGte,
|
|
487
|
+
endDateTimeLte,
|
|
481
488
|
gender,
|
|
482
489
|
periodsOfWeek,
|
|
483
490
|
additionalSupport,
|
|
@@ -535,6 +542,10 @@ export class GenericActivityService {
|
|
|
535
542
|
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
536
543
|
*/
|
|
537
544
|
featured?: boolean;
|
|
545
|
+
/**
|
|
546
|
+
* Gets or sets a value indicating does session is private or no.
|
|
547
|
+
*/
|
|
548
|
+
_private?: boolean;
|
|
538
549
|
/**
|
|
539
550
|
* Gets or sets SearchGeoCenter.
|
|
540
551
|
*/
|
|
@@ -600,13 +611,13 @@ export class GenericActivityService {
|
|
|
600
611
|
*/
|
|
601
612
|
timeOfDay?: string;
|
|
602
613
|
/**
|
|
603
|
-
* Gets or sets
|
|
614
|
+
* Gets or sets StartDateTimeGTE.
|
|
604
615
|
*/
|
|
605
|
-
|
|
616
|
+
startDateTimeGte?: string;
|
|
606
617
|
/**
|
|
607
|
-
* Gets or sets
|
|
618
|
+
* Gets or sets EndDateTimeLTE.
|
|
608
619
|
*/
|
|
609
|
-
|
|
620
|
+
endDateTimeLte?: string;
|
|
610
621
|
/**
|
|
611
622
|
* Gets or sets Gender.
|
|
612
623
|
*/
|
|
@@ -686,6 +697,7 @@ export class GenericActivityService {
|
|
|
686
697
|
ActivityType: activityType,
|
|
687
698
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
688
699
|
Featured: featured,
|
|
700
|
+
Private: _private,
|
|
689
701
|
SearchGeoCenter: searchGeoCenter,
|
|
690
702
|
OpenactiveActivityId: openactiveActivityId,
|
|
691
703
|
ActivityId: activityId,
|
|
@@ -702,8 +714,8 @@ export class GenericActivityService {
|
|
|
702
714
|
PriceTotalGTE: priceTotalGte,
|
|
703
715
|
PriceTotalLTE: priceTotalLte,
|
|
704
716
|
TimeOfDay: timeOfDay,
|
|
705
|
-
|
|
706
|
-
|
|
717
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
718
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
707
719
|
Gender: gender,
|
|
708
720
|
PeriodsOfWeek: periodsOfWeek,
|
|
709
721
|
AdditionalSupport: additionalSupport,
|
|
@@ -745,6 +757,7 @@ export class GenericActivityService {
|
|
|
745
757
|
activityType,
|
|
746
758
|
includeNextOpportunity,
|
|
747
759
|
featured,
|
|
760
|
+
_private,
|
|
748
761
|
searchGeoCenter,
|
|
749
762
|
openactiveActivityId,
|
|
750
763
|
activityId,
|
|
@@ -761,8 +774,8 @@ export class GenericActivityService {
|
|
|
761
774
|
priceTotalGte,
|
|
762
775
|
priceTotalLte,
|
|
763
776
|
timeOfDay,
|
|
764
|
-
|
|
765
|
-
|
|
777
|
+
startDateTimeGte,
|
|
778
|
+
endDateTimeLte,
|
|
766
779
|
gender,
|
|
767
780
|
periodsOfWeek,
|
|
768
781
|
additionalSupport,
|
|
@@ -820,6 +833,10 @@ export class GenericActivityService {
|
|
|
820
833
|
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
821
834
|
*/
|
|
822
835
|
featured?: boolean;
|
|
836
|
+
/**
|
|
837
|
+
* Gets or sets a value indicating does session is private or no.
|
|
838
|
+
*/
|
|
839
|
+
_private?: boolean;
|
|
823
840
|
/**
|
|
824
841
|
* Gets or sets SearchGeoCenter.
|
|
825
842
|
*/
|
|
@@ -885,13 +902,13 @@ export class GenericActivityService {
|
|
|
885
902
|
*/
|
|
886
903
|
timeOfDay?: string;
|
|
887
904
|
/**
|
|
888
|
-
* Gets or sets
|
|
905
|
+
* Gets or sets StartDateTimeGTE.
|
|
889
906
|
*/
|
|
890
|
-
|
|
907
|
+
startDateTimeGte?: string;
|
|
891
908
|
/**
|
|
892
|
-
* Gets or sets
|
|
909
|
+
* Gets or sets EndDateTimeLTE.
|
|
893
910
|
*/
|
|
894
|
-
|
|
911
|
+
endDateTimeLte?: string;
|
|
895
912
|
/**
|
|
896
913
|
* Gets or sets Gender.
|
|
897
914
|
*/
|
|
@@ -971,6 +988,7 @@ export class GenericActivityService {
|
|
|
971
988
|
ActivityType: activityType,
|
|
972
989
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
973
990
|
Featured: featured,
|
|
991
|
+
Private: _private,
|
|
974
992
|
SearchGeoCenter: searchGeoCenter,
|
|
975
993
|
OpenactiveActivityId: openactiveActivityId,
|
|
976
994
|
ActivityId: activityId,
|
|
@@ -987,8 +1005,8 @@ export class GenericActivityService {
|
|
|
987
1005
|
PriceTotalGTE: priceTotalGte,
|
|
988
1006
|
PriceTotalLTE: priceTotalLte,
|
|
989
1007
|
TimeOfDay: timeOfDay,
|
|
990
|
-
|
|
991
|
-
|
|
1008
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
1009
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
992
1010
|
Gender: gender,
|
|
993
1011
|
PeriodsOfWeek: periodsOfWeek,
|
|
994
1012
|
AdditionalSupport: additionalSupport,
|
|
@@ -1030,6 +1048,7 @@ export class GenericActivityService {
|
|
|
1030
1048
|
activityType,
|
|
1031
1049
|
includeNextOpportunity,
|
|
1032
1050
|
featured,
|
|
1051
|
+
_private,
|
|
1033
1052
|
searchGeoCenter,
|
|
1034
1053
|
openactiveActivityId,
|
|
1035
1054
|
activityId,
|
|
@@ -1046,8 +1065,8 @@ export class GenericActivityService {
|
|
|
1046
1065
|
priceTotalGte,
|
|
1047
1066
|
priceTotalLte,
|
|
1048
1067
|
timeOfDay,
|
|
1049
|
-
|
|
1050
|
-
|
|
1068
|
+
startDateTimeGte,
|
|
1069
|
+
endDateTimeLte,
|
|
1051
1070
|
gender,
|
|
1052
1071
|
periodsOfWeek,
|
|
1053
1072
|
additionalSupport,
|
|
@@ -1105,6 +1124,10 @@ export class GenericActivityService {
|
|
|
1105
1124
|
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
1106
1125
|
*/
|
|
1107
1126
|
featured?: boolean;
|
|
1127
|
+
/**
|
|
1128
|
+
* Gets or sets a value indicating does session is private or no.
|
|
1129
|
+
*/
|
|
1130
|
+
_private?: boolean;
|
|
1108
1131
|
/**
|
|
1109
1132
|
* Gets or sets SearchGeoCenter.
|
|
1110
1133
|
*/
|
|
@@ -1170,13 +1193,13 @@ export class GenericActivityService {
|
|
|
1170
1193
|
*/
|
|
1171
1194
|
timeOfDay?: string;
|
|
1172
1195
|
/**
|
|
1173
|
-
* Gets or sets
|
|
1196
|
+
* Gets or sets StartDateTimeGTE.
|
|
1174
1197
|
*/
|
|
1175
|
-
|
|
1198
|
+
startDateTimeGte?: string;
|
|
1176
1199
|
/**
|
|
1177
|
-
* Gets or sets
|
|
1200
|
+
* Gets or sets EndDateTimeLTE.
|
|
1178
1201
|
*/
|
|
1179
|
-
|
|
1202
|
+
endDateTimeLte?: string;
|
|
1180
1203
|
/**
|
|
1181
1204
|
* Gets or sets Gender.
|
|
1182
1205
|
*/
|
|
@@ -1256,6 +1279,7 @@ export class GenericActivityService {
|
|
|
1256
1279
|
ActivityType: activityType,
|
|
1257
1280
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
1258
1281
|
Featured: featured,
|
|
1282
|
+
Private: _private,
|
|
1259
1283
|
SearchGeoCenter: searchGeoCenter,
|
|
1260
1284
|
OpenactiveActivityId: openactiveActivityId,
|
|
1261
1285
|
ActivityId: activityId,
|
|
@@ -1272,8 +1296,8 @@ export class GenericActivityService {
|
|
|
1272
1296
|
PriceTotalGTE: priceTotalGte,
|
|
1273
1297
|
PriceTotalLTE: priceTotalLte,
|
|
1274
1298
|
TimeOfDay: timeOfDay,
|
|
1275
|
-
|
|
1276
|
-
|
|
1299
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
1300
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
1277
1301
|
Gender: gender,
|
|
1278
1302
|
PeriodsOfWeek: periodsOfWeek,
|
|
1279
1303
|
AdditionalSupport: additionalSupport,
|
|
@@ -1315,6 +1339,7 @@ export class GenericActivityService {
|
|
|
1315
1339
|
activityType,
|
|
1316
1340
|
includeNextOpportunity,
|
|
1317
1341
|
featured,
|
|
1342
|
+
_private,
|
|
1318
1343
|
searchGeoCenter,
|
|
1319
1344
|
openactiveActivityId,
|
|
1320
1345
|
activityId,
|
|
@@ -1331,8 +1356,8 @@ export class GenericActivityService {
|
|
|
1331
1356
|
priceTotalGte,
|
|
1332
1357
|
priceTotalLte,
|
|
1333
1358
|
timeOfDay,
|
|
1334
|
-
|
|
1335
|
-
|
|
1359
|
+
startDateTimeGte,
|
|
1360
|
+
endDateTimeLte,
|
|
1336
1361
|
gender,
|
|
1337
1362
|
periodsOfWeek,
|
|
1338
1363
|
additionalSupport,
|
|
@@ -1390,6 +1415,10 @@ export class GenericActivityService {
|
|
|
1390
1415
|
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
1391
1416
|
*/
|
|
1392
1417
|
featured?: boolean;
|
|
1418
|
+
/**
|
|
1419
|
+
* Gets or sets a value indicating does session is private or no.
|
|
1420
|
+
*/
|
|
1421
|
+
_private?: boolean;
|
|
1393
1422
|
/**
|
|
1394
1423
|
* Gets or sets SearchGeoCenter.
|
|
1395
1424
|
*/
|
|
@@ -1455,13 +1484,13 @@ export class GenericActivityService {
|
|
|
1455
1484
|
*/
|
|
1456
1485
|
timeOfDay?: string;
|
|
1457
1486
|
/**
|
|
1458
|
-
* Gets or sets
|
|
1487
|
+
* Gets or sets StartDateTimeGTE.
|
|
1459
1488
|
*/
|
|
1460
|
-
|
|
1489
|
+
startDateTimeGte?: string;
|
|
1461
1490
|
/**
|
|
1462
|
-
* Gets or sets
|
|
1491
|
+
* Gets or sets EndDateTimeLTE.
|
|
1463
1492
|
*/
|
|
1464
|
-
|
|
1493
|
+
endDateTimeLte?: string;
|
|
1465
1494
|
/**
|
|
1466
1495
|
* Gets or sets Gender.
|
|
1467
1496
|
*/
|
|
@@ -1541,6 +1570,7 @@ export class GenericActivityService {
|
|
|
1541
1570
|
ActivityType: activityType,
|
|
1542
1571
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
1543
1572
|
Featured: featured,
|
|
1573
|
+
Private: _private,
|
|
1544
1574
|
SearchGeoCenter: searchGeoCenter,
|
|
1545
1575
|
OpenactiveActivityId: openactiveActivityId,
|
|
1546
1576
|
ActivityId: activityId,
|
|
@@ -1557,8 +1587,8 @@ export class GenericActivityService {
|
|
|
1557
1587
|
PriceTotalGTE: priceTotalGte,
|
|
1558
1588
|
PriceTotalLTE: priceTotalLte,
|
|
1559
1589
|
TimeOfDay: timeOfDay,
|
|
1560
|
-
|
|
1561
|
-
|
|
1590
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
1591
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
1562
1592
|
Gender: gender,
|
|
1563
1593
|
PeriodsOfWeek: periodsOfWeek,
|
|
1564
1594
|
AdditionalSupport: additionalSupport,
|
|
@@ -1600,6 +1630,7 @@ export class GenericActivityService {
|
|
|
1600
1630
|
activityType,
|
|
1601
1631
|
includeNextOpportunity,
|
|
1602
1632
|
featured,
|
|
1633
|
+
_private,
|
|
1603
1634
|
searchGeoCenter,
|
|
1604
1635
|
openactiveActivityId,
|
|
1605
1636
|
activityId,
|
|
@@ -1616,8 +1647,8 @@ export class GenericActivityService {
|
|
|
1616
1647
|
priceTotalGte,
|
|
1617
1648
|
priceTotalLte,
|
|
1618
1649
|
timeOfDay,
|
|
1619
|
-
|
|
1620
|
-
|
|
1650
|
+
startDateTimeGte,
|
|
1651
|
+
endDateTimeLte,
|
|
1621
1652
|
gender,
|
|
1622
1653
|
periodsOfWeek,
|
|
1623
1654
|
additionalSupport,
|
|
@@ -1675,6 +1706,10 @@ export class GenericActivityService {
|
|
|
1675
1706
|
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
1676
1707
|
*/
|
|
1677
1708
|
featured?: boolean;
|
|
1709
|
+
/**
|
|
1710
|
+
* Gets or sets a value indicating does session is private or no.
|
|
1711
|
+
*/
|
|
1712
|
+
_private?: boolean;
|
|
1678
1713
|
/**
|
|
1679
1714
|
* Gets or sets SearchGeoCenter.
|
|
1680
1715
|
*/
|
|
@@ -1740,13 +1775,13 @@ export class GenericActivityService {
|
|
|
1740
1775
|
*/
|
|
1741
1776
|
timeOfDay?: string;
|
|
1742
1777
|
/**
|
|
1743
|
-
* Gets or sets
|
|
1778
|
+
* Gets or sets StartDateTimeGTE.
|
|
1744
1779
|
*/
|
|
1745
|
-
|
|
1780
|
+
startDateTimeGte?: string;
|
|
1746
1781
|
/**
|
|
1747
|
-
* Gets or sets
|
|
1782
|
+
* Gets or sets EndDateTimeLTE.
|
|
1748
1783
|
*/
|
|
1749
|
-
|
|
1784
|
+
endDateTimeLte?: string;
|
|
1750
1785
|
/**
|
|
1751
1786
|
* Gets or sets Gender.
|
|
1752
1787
|
*/
|
|
@@ -1826,6 +1861,7 @@ export class GenericActivityService {
|
|
|
1826
1861
|
ActivityType: activityType,
|
|
1827
1862
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
1828
1863
|
Featured: featured,
|
|
1864
|
+
Private: _private,
|
|
1829
1865
|
SearchGeoCenter: searchGeoCenter,
|
|
1830
1866
|
OpenactiveActivityId: openactiveActivityId,
|
|
1831
1867
|
ActivityId: activityId,
|
|
@@ -1842,8 +1878,8 @@ export class GenericActivityService {
|
|
|
1842
1878
|
PriceTotalGTE: priceTotalGte,
|
|
1843
1879
|
PriceTotalLTE: priceTotalLte,
|
|
1844
1880
|
TimeOfDay: timeOfDay,
|
|
1845
|
-
|
|
1846
|
-
|
|
1881
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
1882
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
1847
1883
|
Gender: gender,
|
|
1848
1884
|
PeriodsOfWeek: periodsOfWeek,
|
|
1849
1885
|
AdditionalSupport: additionalSupport,
|
|
@@ -107,6 +107,7 @@ export class PublicCoursesService {
|
|
|
107
107
|
futureOnly,
|
|
108
108
|
online,
|
|
109
109
|
featured,
|
|
110
|
+
_private,
|
|
110
111
|
hasAvailability,
|
|
111
112
|
orderFirstNameContains,
|
|
112
113
|
orderLastNameContains,
|
|
@@ -217,6 +218,10 @@ export class PublicCoursesService {
|
|
|
217
218
|
* Gets or sets a value indicating whether the course is featured on the storefront.
|
|
218
219
|
*/
|
|
219
220
|
featured?: boolean;
|
|
221
|
+
/**
|
|
222
|
+
* Gets or sets a value indicating whether the session is private or no.
|
|
223
|
+
*/
|
|
224
|
+
_private?: boolean;
|
|
220
225
|
/**
|
|
221
226
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
222
227
|
*/
|
|
@@ -327,6 +332,7 @@ export class PublicCoursesService {
|
|
|
327
332
|
FutureOnly: futureOnly,
|
|
328
333
|
Online: online,
|
|
329
334
|
Featured: featured,
|
|
335
|
+
Private: _private,
|
|
330
336
|
HasAvailability: hasAvailability,
|
|
331
337
|
OrderFirstNameContains: orderFirstNameContains,
|
|
332
338
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -521,6 +527,7 @@ export class PublicCoursesService {
|
|
|
521
527
|
futureOnly,
|
|
522
528
|
online,
|
|
523
529
|
featured,
|
|
530
|
+
_private,
|
|
524
531
|
hasAvailability,
|
|
525
532
|
orderFirstNameContains,
|
|
526
533
|
orderLastNameContains,
|
|
@@ -634,6 +641,10 @@ export class PublicCoursesService {
|
|
|
634
641
|
* Gets or sets a value indicating whether the course is featured on the storefront.
|
|
635
642
|
*/
|
|
636
643
|
featured?: boolean;
|
|
644
|
+
/**
|
|
645
|
+
* Gets or sets a value indicating whether the session is private or no.
|
|
646
|
+
*/
|
|
647
|
+
_private?: boolean;
|
|
637
648
|
/**
|
|
638
649
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
639
650
|
*/
|
|
@@ -744,6 +755,7 @@ export class PublicCoursesService {
|
|
|
744
755
|
FutureOnly: futureOnly,
|
|
745
756
|
Online: online,
|
|
746
757
|
Featured: featured,
|
|
758
|
+
Private: _private,
|
|
747
759
|
HasAvailability: hasAvailability,
|
|
748
760
|
OrderFirstNameContains: orderFirstNameContains,
|
|
749
761
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -61,6 +61,7 @@ export class PublicGenericActivityService {
|
|
|
61
61
|
activityType,
|
|
62
62
|
includeNextOpportunity,
|
|
63
63
|
featured,
|
|
64
|
+
_private,
|
|
64
65
|
searchGeoCenter,
|
|
65
66
|
openactiveActivityId,
|
|
66
67
|
activityId,
|
|
@@ -77,8 +78,8 @@ export class PublicGenericActivityService {
|
|
|
77
78
|
priceTotalGte,
|
|
78
79
|
priceTotalLte,
|
|
79
80
|
timeOfDay,
|
|
80
|
-
|
|
81
|
-
|
|
81
|
+
startDateTimeGte,
|
|
82
|
+
endDateTimeLte,
|
|
82
83
|
gender,
|
|
83
84
|
periodsOfWeek,
|
|
84
85
|
additionalSupport,
|
|
@@ -137,6 +138,10 @@ export class PublicGenericActivityService {
|
|
|
137
138
|
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
138
139
|
*/
|
|
139
140
|
featured?: boolean;
|
|
141
|
+
/**
|
|
142
|
+
* Gets or sets a value indicating does session is private or no.
|
|
143
|
+
*/
|
|
144
|
+
_private?: boolean;
|
|
140
145
|
/**
|
|
141
146
|
* Gets or sets SearchGeoCenter.
|
|
142
147
|
*/
|
|
@@ -202,13 +207,13 @@ export class PublicGenericActivityService {
|
|
|
202
207
|
*/
|
|
203
208
|
timeOfDay?: string;
|
|
204
209
|
/**
|
|
205
|
-
* Gets or sets
|
|
210
|
+
* Gets or sets StartDateTimeGTE.
|
|
206
211
|
*/
|
|
207
|
-
|
|
212
|
+
startDateTimeGte?: string;
|
|
208
213
|
/**
|
|
209
|
-
* Gets or sets
|
|
214
|
+
* Gets or sets EndDateTimeLTE.
|
|
210
215
|
*/
|
|
211
|
-
|
|
216
|
+
endDateTimeLte?: string;
|
|
212
217
|
/**
|
|
213
218
|
* Gets or sets Gender.
|
|
214
219
|
*/
|
|
@@ -291,6 +296,7 @@ export class PublicGenericActivityService {
|
|
|
291
296
|
ActivityType: activityType,
|
|
292
297
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
293
298
|
Featured: featured,
|
|
299
|
+
Private: _private,
|
|
294
300
|
SearchGeoCenter: searchGeoCenter,
|
|
295
301
|
OpenactiveActivityId: openactiveActivityId,
|
|
296
302
|
ActivityId: activityId,
|
|
@@ -307,8 +313,8 @@ export class PublicGenericActivityService {
|
|
|
307
313
|
PriceTotalGTE: priceTotalGte,
|
|
308
314
|
PriceTotalLTE: priceTotalLte,
|
|
309
315
|
TimeOfDay: timeOfDay,
|
|
310
|
-
|
|
311
|
-
|
|
316
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
317
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
312
318
|
Gender: gender,
|
|
313
319
|
PeriodsOfWeek: periodsOfWeek,
|
|
314
320
|
AdditionalSupport: additionalSupport,
|
|
@@ -350,6 +356,7 @@ export class PublicGenericActivityService {
|
|
|
350
356
|
activityType,
|
|
351
357
|
includeNextOpportunity,
|
|
352
358
|
featured,
|
|
359
|
+
_private,
|
|
353
360
|
searchGeoCenter,
|
|
354
361
|
openactiveActivityId,
|
|
355
362
|
activityId,
|
|
@@ -366,8 +373,8 @@ export class PublicGenericActivityService {
|
|
|
366
373
|
priceTotalGte,
|
|
367
374
|
priceTotalLte,
|
|
368
375
|
timeOfDay,
|
|
369
|
-
|
|
370
|
-
|
|
376
|
+
startDateTimeGte,
|
|
377
|
+
endDateTimeLte,
|
|
371
378
|
gender,
|
|
372
379
|
periodsOfWeek,
|
|
373
380
|
additionalSupport,
|
|
@@ -425,6 +432,10 @@ export class PublicGenericActivityService {
|
|
|
425
432
|
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
426
433
|
*/
|
|
427
434
|
featured?: boolean;
|
|
435
|
+
/**
|
|
436
|
+
* Gets or sets a value indicating does session is private or no.
|
|
437
|
+
*/
|
|
438
|
+
_private?: boolean;
|
|
428
439
|
/**
|
|
429
440
|
* Gets or sets SearchGeoCenter.
|
|
430
441
|
*/
|
|
@@ -490,13 +501,13 @@ export class PublicGenericActivityService {
|
|
|
490
501
|
*/
|
|
491
502
|
timeOfDay?: string;
|
|
492
503
|
/**
|
|
493
|
-
* Gets or sets
|
|
504
|
+
* Gets or sets StartDateTimeGTE.
|
|
494
505
|
*/
|
|
495
|
-
|
|
506
|
+
startDateTimeGte?: string;
|
|
496
507
|
/**
|
|
497
|
-
* Gets or sets
|
|
508
|
+
* Gets or sets EndDateTimeLTE.
|
|
498
509
|
*/
|
|
499
|
-
|
|
510
|
+
endDateTimeLte?: string;
|
|
500
511
|
/**
|
|
501
512
|
* Gets or sets Gender.
|
|
502
513
|
*/
|
|
@@ -576,6 +587,7 @@ export class PublicGenericActivityService {
|
|
|
576
587
|
ActivityType: activityType,
|
|
577
588
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
578
589
|
Featured: featured,
|
|
590
|
+
Private: _private,
|
|
579
591
|
SearchGeoCenter: searchGeoCenter,
|
|
580
592
|
OpenactiveActivityId: openactiveActivityId,
|
|
581
593
|
ActivityId: activityId,
|
|
@@ -592,8 +604,8 @@ export class PublicGenericActivityService {
|
|
|
592
604
|
PriceTotalGTE: priceTotalGte,
|
|
593
605
|
PriceTotalLTE: priceTotalLte,
|
|
594
606
|
TimeOfDay: timeOfDay,
|
|
595
|
-
|
|
596
|
-
|
|
607
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
608
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
597
609
|
Gender: gender,
|
|
598
610
|
PeriodsOfWeek: periodsOfWeek,
|
|
599
611
|
AdditionalSupport: additionalSupport,
|
|
@@ -636,6 +648,7 @@ export class PublicGenericActivityService {
|
|
|
636
648
|
activityType,
|
|
637
649
|
includeNextOpportunity,
|
|
638
650
|
featured,
|
|
651
|
+
_private,
|
|
639
652
|
searchGeoCenter,
|
|
640
653
|
openactiveActivityId,
|
|
641
654
|
activityId,
|
|
@@ -652,8 +665,8 @@ export class PublicGenericActivityService {
|
|
|
652
665
|
priceTotalGte,
|
|
653
666
|
priceTotalLte,
|
|
654
667
|
timeOfDay,
|
|
655
|
-
|
|
656
|
-
|
|
668
|
+
startDateTimeGte,
|
|
669
|
+
endDateTimeLte,
|
|
657
670
|
gender,
|
|
658
671
|
periodsOfWeek,
|
|
659
672
|
additionalSupport,
|
|
@@ -715,6 +728,10 @@ export class PublicGenericActivityService {
|
|
|
715
728
|
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
716
729
|
*/
|
|
717
730
|
featured?: boolean;
|
|
731
|
+
/**
|
|
732
|
+
* Gets or sets a value indicating does session is private or no.
|
|
733
|
+
*/
|
|
734
|
+
_private?: boolean;
|
|
718
735
|
/**
|
|
719
736
|
* Gets or sets SearchGeoCenter.
|
|
720
737
|
*/
|
|
@@ -780,13 +797,13 @@ export class PublicGenericActivityService {
|
|
|
780
797
|
*/
|
|
781
798
|
timeOfDay?: string;
|
|
782
799
|
/**
|
|
783
|
-
* Gets or sets
|
|
800
|
+
* Gets or sets StartDateTimeGTE.
|
|
784
801
|
*/
|
|
785
|
-
|
|
802
|
+
startDateTimeGte?: string;
|
|
786
803
|
/**
|
|
787
|
-
* Gets or sets
|
|
804
|
+
* Gets or sets EndDateTimeLTE.
|
|
788
805
|
*/
|
|
789
|
-
|
|
806
|
+
endDateTimeLte?: string;
|
|
790
807
|
/**
|
|
791
808
|
* Gets or sets Gender.
|
|
792
809
|
*/
|
|
@@ -869,6 +886,7 @@ export class PublicGenericActivityService {
|
|
|
869
886
|
ActivityType: activityType,
|
|
870
887
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
871
888
|
Featured: featured,
|
|
889
|
+
Private: _private,
|
|
872
890
|
SearchGeoCenter: searchGeoCenter,
|
|
873
891
|
OpenactiveActivityId: openactiveActivityId,
|
|
874
892
|
ActivityId: activityId,
|
|
@@ -885,8 +903,8 @@ export class PublicGenericActivityService {
|
|
|
885
903
|
PriceTotalGTE: priceTotalGte,
|
|
886
904
|
PriceTotalLTE: priceTotalLte,
|
|
887
905
|
TimeOfDay: timeOfDay,
|
|
888
|
-
|
|
889
|
-
|
|
906
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
907
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
890
908
|
Gender: gender,
|
|
891
909
|
PeriodsOfWeek: periodsOfWeek,
|
|
892
910
|
AdditionalSupport: additionalSupport,
|
|
@@ -974,6 +992,7 @@ export class PublicGenericActivityService {
|
|
|
974
992
|
activityType,
|
|
975
993
|
includeNextOpportunity,
|
|
976
994
|
featured,
|
|
995
|
+
_private,
|
|
977
996
|
searchGeoCenter,
|
|
978
997
|
openactiveActivityId,
|
|
979
998
|
activityId,
|
|
@@ -990,8 +1009,8 @@ export class PublicGenericActivityService {
|
|
|
990
1009
|
priceTotalGte,
|
|
991
1010
|
priceTotalLte,
|
|
992
1011
|
timeOfDay,
|
|
993
|
-
|
|
994
|
-
|
|
1012
|
+
startDateTimeGte,
|
|
1013
|
+
endDateTimeLte,
|
|
995
1014
|
gender,
|
|
996
1015
|
periodsOfWeek,
|
|
997
1016
|
additionalSupport,
|
|
@@ -1053,6 +1072,10 @@ export class PublicGenericActivityService {
|
|
|
1053
1072
|
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
1054
1073
|
*/
|
|
1055
1074
|
featured?: boolean;
|
|
1075
|
+
/**
|
|
1076
|
+
* Gets or sets a value indicating does session is private or no.
|
|
1077
|
+
*/
|
|
1078
|
+
_private?: boolean;
|
|
1056
1079
|
/**
|
|
1057
1080
|
* Gets or sets SearchGeoCenter.
|
|
1058
1081
|
*/
|
|
@@ -1118,13 +1141,13 @@ export class PublicGenericActivityService {
|
|
|
1118
1141
|
*/
|
|
1119
1142
|
timeOfDay?: string;
|
|
1120
1143
|
/**
|
|
1121
|
-
* Gets or sets
|
|
1144
|
+
* Gets or sets StartDateTimeGTE.
|
|
1122
1145
|
*/
|
|
1123
|
-
|
|
1146
|
+
startDateTimeGte?: string;
|
|
1124
1147
|
/**
|
|
1125
|
-
* Gets or sets
|
|
1148
|
+
* Gets or sets EndDateTimeLTE.
|
|
1126
1149
|
*/
|
|
1127
|
-
|
|
1150
|
+
endDateTimeLte?: string;
|
|
1128
1151
|
/**
|
|
1129
1152
|
* Gets or sets Gender.
|
|
1130
1153
|
*/
|
|
@@ -1207,6 +1230,7 @@ export class PublicGenericActivityService {
|
|
|
1207
1230
|
ActivityType: activityType,
|
|
1208
1231
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
1209
1232
|
Featured: featured,
|
|
1233
|
+
Private: _private,
|
|
1210
1234
|
SearchGeoCenter: searchGeoCenter,
|
|
1211
1235
|
OpenactiveActivityId: openactiveActivityId,
|
|
1212
1236
|
ActivityId: activityId,
|
|
@@ -1223,8 +1247,8 @@ export class PublicGenericActivityService {
|
|
|
1223
1247
|
PriceTotalGTE: priceTotalGte,
|
|
1224
1248
|
PriceTotalLTE: priceTotalLte,
|
|
1225
1249
|
TimeOfDay: timeOfDay,
|
|
1226
|
-
|
|
1227
|
-
|
|
1250
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
1251
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
1228
1252
|
Gender: gender,
|
|
1229
1253
|
PeriodsOfWeek: periodsOfWeek,
|
|
1230
1254
|
AdditionalSupport: additionalSupport,
|