reach-api-sdk 1.0.195 → 1.0.197
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 +337 -116
- package/dist/reach-sdk.js +174 -72
- package/package.json +1 -1
- package/src/definition/swagger.yaml +410 -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/WaitlistConversionStatsResponseDto.ts +10 -0
- package/src/services/CoursesService.ts +30 -0
- package/src/services/DiscountCodeUsesService.ts +31 -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/PublicWaitlistOpportunityService.ts +12 -0
- package/src/services/SessionsService.ts +70 -40
- package/src/services/WaitlistOpportunityReportService.ts +54 -0
- package/src/services/WaitlistOpportunityService.ts +30 -0
|
@@ -28,6 +28,7 @@ export class PublicNetworksService {
|
|
|
28
28
|
futureOnly,
|
|
29
29
|
online,
|
|
30
30
|
featured,
|
|
31
|
+
_private,
|
|
31
32
|
programmeId,
|
|
32
33
|
includeNextOpportunity,
|
|
33
34
|
allowTemplating,
|
|
@@ -44,8 +45,8 @@ export class PublicNetworksService {
|
|
|
44
45
|
priceTotalGte,
|
|
45
46
|
priceTotalLte,
|
|
46
47
|
timeOfDay,
|
|
47
|
-
|
|
48
|
-
|
|
48
|
+
startDateTimeGte,
|
|
49
|
+
endDateTimeLte,
|
|
49
50
|
gender,
|
|
50
51
|
periodsOfWeek,
|
|
51
52
|
searchGeoCenter,
|
|
@@ -95,6 +96,10 @@ export class PublicNetworksService {
|
|
|
95
96
|
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
96
97
|
*/
|
|
97
98
|
featured?: boolean;
|
|
99
|
+
/**
|
|
100
|
+
* Gets or sets a value indicating whether the session is private or open.
|
|
101
|
+
*/
|
|
102
|
+
_private?: boolean;
|
|
98
103
|
/**
|
|
99
104
|
* Gets or sets the queryable Programme Id.
|
|
100
105
|
*/
|
|
@@ -160,13 +165,13 @@ export class PublicNetworksService {
|
|
|
160
165
|
*/
|
|
161
166
|
timeOfDay?: string;
|
|
162
167
|
/**
|
|
163
|
-
* Gets or sets
|
|
168
|
+
* Gets or sets StartDateTimeGTE.
|
|
164
169
|
*/
|
|
165
|
-
|
|
170
|
+
startDateTimeGte?: string;
|
|
166
171
|
/**
|
|
167
|
-
* Gets or sets
|
|
172
|
+
* Gets or sets EndDateTimeLTE.
|
|
168
173
|
*/
|
|
169
|
-
|
|
174
|
+
endDateTimeLte?: string;
|
|
170
175
|
/**
|
|
171
176
|
* Gets or sets Gender.
|
|
172
177
|
*/
|
|
@@ -244,6 +249,7 @@ export class PublicNetworksService {
|
|
|
244
249
|
FutureOnly: futureOnly,
|
|
245
250
|
Online: online,
|
|
246
251
|
Featured: featured,
|
|
252
|
+
Private: _private,
|
|
247
253
|
ProgrammeId: programmeId,
|
|
248
254
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
249
255
|
AllowTemplating: allowTemplating,
|
|
@@ -260,8 +266,8 @@ export class PublicNetworksService {
|
|
|
260
266
|
PriceTotalGTE: priceTotalGte,
|
|
261
267
|
PriceTotalLTE: priceTotalLte,
|
|
262
268
|
TimeOfDay: timeOfDay,
|
|
263
|
-
|
|
264
|
-
|
|
269
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
270
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
265
271
|
Gender: gender,
|
|
266
272
|
PeriodsOfWeek: periodsOfWeek,
|
|
267
273
|
SearchGeoCenter: searchGeoCenter,
|
|
@@ -97,6 +97,7 @@ export class PublicSessionsService {
|
|
|
97
97
|
futureOnly,
|
|
98
98
|
online,
|
|
99
99
|
featured,
|
|
100
|
+
_private,
|
|
100
101
|
programmeId,
|
|
101
102
|
includeNextOpportunity,
|
|
102
103
|
allowTemplating,
|
|
@@ -113,8 +114,8 @@ export class PublicSessionsService {
|
|
|
113
114
|
priceTotalGte,
|
|
114
115
|
priceTotalLte,
|
|
115
116
|
timeOfDay,
|
|
116
|
-
|
|
117
|
-
|
|
117
|
+
startDateTimeGte,
|
|
118
|
+
endDateTimeLte,
|
|
118
119
|
gender,
|
|
119
120
|
periodsOfWeek,
|
|
120
121
|
searchGeoCenter,
|
|
@@ -165,6 +166,10 @@ export class PublicSessionsService {
|
|
|
165
166
|
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
166
167
|
*/
|
|
167
168
|
featured?: boolean;
|
|
169
|
+
/**
|
|
170
|
+
* Gets or sets a value indicating whether the session is private or open.
|
|
171
|
+
*/
|
|
172
|
+
_private?: boolean;
|
|
168
173
|
/**
|
|
169
174
|
* Gets or sets the queryable Programme Id.
|
|
170
175
|
*/
|
|
@@ -230,13 +235,13 @@ export class PublicSessionsService {
|
|
|
230
235
|
*/
|
|
231
236
|
timeOfDay?: string;
|
|
232
237
|
/**
|
|
233
|
-
* Gets or sets
|
|
238
|
+
* Gets or sets StartDateTimeGTE.
|
|
234
239
|
*/
|
|
235
|
-
|
|
240
|
+
startDateTimeGte?: string;
|
|
236
241
|
/**
|
|
237
|
-
* Gets or sets
|
|
242
|
+
* Gets or sets EndDateTimeLTE.
|
|
238
243
|
*/
|
|
239
|
-
|
|
244
|
+
endDateTimeLte?: string;
|
|
240
245
|
/**
|
|
241
246
|
* Gets or sets Gender.
|
|
242
247
|
*/
|
|
@@ -317,6 +322,7 @@ export class PublicSessionsService {
|
|
|
317
322
|
FutureOnly: futureOnly,
|
|
318
323
|
Online: online,
|
|
319
324
|
Featured: featured,
|
|
325
|
+
Private: _private,
|
|
320
326
|
ProgrammeId: programmeId,
|
|
321
327
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
322
328
|
AllowTemplating: allowTemplating,
|
|
@@ -333,8 +339,8 @@ export class PublicSessionsService {
|
|
|
333
339
|
PriceTotalGTE: priceTotalGte,
|
|
334
340
|
PriceTotalLTE: priceTotalLte,
|
|
335
341
|
TimeOfDay: timeOfDay,
|
|
336
|
-
|
|
337
|
-
|
|
342
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
343
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
338
344
|
Gender: gender,
|
|
339
345
|
PeriodsOfWeek: periodsOfWeek,
|
|
340
346
|
SearchGeoCenter: searchGeoCenter,
|
|
@@ -809,6 +815,7 @@ export class PublicSessionsService {
|
|
|
809
815
|
futureOnly,
|
|
810
816
|
online,
|
|
811
817
|
featured,
|
|
818
|
+
_private,
|
|
812
819
|
programmeId,
|
|
813
820
|
includeNextOpportunity,
|
|
814
821
|
allowTemplating,
|
|
@@ -825,8 +832,8 @@ export class PublicSessionsService {
|
|
|
825
832
|
priceTotalGte,
|
|
826
833
|
priceTotalLte,
|
|
827
834
|
timeOfDay,
|
|
828
|
-
|
|
829
|
-
|
|
835
|
+
startDateTimeGte,
|
|
836
|
+
endDateTimeLte,
|
|
830
837
|
gender,
|
|
831
838
|
periodsOfWeek,
|
|
832
839
|
searchGeoCenter,
|
|
@@ -880,6 +887,10 @@ export class PublicSessionsService {
|
|
|
880
887
|
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
881
888
|
*/
|
|
882
889
|
featured?: boolean;
|
|
890
|
+
/**
|
|
891
|
+
* Gets or sets a value indicating whether the session is private or open.
|
|
892
|
+
*/
|
|
893
|
+
_private?: boolean;
|
|
883
894
|
/**
|
|
884
895
|
* Gets or sets the queryable Programme Id.
|
|
885
896
|
*/
|
|
@@ -945,13 +956,13 @@ export class PublicSessionsService {
|
|
|
945
956
|
*/
|
|
946
957
|
timeOfDay?: string;
|
|
947
958
|
/**
|
|
948
|
-
* Gets or sets
|
|
959
|
+
* Gets or sets StartDateTimeGTE.
|
|
949
960
|
*/
|
|
950
|
-
|
|
961
|
+
startDateTimeGte?: string;
|
|
951
962
|
/**
|
|
952
|
-
* Gets or sets
|
|
963
|
+
* Gets or sets EndDateTimeLTE.
|
|
953
964
|
*/
|
|
954
|
-
|
|
965
|
+
endDateTimeLte?: string;
|
|
955
966
|
/**
|
|
956
967
|
* Gets or sets Gender.
|
|
957
968
|
*/
|
|
@@ -1032,6 +1043,7 @@ export class PublicSessionsService {
|
|
|
1032
1043
|
FutureOnly: futureOnly,
|
|
1033
1044
|
Online: online,
|
|
1034
1045
|
Featured: featured,
|
|
1046
|
+
Private: _private,
|
|
1035
1047
|
ProgrammeId: programmeId,
|
|
1036
1048
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
1037
1049
|
AllowTemplating: allowTemplating,
|
|
@@ -1048,8 +1060,8 @@ export class PublicSessionsService {
|
|
|
1048
1060
|
PriceTotalGTE: priceTotalGte,
|
|
1049
1061
|
PriceTotalLTE: priceTotalLte,
|
|
1050
1062
|
TimeOfDay: timeOfDay,
|
|
1051
|
-
|
|
1052
|
-
|
|
1063
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
1064
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
1053
1065
|
Gender: gender,
|
|
1054
1066
|
PeriodsOfWeek: periodsOfWeek,
|
|
1055
1067
|
SearchGeoCenter: searchGeoCenter,
|
|
@@ -162,6 +162,7 @@ export class PublicWaitlistOpportunityService {
|
|
|
162
162
|
scheduledSessionId,
|
|
163
163
|
courseId,
|
|
164
164
|
email,
|
|
165
|
+
futureOnly,
|
|
165
166
|
pageNumber,
|
|
166
167
|
take,
|
|
167
168
|
skip,
|
|
@@ -198,6 +199,10 @@ export class PublicWaitlistOpportunityService {
|
|
|
198
199
|
* Gets or sets the queryable Email.
|
|
199
200
|
*/
|
|
200
201
|
email?: string;
|
|
202
|
+
/**
|
|
203
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
204
|
+
*/
|
|
205
|
+
futureOnly?: boolean;
|
|
201
206
|
/**
|
|
202
207
|
* Gets or sets the page number for paged queries.
|
|
203
208
|
*/
|
|
@@ -255,6 +260,7 @@ export class PublicWaitlistOpportunityService {
|
|
|
255
260
|
ScheduledSessionId: scheduledSessionId,
|
|
256
261
|
CourseId: courseId,
|
|
257
262
|
Email: email,
|
|
263
|
+
FutureOnly: futureOnly,
|
|
258
264
|
PageNumber: pageNumber,
|
|
259
265
|
Take: take,
|
|
260
266
|
Skip: skip,
|
|
@@ -357,6 +363,7 @@ export class PublicWaitlistOpportunityService {
|
|
|
357
363
|
scheduledSessionId,
|
|
358
364
|
courseId,
|
|
359
365
|
email,
|
|
366
|
+
futureOnly,
|
|
360
367
|
pageNumber,
|
|
361
368
|
take,
|
|
362
369
|
skip,
|
|
@@ -393,6 +400,10 @@ export class PublicWaitlistOpportunityService {
|
|
|
393
400
|
* Gets or sets the queryable Email.
|
|
394
401
|
*/
|
|
395
402
|
email?: string;
|
|
403
|
+
/**
|
|
404
|
+
* Gets or sets a value indicating whether to filter for future opportunities only.
|
|
405
|
+
*/
|
|
406
|
+
futureOnly?: boolean;
|
|
396
407
|
/**
|
|
397
408
|
* Gets or sets the page number for paged queries.
|
|
398
409
|
*/
|
|
@@ -450,6 +461,7 @@ export class PublicWaitlistOpportunityService {
|
|
|
450
461
|
ScheduledSessionId: scheduledSessionId,
|
|
451
462
|
CourseId: courseId,
|
|
452
463
|
Email: email,
|
|
464
|
+
FutureOnly: futureOnly,
|
|
453
465
|
PageNumber: pageNumber,
|
|
454
466
|
Take: take,
|
|
455
467
|
Skip: skip,
|
|
@@ -472,6 +472,7 @@ export class SessionsService {
|
|
|
472
472
|
futureOnly,
|
|
473
473
|
online,
|
|
474
474
|
featured,
|
|
475
|
+
_private,
|
|
475
476
|
programmeId,
|
|
476
477
|
includeNextOpportunity,
|
|
477
478
|
allowTemplating,
|
|
@@ -488,8 +489,8 @@ export class SessionsService {
|
|
|
488
489
|
priceTotalGte,
|
|
489
490
|
priceTotalLte,
|
|
490
491
|
timeOfDay,
|
|
491
|
-
|
|
492
|
-
|
|
492
|
+
startDateTimeGte,
|
|
493
|
+
endDateTimeLte,
|
|
493
494
|
gender,
|
|
494
495
|
periodsOfWeek,
|
|
495
496
|
searchGeoCenter,
|
|
@@ -539,6 +540,10 @@ export class SessionsService {
|
|
|
539
540
|
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
540
541
|
*/
|
|
541
542
|
featured?: boolean;
|
|
543
|
+
/**
|
|
544
|
+
* Gets or sets a value indicating whether the session is private or open.
|
|
545
|
+
*/
|
|
546
|
+
_private?: boolean;
|
|
542
547
|
/**
|
|
543
548
|
* Gets or sets the queryable Programme Id.
|
|
544
549
|
*/
|
|
@@ -604,13 +609,13 @@ export class SessionsService {
|
|
|
604
609
|
*/
|
|
605
610
|
timeOfDay?: string;
|
|
606
611
|
/**
|
|
607
|
-
* Gets or sets
|
|
612
|
+
* Gets or sets StartDateTimeGTE.
|
|
608
613
|
*/
|
|
609
|
-
|
|
614
|
+
startDateTimeGte?: string;
|
|
610
615
|
/**
|
|
611
|
-
* Gets or sets
|
|
616
|
+
* Gets or sets EndDateTimeLTE.
|
|
612
617
|
*/
|
|
613
|
-
|
|
618
|
+
endDateTimeLte?: string;
|
|
614
619
|
/**
|
|
615
620
|
* Gets or sets Gender.
|
|
616
621
|
*/
|
|
@@ -688,6 +693,7 @@ export class SessionsService {
|
|
|
688
693
|
FutureOnly: futureOnly,
|
|
689
694
|
Online: online,
|
|
690
695
|
Featured: featured,
|
|
696
|
+
Private: _private,
|
|
691
697
|
ProgrammeId: programmeId,
|
|
692
698
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
693
699
|
AllowTemplating: allowTemplating,
|
|
@@ -704,8 +710,8 @@ export class SessionsService {
|
|
|
704
710
|
PriceTotalGTE: priceTotalGte,
|
|
705
711
|
PriceTotalLTE: priceTotalLte,
|
|
706
712
|
TimeOfDay: timeOfDay,
|
|
707
|
-
|
|
708
|
-
|
|
713
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
714
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
709
715
|
Gender: gender,
|
|
710
716
|
PeriodsOfWeek: periodsOfWeek,
|
|
711
717
|
SearchGeoCenter: searchGeoCenter,
|
|
@@ -826,6 +832,7 @@ export class SessionsService {
|
|
|
826
832
|
futureOnly,
|
|
827
833
|
online,
|
|
828
834
|
featured,
|
|
835
|
+
_private,
|
|
829
836
|
programmeId,
|
|
830
837
|
includeNextOpportunity,
|
|
831
838
|
allowTemplating,
|
|
@@ -842,8 +849,8 @@ export class SessionsService {
|
|
|
842
849
|
priceTotalGte,
|
|
843
850
|
priceTotalLte,
|
|
844
851
|
timeOfDay,
|
|
845
|
-
|
|
846
|
-
|
|
852
|
+
startDateTimeGte,
|
|
853
|
+
endDateTimeLte,
|
|
847
854
|
gender,
|
|
848
855
|
periodsOfWeek,
|
|
849
856
|
searchGeoCenter,
|
|
@@ -893,6 +900,10 @@ export class SessionsService {
|
|
|
893
900
|
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
894
901
|
*/
|
|
895
902
|
featured?: boolean;
|
|
903
|
+
/**
|
|
904
|
+
* Gets or sets a value indicating whether the session is private or open.
|
|
905
|
+
*/
|
|
906
|
+
_private?: boolean;
|
|
896
907
|
/**
|
|
897
908
|
* Gets or sets the queryable Programme Id.
|
|
898
909
|
*/
|
|
@@ -958,13 +969,13 @@ export class SessionsService {
|
|
|
958
969
|
*/
|
|
959
970
|
timeOfDay?: string;
|
|
960
971
|
/**
|
|
961
|
-
* Gets or sets
|
|
972
|
+
* Gets or sets StartDateTimeGTE.
|
|
962
973
|
*/
|
|
963
|
-
|
|
974
|
+
startDateTimeGte?: string;
|
|
964
975
|
/**
|
|
965
|
-
* Gets or sets
|
|
976
|
+
* Gets or sets EndDateTimeLTE.
|
|
966
977
|
*/
|
|
967
|
-
|
|
978
|
+
endDateTimeLte?: string;
|
|
968
979
|
/**
|
|
969
980
|
* Gets or sets Gender.
|
|
970
981
|
*/
|
|
@@ -1042,6 +1053,7 @@ export class SessionsService {
|
|
|
1042
1053
|
FutureOnly: futureOnly,
|
|
1043
1054
|
Online: online,
|
|
1044
1055
|
Featured: featured,
|
|
1056
|
+
Private: _private,
|
|
1045
1057
|
ProgrammeId: programmeId,
|
|
1046
1058
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
1047
1059
|
AllowTemplating: allowTemplating,
|
|
@@ -1058,8 +1070,8 @@ export class SessionsService {
|
|
|
1058
1070
|
PriceTotalGTE: priceTotalGte,
|
|
1059
1071
|
PriceTotalLTE: priceTotalLte,
|
|
1060
1072
|
TimeOfDay: timeOfDay,
|
|
1061
|
-
|
|
1062
|
-
|
|
1073
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
1074
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
1063
1075
|
Gender: gender,
|
|
1064
1076
|
PeriodsOfWeek: periodsOfWeek,
|
|
1065
1077
|
SearchGeoCenter: searchGeoCenter,
|
|
@@ -1099,6 +1111,7 @@ export class SessionsService {
|
|
|
1099
1111
|
futureOnly,
|
|
1100
1112
|
online,
|
|
1101
1113
|
featured,
|
|
1114
|
+
_private,
|
|
1102
1115
|
programmeId,
|
|
1103
1116
|
includeNextOpportunity,
|
|
1104
1117
|
allowTemplating,
|
|
@@ -1115,8 +1128,8 @@ export class SessionsService {
|
|
|
1115
1128
|
priceTotalGte,
|
|
1116
1129
|
priceTotalLte,
|
|
1117
1130
|
timeOfDay,
|
|
1118
|
-
|
|
1119
|
-
|
|
1131
|
+
startDateTimeGte,
|
|
1132
|
+
endDateTimeLte,
|
|
1120
1133
|
gender,
|
|
1121
1134
|
periodsOfWeek,
|
|
1122
1135
|
searchGeoCenter,
|
|
@@ -1166,6 +1179,10 @@ export class SessionsService {
|
|
|
1166
1179
|
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
1167
1180
|
*/
|
|
1168
1181
|
featured?: boolean;
|
|
1182
|
+
/**
|
|
1183
|
+
* Gets or sets a value indicating whether the session is private or open.
|
|
1184
|
+
*/
|
|
1185
|
+
_private?: boolean;
|
|
1169
1186
|
/**
|
|
1170
1187
|
* Gets or sets the queryable Programme Id.
|
|
1171
1188
|
*/
|
|
@@ -1231,13 +1248,13 @@ export class SessionsService {
|
|
|
1231
1248
|
*/
|
|
1232
1249
|
timeOfDay?: string;
|
|
1233
1250
|
/**
|
|
1234
|
-
* Gets or sets
|
|
1251
|
+
* Gets or sets StartDateTimeGTE.
|
|
1235
1252
|
*/
|
|
1236
|
-
|
|
1253
|
+
startDateTimeGte?: string;
|
|
1237
1254
|
/**
|
|
1238
|
-
* Gets or sets
|
|
1255
|
+
* Gets or sets EndDateTimeLTE.
|
|
1239
1256
|
*/
|
|
1240
|
-
|
|
1257
|
+
endDateTimeLte?: string;
|
|
1241
1258
|
/**
|
|
1242
1259
|
* Gets or sets Gender.
|
|
1243
1260
|
*/
|
|
@@ -1315,6 +1332,7 @@ export class SessionsService {
|
|
|
1315
1332
|
FutureOnly: futureOnly,
|
|
1316
1333
|
Online: online,
|
|
1317
1334
|
Featured: featured,
|
|
1335
|
+
Private: _private,
|
|
1318
1336
|
ProgrammeId: programmeId,
|
|
1319
1337
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
1320
1338
|
AllowTemplating: allowTemplating,
|
|
@@ -1331,8 +1349,8 @@ export class SessionsService {
|
|
|
1331
1349
|
PriceTotalGTE: priceTotalGte,
|
|
1332
1350
|
PriceTotalLTE: priceTotalLte,
|
|
1333
1351
|
TimeOfDay: timeOfDay,
|
|
1334
|
-
|
|
1335
|
-
|
|
1352
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
1353
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
1336
1354
|
Gender: gender,
|
|
1337
1355
|
PeriodsOfWeek: periodsOfWeek,
|
|
1338
1356
|
SearchGeoCenter: searchGeoCenter,
|
|
@@ -1372,6 +1390,7 @@ export class SessionsService {
|
|
|
1372
1390
|
futureOnly,
|
|
1373
1391
|
online,
|
|
1374
1392
|
featured,
|
|
1393
|
+
_private,
|
|
1375
1394
|
programmeId,
|
|
1376
1395
|
includeNextOpportunity,
|
|
1377
1396
|
allowTemplating,
|
|
@@ -1388,8 +1407,8 @@ export class SessionsService {
|
|
|
1388
1407
|
priceTotalGte,
|
|
1389
1408
|
priceTotalLte,
|
|
1390
1409
|
timeOfDay,
|
|
1391
|
-
|
|
1392
|
-
|
|
1410
|
+
startDateTimeGte,
|
|
1411
|
+
endDateTimeLte,
|
|
1393
1412
|
gender,
|
|
1394
1413
|
periodsOfWeek,
|
|
1395
1414
|
searchGeoCenter,
|
|
@@ -1439,6 +1458,10 @@ export class SessionsService {
|
|
|
1439
1458
|
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
1440
1459
|
*/
|
|
1441
1460
|
featured?: boolean;
|
|
1461
|
+
/**
|
|
1462
|
+
* Gets or sets a value indicating whether the session is private or open.
|
|
1463
|
+
*/
|
|
1464
|
+
_private?: boolean;
|
|
1442
1465
|
/**
|
|
1443
1466
|
* Gets or sets the queryable Programme Id.
|
|
1444
1467
|
*/
|
|
@@ -1504,13 +1527,13 @@ export class SessionsService {
|
|
|
1504
1527
|
*/
|
|
1505
1528
|
timeOfDay?: string;
|
|
1506
1529
|
/**
|
|
1507
|
-
* Gets or sets
|
|
1530
|
+
* Gets or sets StartDateTimeGTE.
|
|
1508
1531
|
*/
|
|
1509
|
-
|
|
1532
|
+
startDateTimeGte?: string;
|
|
1510
1533
|
/**
|
|
1511
|
-
* Gets or sets
|
|
1534
|
+
* Gets or sets EndDateTimeLTE.
|
|
1512
1535
|
*/
|
|
1513
|
-
|
|
1536
|
+
endDateTimeLte?: string;
|
|
1514
1537
|
/**
|
|
1515
1538
|
* Gets or sets Gender.
|
|
1516
1539
|
*/
|
|
@@ -1588,6 +1611,7 @@ export class SessionsService {
|
|
|
1588
1611
|
FutureOnly: futureOnly,
|
|
1589
1612
|
Online: online,
|
|
1590
1613
|
Featured: featured,
|
|
1614
|
+
Private: _private,
|
|
1591
1615
|
ProgrammeId: programmeId,
|
|
1592
1616
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
1593
1617
|
AllowTemplating: allowTemplating,
|
|
@@ -1604,8 +1628,8 @@ export class SessionsService {
|
|
|
1604
1628
|
PriceTotalGTE: priceTotalGte,
|
|
1605
1629
|
PriceTotalLTE: priceTotalLte,
|
|
1606
1630
|
TimeOfDay: timeOfDay,
|
|
1607
|
-
|
|
1608
|
-
|
|
1631
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
1632
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
1609
1633
|
Gender: gender,
|
|
1610
1634
|
PeriodsOfWeek: periodsOfWeek,
|
|
1611
1635
|
SearchGeoCenter: searchGeoCenter,
|
|
@@ -1645,6 +1669,7 @@ export class SessionsService {
|
|
|
1645
1669
|
futureOnly,
|
|
1646
1670
|
online,
|
|
1647
1671
|
featured,
|
|
1672
|
+
_private,
|
|
1648
1673
|
programmeId,
|
|
1649
1674
|
includeNextOpportunity,
|
|
1650
1675
|
allowTemplating,
|
|
@@ -1661,8 +1686,8 @@ export class SessionsService {
|
|
|
1661
1686
|
priceTotalGte,
|
|
1662
1687
|
priceTotalLte,
|
|
1663
1688
|
timeOfDay,
|
|
1664
|
-
|
|
1665
|
-
|
|
1689
|
+
startDateTimeGte,
|
|
1690
|
+
endDateTimeLte,
|
|
1666
1691
|
gender,
|
|
1667
1692
|
periodsOfWeek,
|
|
1668
1693
|
searchGeoCenter,
|
|
@@ -1712,6 +1737,10 @@ export class SessionsService {
|
|
|
1712
1737
|
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
1713
1738
|
*/
|
|
1714
1739
|
featured?: boolean;
|
|
1740
|
+
/**
|
|
1741
|
+
* Gets or sets a value indicating whether the session is private or open.
|
|
1742
|
+
*/
|
|
1743
|
+
_private?: boolean;
|
|
1715
1744
|
/**
|
|
1716
1745
|
* Gets or sets the queryable Programme Id.
|
|
1717
1746
|
*/
|
|
@@ -1777,13 +1806,13 @@ export class SessionsService {
|
|
|
1777
1806
|
*/
|
|
1778
1807
|
timeOfDay?: string;
|
|
1779
1808
|
/**
|
|
1780
|
-
* Gets or sets
|
|
1809
|
+
* Gets or sets StartDateTimeGTE.
|
|
1781
1810
|
*/
|
|
1782
|
-
|
|
1811
|
+
startDateTimeGte?: string;
|
|
1783
1812
|
/**
|
|
1784
|
-
* Gets or sets
|
|
1813
|
+
* Gets or sets EndDateTimeLTE.
|
|
1785
1814
|
*/
|
|
1786
|
-
|
|
1815
|
+
endDateTimeLte?: string;
|
|
1787
1816
|
/**
|
|
1788
1817
|
* Gets or sets Gender.
|
|
1789
1818
|
*/
|
|
@@ -1861,6 +1890,7 @@ export class SessionsService {
|
|
|
1861
1890
|
FutureOnly: futureOnly,
|
|
1862
1891
|
Online: online,
|
|
1863
1892
|
Featured: featured,
|
|
1893
|
+
Private: _private,
|
|
1864
1894
|
ProgrammeId: programmeId,
|
|
1865
1895
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
1866
1896
|
AllowTemplating: allowTemplating,
|
|
@@ -1877,8 +1907,8 @@ export class SessionsService {
|
|
|
1877
1907
|
PriceTotalGTE: priceTotalGte,
|
|
1878
1908
|
PriceTotalLTE: priceTotalLte,
|
|
1879
1909
|
TimeOfDay: timeOfDay,
|
|
1880
|
-
|
|
1881
|
-
|
|
1910
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
1911
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
1882
1912
|
Gender: gender,
|
|
1883
1913
|
PeriodsOfWeek: periodsOfWeek,
|
|
1884
1914
|
SearchGeoCenter: searchGeoCenter,
|