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.
@@ -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
- dateFrom,
48
- dateTo,
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 DateFrom.
168
+ * Gets or sets StartDateTimeGTE.
164
169
  */
165
- dateFrom?: string;
170
+ startDateTimeGte?: string;
166
171
  /**
167
- * Gets or sets DateTo.
172
+ * Gets or sets EndDateTimeLTE.
168
173
  */
169
- dateTo?: string;
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
- DateFrom: dateFrom,
264
- DateTo: dateTo,
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
- dateFrom,
117
- dateTo,
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 DateFrom.
238
+ * Gets or sets StartDateTimeGTE.
234
239
  */
235
- dateFrom?: string;
240
+ startDateTimeGte?: string;
236
241
  /**
237
- * Gets or sets DateTo.
242
+ * Gets or sets EndDateTimeLTE.
238
243
  */
239
- dateTo?: string;
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
- DateFrom: dateFrom,
337
- DateTo: dateTo,
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
- dateFrom,
829
- dateTo,
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 DateFrom.
959
+ * Gets or sets StartDateTimeGTE.
949
960
  */
950
- dateFrom?: string;
961
+ startDateTimeGte?: string;
951
962
  /**
952
- * Gets or sets DateTo.
963
+ * Gets or sets EndDateTimeLTE.
953
964
  */
954
- dateTo?: string;
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
- DateFrom: dateFrom,
1052
- DateTo: dateTo,
1063
+ StartDateTimeGTE: startDateTimeGte,
1064
+ EndDateTimeLTE: endDateTimeLte,
1053
1065
  Gender: gender,
1054
1066
  PeriodsOfWeek: periodsOfWeek,
1055
1067
  SearchGeoCenter: searchGeoCenter,
@@ -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
- dateFrom,
492
- dateTo,
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 DateFrom.
612
+ * Gets or sets StartDateTimeGTE.
608
613
  */
609
- dateFrom?: string;
614
+ startDateTimeGte?: string;
610
615
  /**
611
- * Gets or sets DateTo.
616
+ * Gets or sets EndDateTimeLTE.
612
617
  */
613
- dateTo?: string;
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
- DateFrom: dateFrom,
708
- DateTo: dateTo,
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
- dateFrom,
846
- dateTo,
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 DateFrom.
972
+ * Gets or sets StartDateTimeGTE.
962
973
  */
963
- dateFrom?: string;
974
+ startDateTimeGte?: string;
964
975
  /**
965
- * Gets or sets DateTo.
976
+ * Gets or sets EndDateTimeLTE.
966
977
  */
967
- dateTo?: string;
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
- DateFrom: dateFrom,
1062
- DateTo: dateTo,
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
- dateFrom,
1119
- dateTo,
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 DateFrom.
1251
+ * Gets or sets StartDateTimeGTE.
1235
1252
  */
1236
- dateFrom?: string;
1253
+ startDateTimeGte?: string;
1237
1254
  /**
1238
- * Gets or sets DateTo.
1255
+ * Gets or sets EndDateTimeLTE.
1239
1256
  */
1240
- dateTo?: string;
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
- DateFrom: dateFrom,
1335
- DateTo: dateTo,
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
- dateFrom,
1392
- dateTo,
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 DateFrom.
1530
+ * Gets or sets StartDateTimeGTE.
1508
1531
  */
1509
- dateFrom?: string;
1532
+ startDateTimeGte?: string;
1510
1533
  /**
1511
- * Gets or sets DateTo.
1534
+ * Gets or sets EndDateTimeLTE.
1512
1535
  */
1513
- dateTo?: string;
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
- DateFrom: dateFrom,
1608
- DateTo: dateTo,
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
- dateFrom,
1665
- dateTo,
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 DateFrom.
1809
+ * Gets or sets StartDateTimeGTE.
1781
1810
  */
1782
- dateFrom?: string;
1811
+ startDateTimeGte?: string;
1783
1812
  /**
1784
- * Gets or sets DateTo.
1813
+ * Gets or sets EndDateTimeLTE.
1785
1814
  */
1786
- dateTo?: string;
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
- DateFrom: dateFrom,
1881
- DateTo: dateTo,
1910
+ StartDateTimeGTE: startDateTimeGte,
1911
+ EndDateTimeLTE: endDateTimeLte,
1882
1912
  Gender: gender,
1883
1913
  PeriodsOfWeek: periodsOfWeek,
1884
1914
  SearchGeoCenter: searchGeoCenter,
@@ -3,6 +3,7 @@
3
3
  /* tslint:disable */
4
4
  /* eslint-disable */
5
5
  import type { SearchSortOrderDirection } from '../models/SearchSortOrderDirection';
6
+ import type { WaitlistConversionStatsResponseDto } from '../models/WaitlistConversionStatsResponseDto';
6
7
  import type { WaitlistOpportunityReport } from '../models/WaitlistOpportunityReport';
7
8
  import type { WaitlistOpportunityReportPage } from '../models/WaitlistOpportunityReportPage';
8
9
  import type { WaitlistOpportunityReportPatch } from '../models/WaitlistOpportunityReportPatch';
@@ -149,10 +150,10 @@ export class WaitlistOpportunityReportService {
149
150
 
150
151
  /**
151
152
  * Gets waitlist conversion statistics.
152
- * @returns any OK
153
+ * @returns WaitlistConversionStatsResponseDto OK
153
154
  * @throws ApiError
154
155
  */
155
- public getConversionStats(): CancelablePromise<any> {
156
+ public getConversionStats(): CancelablePromise<WaitlistConversionStatsResponseDto> {
156
157
  return this.httpRequest.request({
157
158
  method: 'GET',
158
159
  url: '/api/waitlist-opportunity-report/conversion-stats',