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
package/dist/reach-sdk.js
CHANGED
|
@@ -3611,6 +3611,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3611
3611
|
futureOnly,
|
|
3612
3612
|
online,
|
|
3613
3613
|
featured,
|
|
3614
|
+
_private,
|
|
3614
3615
|
hasAvailability,
|
|
3615
3616
|
orderFirstNameContains,
|
|
3616
3617
|
orderLastNameContains,
|
|
@@ -3658,6 +3659,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3658
3659
|
FutureOnly: futureOnly,
|
|
3659
3660
|
Online: online,
|
|
3660
3661
|
Featured: featured,
|
|
3662
|
+
Private: _private,
|
|
3661
3663
|
HasAvailability: hasAvailability,
|
|
3662
3664
|
OrderFirstNameContains: orderFirstNameContains,
|
|
3663
3665
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -3777,6 +3779,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3777
3779
|
futureOnly,
|
|
3778
3780
|
online,
|
|
3779
3781
|
featured,
|
|
3782
|
+
_private,
|
|
3780
3783
|
hasAvailability,
|
|
3781
3784
|
orderFirstNameContains,
|
|
3782
3785
|
orderLastNameContains,
|
|
@@ -3824,6 +3827,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3824
3827
|
FutureOnly: futureOnly,
|
|
3825
3828
|
Online: online,
|
|
3826
3829
|
Featured: featured,
|
|
3830
|
+
Private: _private,
|
|
3827
3831
|
HasAvailability: hasAvailability,
|
|
3828
3832
|
OrderFirstNameContains: orderFirstNameContains,
|
|
3829
3833
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -3880,6 +3884,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3880
3884
|
futureOnly,
|
|
3881
3885
|
online,
|
|
3882
3886
|
featured,
|
|
3887
|
+
_private,
|
|
3883
3888
|
hasAvailability,
|
|
3884
3889
|
orderFirstNameContains,
|
|
3885
3890
|
orderLastNameContains,
|
|
@@ -3927,6 +3932,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3927
3932
|
FutureOnly: futureOnly,
|
|
3928
3933
|
Online: online,
|
|
3929
3934
|
Featured: featured,
|
|
3935
|
+
Private: _private,
|
|
3930
3936
|
HasAvailability: hasAvailability,
|
|
3931
3937
|
OrderFirstNameContains: orderFirstNameContains,
|
|
3932
3938
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -3983,6 +3989,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3983
3989
|
futureOnly,
|
|
3984
3990
|
online,
|
|
3985
3991
|
featured,
|
|
3992
|
+
_private,
|
|
3986
3993
|
hasAvailability,
|
|
3987
3994
|
orderFirstNameContains,
|
|
3988
3995
|
orderLastNameContains,
|
|
@@ -4030,6 +4037,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
4030
4037
|
FutureOnly: futureOnly,
|
|
4031
4038
|
Online: online,
|
|
4032
4039
|
Featured: featured,
|
|
4040
|
+
Private: _private,
|
|
4033
4041
|
HasAvailability: hasAvailability,
|
|
4034
4042
|
OrderFirstNameContains: orderFirstNameContains,
|
|
4035
4043
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -4086,6 +4094,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
4086
4094
|
futureOnly,
|
|
4087
4095
|
online,
|
|
4088
4096
|
featured,
|
|
4097
|
+
_private,
|
|
4089
4098
|
hasAvailability,
|
|
4090
4099
|
orderFirstNameContains,
|
|
4091
4100
|
orderLastNameContains,
|
|
@@ -4133,6 +4142,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
4133
4142
|
FutureOnly: futureOnly,
|
|
4134
4143
|
Online: online,
|
|
4135
4144
|
Featured: featured,
|
|
4145
|
+
Private: _private,
|
|
4136
4146
|
HasAvailability: hasAvailability,
|
|
4137
4147
|
OrderFirstNameContains: orderFirstNameContains,
|
|
4138
4148
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -6889,6 +6899,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
6889
6899
|
dealId,
|
|
6890
6900
|
orderId,
|
|
6891
6901
|
customerId,
|
|
6902
|
+
orderStages,
|
|
6892
6903
|
pageNumber,
|
|
6893
6904
|
take,
|
|
6894
6905
|
skip,
|
|
@@ -6908,6 +6919,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
6908
6919
|
DealId: dealId,
|
|
6909
6920
|
OrderId: orderId,
|
|
6910
6921
|
CustomerId: customerId,
|
|
6922
|
+
OrderStages: orderStages,
|
|
6911
6923
|
PageNumber: pageNumber,
|
|
6912
6924
|
Take: take,
|
|
6913
6925
|
Skip: skip,
|
|
@@ -6999,6 +7011,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
6999
7011
|
dealId,
|
|
7000
7012
|
orderId,
|
|
7001
7013
|
customerId,
|
|
7014
|
+
orderStages,
|
|
7002
7015
|
pageNumber,
|
|
7003
7016
|
take,
|
|
7004
7017
|
skip,
|
|
@@ -7018,6 +7031,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7018
7031
|
DealId: dealId,
|
|
7019
7032
|
OrderId: orderId,
|
|
7020
7033
|
CustomerId: customerId,
|
|
7034
|
+
OrderStages: orderStages,
|
|
7021
7035
|
PageNumber: pageNumber,
|
|
7022
7036
|
Take: take,
|
|
7023
7037
|
Skip: skip,
|
|
@@ -7046,6 +7060,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7046
7060
|
dealId,
|
|
7047
7061
|
orderId,
|
|
7048
7062
|
customerId,
|
|
7063
|
+
orderStages,
|
|
7049
7064
|
pageNumber,
|
|
7050
7065
|
take,
|
|
7051
7066
|
skip,
|
|
@@ -7065,6 +7080,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7065
7080
|
DealId: dealId,
|
|
7066
7081
|
OrderId: orderId,
|
|
7067
7082
|
CustomerId: customerId,
|
|
7083
|
+
OrderStages: orderStages,
|
|
7068
7084
|
PageNumber: pageNumber,
|
|
7069
7085
|
Take: take,
|
|
7070
7086
|
Skip: skip,
|
|
@@ -7093,6 +7109,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7093
7109
|
dealId,
|
|
7094
7110
|
orderId,
|
|
7095
7111
|
customerId,
|
|
7112
|
+
orderStages,
|
|
7096
7113
|
pageNumber,
|
|
7097
7114
|
take,
|
|
7098
7115
|
skip,
|
|
@@ -7112,6 +7129,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7112
7129
|
DealId: dealId,
|
|
7113
7130
|
OrderId: orderId,
|
|
7114
7131
|
CustomerId: customerId,
|
|
7132
|
+
OrderStages: orderStages,
|
|
7115
7133
|
PageNumber: pageNumber,
|
|
7116
7134
|
Take: take,
|
|
7117
7135
|
Skip: skip,
|
|
@@ -7140,6 +7158,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7140
7158
|
dealId,
|
|
7141
7159
|
orderId,
|
|
7142
7160
|
customerId,
|
|
7161
|
+
orderStages,
|
|
7143
7162
|
pageNumber,
|
|
7144
7163
|
take,
|
|
7145
7164
|
skip,
|
|
@@ -7159,6 +7178,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7159
7178
|
DealId: dealId,
|
|
7160
7179
|
OrderId: orderId,
|
|
7161
7180
|
CustomerId: customerId,
|
|
7181
|
+
OrderStages: orderStages,
|
|
7162
7182
|
PageNumber: pageNumber,
|
|
7163
7183
|
Take: take,
|
|
7164
7184
|
Skip: skip,
|
|
@@ -9213,6 +9233,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9213
9233
|
activityType,
|
|
9214
9234
|
includeNextOpportunity,
|
|
9215
9235
|
featured,
|
|
9236
|
+
_private,
|
|
9216
9237
|
searchGeoCenter,
|
|
9217
9238
|
openactiveActivityId,
|
|
9218
9239
|
activityId,
|
|
@@ -9229,8 +9250,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9229
9250
|
priceTotalGte,
|
|
9230
9251
|
priceTotalLte,
|
|
9231
9252
|
timeOfDay,
|
|
9232
|
-
|
|
9233
|
-
|
|
9253
|
+
startDateTimeGte,
|
|
9254
|
+
endDateTimeLte,
|
|
9234
9255
|
gender,
|
|
9235
9256
|
periodsOfWeek,
|
|
9236
9257
|
additionalSupport,
|
|
@@ -9262,6 +9283,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9262
9283
|
ActivityType: activityType,
|
|
9263
9284
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
9264
9285
|
Featured: featured,
|
|
9286
|
+
Private: _private,
|
|
9265
9287
|
SearchGeoCenter: searchGeoCenter,
|
|
9266
9288
|
OpenactiveActivityId: openactiveActivityId,
|
|
9267
9289
|
ActivityId: activityId,
|
|
@@ -9278,8 +9300,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9278
9300
|
PriceTotalGTE: priceTotalGte,
|
|
9279
9301
|
PriceTotalLTE: priceTotalLte,
|
|
9280
9302
|
TimeOfDay: timeOfDay,
|
|
9281
|
-
|
|
9282
|
-
|
|
9303
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
9304
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
9283
9305
|
Gender: gender,
|
|
9284
9306
|
PeriodsOfWeek: periodsOfWeek,
|
|
9285
9307
|
AdditionalSupport: additionalSupport,
|
|
@@ -9341,6 +9363,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9341
9363
|
activityType,
|
|
9342
9364
|
includeNextOpportunity,
|
|
9343
9365
|
featured,
|
|
9366
|
+
_private,
|
|
9344
9367
|
searchGeoCenter,
|
|
9345
9368
|
openactiveActivityId,
|
|
9346
9369
|
activityId,
|
|
@@ -9357,8 +9380,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9357
9380
|
priceTotalGte,
|
|
9358
9381
|
priceTotalLte,
|
|
9359
9382
|
timeOfDay,
|
|
9360
|
-
|
|
9361
|
-
|
|
9383
|
+
startDateTimeGte,
|
|
9384
|
+
endDateTimeLte,
|
|
9362
9385
|
gender,
|
|
9363
9386
|
periodsOfWeek,
|
|
9364
9387
|
additionalSupport,
|
|
@@ -9390,6 +9413,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9390
9413
|
ActivityType: activityType,
|
|
9391
9414
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
9392
9415
|
Featured: featured,
|
|
9416
|
+
Private: _private,
|
|
9393
9417
|
SearchGeoCenter: searchGeoCenter,
|
|
9394
9418
|
OpenactiveActivityId: openactiveActivityId,
|
|
9395
9419
|
ActivityId: activityId,
|
|
@@ -9406,8 +9430,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9406
9430
|
PriceTotalGTE: priceTotalGte,
|
|
9407
9431
|
PriceTotalLTE: priceTotalLte,
|
|
9408
9432
|
TimeOfDay: timeOfDay,
|
|
9409
|
-
|
|
9410
|
-
|
|
9433
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
9434
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
9411
9435
|
Gender: gender,
|
|
9412
9436
|
PeriodsOfWeek: periodsOfWeek,
|
|
9413
9437
|
AdditionalSupport: additionalSupport,
|
|
@@ -9448,6 +9472,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9448
9472
|
activityType,
|
|
9449
9473
|
includeNextOpportunity,
|
|
9450
9474
|
featured,
|
|
9475
|
+
_private,
|
|
9451
9476
|
searchGeoCenter,
|
|
9452
9477
|
openactiveActivityId,
|
|
9453
9478
|
activityId,
|
|
@@ -9464,8 +9489,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9464
9489
|
priceTotalGte,
|
|
9465
9490
|
priceTotalLte,
|
|
9466
9491
|
timeOfDay,
|
|
9467
|
-
|
|
9468
|
-
|
|
9492
|
+
startDateTimeGte,
|
|
9493
|
+
endDateTimeLte,
|
|
9469
9494
|
gender,
|
|
9470
9495
|
periodsOfWeek,
|
|
9471
9496
|
additionalSupport,
|
|
@@ -9497,6 +9522,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9497
9522
|
ActivityType: activityType,
|
|
9498
9523
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
9499
9524
|
Featured: featured,
|
|
9525
|
+
Private: _private,
|
|
9500
9526
|
SearchGeoCenter: searchGeoCenter,
|
|
9501
9527
|
OpenactiveActivityId: openactiveActivityId,
|
|
9502
9528
|
ActivityId: activityId,
|
|
@@ -9513,8 +9539,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9513
9539
|
PriceTotalGTE: priceTotalGte,
|
|
9514
9540
|
PriceTotalLTE: priceTotalLte,
|
|
9515
9541
|
TimeOfDay: timeOfDay,
|
|
9516
|
-
|
|
9517
|
-
|
|
9542
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
9543
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
9518
9544
|
Gender: gender,
|
|
9519
9545
|
PeriodsOfWeek: periodsOfWeek,
|
|
9520
9546
|
AdditionalSupport: additionalSupport,
|
|
@@ -9555,6 +9581,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9555
9581
|
activityType,
|
|
9556
9582
|
includeNextOpportunity,
|
|
9557
9583
|
featured,
|
|
9584
|
+
_private,
|
|
9558
9585
|
searchGeoCenter,
|
|
9559
9586
|
openactiveActivityId,
|
|
9560
9587
|
activityId,
|
|
@@ -9571,8 +9598,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9571
9598
|
priceTotalGte,
|
|
9572
9599
|
priceTotalLte,
|
|
9573
9600
|
timeOfDay,
|
|
9574
|
-
|
|
9575
|
-
|
|
9601
|
+
startDateTimeGte,
|
|
9602
|
+
endDateTimeLte,
|
|
9576
9603
|
gender,
|
|
9577
9604
|
periodsOfWeek,
|
|
9578
9605
|
additionalSupport,
|
|
@@ -9604,6 +9631,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9604
9631
|
ActivityType: activityType,
|
|
9605
9632
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
9606
9633
|
Featured: featured,
|
|
9634
|
+
Private: _private,
|
|
9607
9635
|
SearchGeoCenter: searchGeoCenter,
|
|
9608
9636
|
OpenactiveActivityId: openactiveActivityId,
|
|
9609
9637
|
ActivityId: activityId,
|
|
@@ -9620,8 +9648,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9620
9648
|
PriceTotalGTE: priceTotalGte,
|
|
9621
9649
|
PriceTotalLTE: priceTotalLte,
|
|
9622
9650
|
TimeOfDay: timeOfDay,
|
|
9623
|
-
|
|
9624
|
-
|
|
9651
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
9652
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
9625
9653
|
Gender: gender,
|
|
9626
9654
|
PeriodsOfWeek: periodsOfWeek,
|
|
9627
9655
|
AdditionalSupport: additionalSupport,
|
|
@@ -9662,6 +9690,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9662
9690
|
activityType,
|
|
9663
9691
|
includeNextOpportunity,
|
|
9664
9692
|
featured,
|
|
9693
|
+
_private,
|
|
9665
9694
|
searchGeoCenter,
|
|
9666
9695
|
openactiveActivityId,
|
|
9667
9696
|
activityId,
|
|
@@ -9678,8 +9707,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9678
9707
|
priceTotalGte,
|
|
9679
9708
|
priceTotalLte,
|
|
9680
9709
|
timeOfDay,
|
|
9681
|
-
|
|
9682
|
-
|
|
9710
|
+
startDateTimeGte,
|
|
9711
|
+
endDateTimeLte,
|
|
9683
9712
|
gender,
|
|
9684
9713
|
periodsOfWeek,
|
|
9685
9714
|
additionalSupport,
|
|
@@ -9711,6 +9740,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9711
9740
|
ActivityType: activityType,
|
|
9712
9741
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
9713
9742
|
Featured: featured,
|
|
9743
|
+
Private: _private,
|
|
9714
9744
|
SearchGeoCenter: searchGeoCenter,
|
|
9715
9745
|
OpenactiveActivityId: openactiveActivityId,
|
|
9716
9746
|
ActivityId: activityId,
|
|
@@ -9727,8 +9757,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9727
9757
|
PriceTotalGTE: priceTotalGte,
|
|
9728
9758
|
PriceTotalLTE: priceTotalLte,
|
|
9729
9759
|
TimeOfDay: timeOfDay,
|
|
9730
|
-
|
|
9731
|
-
|
|
9760
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
9761
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
9732
9762
|
Gender: gender,
|
|
9733
9763
|
PeriodsOfWeek: periodsOfWeek,
|
|
9734
9764
|
AdditionalSupport: additionalSupport,
|
|
@@ -9769,6 +9799,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9769
9799
|
activityType,
|
|
9770
9800
|
includeNextOpportunity,
|
|
9771
9801
|
featured,
|
|
9802
|
+
_private,
|
|
9772
9803
|
searchGeoCenter,
|
|
9773
9804
|
openactiveActivityId,
|
|
9774
9805
|
activityId,
|
|
@@ -9785,8 +9816,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9785
9816
|
priceTotalGte,
|
|
9786
9817
|
priceTotalLte,
|
|
9787
9818
|
timeOfDay,
|
|
9788
|
-
|
|
9789
|
-
|
|
9819
|
+
startDateTimeGte,
|
|
9820
|
+
endDateTimeLte,
|
|
9790
9821
|
gender,
|
|
9791
9822
|
periodsOfWeek,
|
|
9792
9823
|
additionalSupport,
|
|
@@ -9818,6 +9849,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9818
9849
|
ActivityType: activityType,
|
|
9819
9850
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
9820
9851
|
Featured: featured,
|
|
9852
|
+
Private: _private,
|
|
9821
9853
|
SearchGeoCenter: searchGeoCenter,
|
|
9822
9854
|
OpenactiveActivityId: openactiveActivityId,
|
|
9823
9855
|
ActivityId: activityId,
|
|
@@ -9834,8 +9866,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9834
9866
|
PriceTotalGTE: priceTotalGte,
|
|
9835
9867
|
PriceTotalLTE: priceTotalLte,
|
|
9836
9868
|
TimeOfDay: timeOfDay,
|
|
9837
|
-
|
|
9838
|
-
|
|
9869
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
9870
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
9839
9871
|
Gender: gender,
|
|
9840
9872
|
PeriodsOfWeek: periodsOfWeek,
|
|
9841
9873
|
AdditionalSupport: additionalSupport,
|
|
@@ -20570,6 +20602,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20570
20602
|
futureOnly,
|
|
20571
20603
|
online,
|
|
20572
20604
|
featured,
|
|
20605
|
+
_private,
|
|
20573
20606
|
hasAvailability,
|
|
20574
20607
|
orderFirstNameContains,
|
|
20575
20608
|
orderLastNameContains,
|
|
@@ -20620,6 +20653,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20620
20653
|
FutureOnly: futureOnly,
|
|
20621
20654
|
Online: online,
|
|
20622
20655
|
Featured: featured,
|
|
20656
|
+
Private: _private,
|
|
20623
20657
|
HasAvailability: hasAvailability,
|
|
20624
20658
|
OrderFirstNameContains: orderFirstNameContains,
|
|
20625
20659
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -20773,6 +20807,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20773
20807
|
futureOnly,
|
|
20774
20808
|
online,
|
|
20775
20809
|
featured,
|
|
20810
|
+
_private,
|
|
20776
20811
|
hasAvailability,
|
|
20777
20812
|
orderFirstNameContains,
|
|
20778
20813
|
orderLastNameContains,
|
|
@@ -20823,6 +20858,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20823
20858
|
FutureOnly: futureOnly,
|
|
20824
20859
|
Online: online,
|
|
20825
20860
|
Featured: featured,
|
|
20861
|
+
Private: _private,
|
|
20826
20862
|
HasAvailability: hasAvailability,
|
|
20827
20863
|
OrderFirstNameContains: orderFirstNameContains,
|
|
20828
20864
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -21483,6 +21519,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21483
21519
|
activityType,
|
|
21484
21520
|
includeNextOpportunity,
|
|
21485
21521
|
featured,
|
|
21522
|
+
_private,
|
|
21486
21523
|
searchGeoCenter,
|
|
21487
21524
|
openactiveActivityId,
|
|
21488
21525
|
activityId,
|
|
@@ -21499,8 +21536,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21499
21536
|
priceTotalGte,
|
|
21500
21537
|
priceTotalLte,
|
|
21501
21538
|
timeOfDay,
|
|
21502
|
-
|
|
21503
|
-
|
|
21539
|
+
startDateTimeGte,
|
|
21540
|
+
endDateTimeLte,
|
|
21504
21541
|
gender,
|
|
21505
21542
|
periodsOfWeek,
|
|
21506
21543
|
additionalSupport,
|
|
@@ -21535,6 +21572,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21535
21572
|
ActivityType: activityType,
|
|
21536
21573
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
21537
21574
|
Featured: featured,
|
|
21575
|
+
Private: _private,
|
|
21538
21576
|
SearchGeoCenter: searchGeoCenter,
|
|
21539
21577
|
OpenactiveActivityId: openactiveActivityId,
|
|
21540
21578
|
ActivityId: activityId,
|
|
@@ -21551,8 +21589,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21551
21589
|
PriceTotalGTE: priceTotalGte,
|
|
21552
21590
|
PriceTotalLTE: priceTotalLte,
|
|
21553
21591
|
TimeOfDay: timeOfDay,
|
|
21554
|
-
|
|
21555
|
-
|
|
21592
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
21593
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
21556
21594
|
Gender: gender,
|
|
21557
21595
|
PeriodsOfWeek: periodsOfWeek,
|
|
21558
21596
|
AdditionalSupport: additionalSupport,
|
|
@@ -21593,6 +21631,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21593
21631
|
activityType,
|
|
21594
21632
|
includeNextOpportunity,
|
|
21595
21633
|
featured,
|
|
21634
|
+
_private,
|
|
21596
21635
|
searchGeoCenter,
|
|
21597
21636
|
openactiveActivityId,
|
|
21598
21637
|
activityId,
|
|
@@ -21609,8 +21648,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21609
21648
|
priceTotalGte,
|
|
21610
21649
|
priceTotalLte,
|
|
21611
21650
|
timeOfDay,
|
|
21612
|
-
|
|
21613
|
-
|
|
21651
|
+
startDateTimeGte,
|
|
21652
|
+
endDateTimeLte,
|
|
21614
21653
|
gender,
|
|
21615
21654
|
periodsOfWeek,
|
|
21616
21655
|
additionalSupport,
|
|
@@ -21642,6 +21681,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21642
21681
|
ActivityType: activityType,
|
|
21643
21682
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
21644
21683
|
Featured: featured,
|
|
21684
|
+
Private: _private,
|
|
21645
21685
|
SearchGeoCenter: searchGeoCenter,
|
|
21646
21686
|
OpenactiveActivityId: openactiveActivityId,
|
|
21647
21687
|
ActivityId: activityId,
|
|
@@ -21658,8 +21698,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21658
21698
|
PriceTotalGTE: priceTotalGte,
|
|
21659
21699
|
PriceTotalLTE: priceTotalLte,
|
|
21660
21700
|
TimeOfDay: timeOfDay,
|
|
21661
|
-
|
|
21662
|
-
|
|
21701
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
21702
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
21663
21703
|
Gender: gender,
|
|
21664
21704
|
PeriodsOfWeek: periodsOfWeek,
|
|
21665
21705
|
AdditionalSupport: additionalSupport,
|
|
@@ -21701,6 +21741,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21701
21741
|
activityType,
|
|
21702
21742
|
includeNextOpportunity,
|
|
21703
21743
|
featured,
|
|
21744
|
+
_private,
|
|
21704
21745
|
searchGeoCenter,
|
|
21705
21746
|
openactiveActivityId,
|
|
21706
21747
|
activityId,
|
|
@@ -21717,8 +21758,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21717
21758
|
priceTotalGte,
|
|
21718
21759
|
priceTotalLte,
|
|
21719
21760
|
timeOfDay,
|
|
21720
|
-
|
|
21721
|
-
|
|
21761
|
+
startDateTimeGte,
|
|
21762
|
+
endDateTimeLte,
|
|
21722
21763
|
gender,
|
|
21723
21764
|
periodsOfWeek,
|
|
21724
21765
|
additionalSupport,
|
|
@@ -21753,6 +21794,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21753
21794
|
ActivityType: activityType,
|
|
21754
21795
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
21755
21796
|
Featured: featured,
|
|
21797
|
+
Private: _private,
|
|
21756
21798
|
SearchGeoCenter: searchGeoCenter,
|
|
21757
21799
|
OpenactiveActivityId: openactiveActivityId,
|
|
21758
21800
|
ActivityId: activityId,
|
|
@@ -21769,8 +21811,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21769
21811
|
PriceTotalGTE: priceTotalGte,
|
|
21770
21812
|
PriceTotalLTE: priceTotalLte,
|
|
21771
21813
|
TimeOfDay: timeOfDay,
|
|
21772
|
-
|
|
21773
|
-
|
|
21814
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
21815
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
21774
21816
|
Gender: gender,
|
|
21775
21817
|
PeriodsOfWeek: periodsOfWeek,
|
|
21776
21818
|
AdditionalSupport: additionalSupport,
|
|
@@ -21839,6 +21881,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21839
21881
|
activityType,
|
|
21840
21882
|
includeNextOpportunity,
|
|
21841
21883
|
featured,
|
|
21884
|
+
_private,
|
|
21842
21885
|
searchGeoCenter,
|
|
21843
21886
|
openactiveActivityId,
|
|
21844
21887
|
activityId,
|
|
@@ -21855,8 +21898,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21855
21898
|
priceTotalGte,
|
|
21856
21899
|
priceTotalLte,
|
|
21857
21900
|
timeOfDay,
|
|
21858
|
-
|
|
21859
|
-
|
|
21901
|
+
startDateTimeGte,
|
|
21902
|
+
endDateTimeLte,
|
|
21860
21903
|
gender,
|
|
21861
21904
|
periodsOfWeek,
|
|
21862
21905
|
additionalSupport,
|
|
@@ -21891,6 +21934,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21891
21934
|
ActivityType: activityType,
|
|
21892
21935
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
21893
21936
|
Featured: featured,
|
|
21937
|
+
Private: _private,
|
|
21894
21938
|
SearchGeoCenter: searchGeoCenter,
|
|
21895
21939
|
OpenactiveActivityId: openactiveActivityId,
|
|
21896
21940
|
ActivityId: activityId,
|
|
@@ -21907,8 +21951,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21907
21951
|
PriceTotalGTE: priceTotalGte,
|
|
21908
21952
|
PriceTotalLTE: priceTotalLte,
|
|
21909
21953
|
TimeOfDay: timeOfDay,
|
|
21910
|
-
|
|
21911
|
-
|
|
21954
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
21955
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
21912
21956
|
Gender: gender,
|
|
21913
21957
|
PeriodsOfWeek: periodsOfWeek,
|
|
21914
21958
|
AdditionalSupport: additionalSupport,
|
|
@@ -22366,6 +22410,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22366
22410
|
futureOnly,
|
|
22367
22411
|
online,
|
|
22368
22412
|
featured,
|
|
22413
|
+
_private,
|
|
22369
22414
|
programmeId,
|
|
22370
22415
|
includeNextOpportunity,
|
|
22371
22416
|
allowTemplating,
|
|
@@ -22382,8 +22427,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22382
22427
|
priceTotalGte,
|
|
22383
22428
|
priceTotalLte,
|
|
22384
22429
|
timeOfDay,
|
|
22385
|
-
|
|
22386
|
-
|
|
22430
|
+
startDateTimeGte,
|
|
22431
|
+
endDateTimeLte,
|
|
22387
22432
|
gender,
|
|
22388
22433
|
periodsOfWeek,
|
|
22389
22434
|
searchGeoCenter,
|
|
@@ -22413,6 +22458,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22413
22458
|
FutureOnly: futureOnly,
|
|
22414
22459
|
Online: online,
|
|
22415
22460
|
Featured: featured,
|
|
22461
|
+
Private: _private,
|
|
22416
22462
|
ProgrammeId: programmeId,
|
|
22417
22463
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
22418
22464
|
AllowTemplating: allowTemplating,
|
|
@@ -22429,8 +22475,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22429
22475
|
PriceTotalGTE: priceTotalGte,
|
|
22430
22476
|
PriceTotalLTE: priceTotalLte,
|
|
22431
22477
|
TimeOfDay: timeOfDay,
|
|
22432
|
-
|
|
22433
|
-
|
|
22478
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
22479
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
22434
22480
|
Gender: gender,
|
|
22435
22481
|
PeriodsOfWeek: periodsOfWeek,
|
|
22436
22482
|
SearchGeoCenter: searchGeoCenter,
|
|
@@ -24857,6 +24903,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24857
24903
|
futureOnly,
|
|
24858
24904
|
online,
|
|
24859
24905
|
featured,
|
|
24906
|
+
_private,
|
|
24860
24907
|
programmeId,
|
|
24861
24908
|
includeNextOpportunity,
|
|
24862
24909
|
allowTemplating,
|
|
@@ -24873,8 +24920,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24873
24920
|
priceTotalGte,
|
|
24874
24921
|
priceTotalLte,
|
|
24875
24922
|
timeOfDay,
|
|
24876
|
-
|
|
24877
|
-
|
|
24923
|
+
startDateTimeGte,
|
|
24924
|
+
endDateTimeLte,
|
|
24878
24925
|
gender,
|
|
24879
24926
|
periodsOfWeek,
|
|
24880
24927
|
searchGeoCenter,
|
|
@@ -24907,6 +24954,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24907
24954
|
FutureOnly: futureOnly,
|
|
24908
24955
|
Online: online,
|
|
24909
24956
|
Featured: featured,
|
|
24957
|
+
Private: _private,
|
|
24910
24958
|
ProgrammeId: programmeId,
|
|
24911
24959
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
24912
24960
|
AllowTemplating: allowTemplating,
|
|
@@ -24923,8 +24971,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24923
24971
|
PriceTotalGTE: priceTotalGte,
|
|
24924
24972
|
PriceTotalLTE: priceTotalLte,
|
|
24925
24973
|
TimeOfDay: timeOfDay,
|
|
24926
|
-
|
|
24927
|
-
|
|
24974
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
24975
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
24928
24976
|
Gender: gender,
|
|
24929
24977
|
PeriodsOfWeek: periodsOfWeek,
|
|
24930
24978
|
SearchGeoCenter: searchGeoCenter,
|
|
@@ -25186,6 +25234,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
25186
25234
|
futureOnly,
|
|
25187
25235
|
online,
|
|
25188
25236
|
featured,
|
|
25237
|
+
_private,
|
|
25189
25238
|
programmeId,
|
|
25190
25239
|
includeNextOpportunity,
|
|
25191
25240
|
allowTemplating,
|
|
@@ -25202,8 +25251,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
25202
25251
|
priceTotalGte,
|
|
25203
25252
|
priceTotalLte,
|
|
25204
25253
|
timeOfDay,
|
|
25205
|
-
|
|
25206
|
-
|
|
25254
|
+
startDateTimeGte,
|
|
25255
|
+
endDateTimeLte,
|
|
25207
25256
|
gender,
|
|
25208
25257
|
periodsOfWeek,
|
|
25209
25258
|
searchGeoCenter,
|
|
@@ -25236,6 +25285,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
25236
25285
|
FutureOnly: futureOnly,
|
|
25237
25286
|
Online: online,
|
|
25238
25287
|
Featured: featured,
|
|
25288
|
+
Private: _private,
|
|
25239
25289
|
ProgrammeId: programmeId,
|
|
25240
25290
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
25241
25291
|
AllowTemplating: allowTemplating,
|
|
@@ -25252,8 +25302,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
25252
25302
|
PriceTotalGTE: priceTotalGte,
|
|
25253
25303
|
PriceTotalLTE: priceTotalLte,
|
|
25254
25304
|
TimeOfDay: timeOfDay,
|
|
25255
|
-
|
|
25256
|
-
|
|
25305
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
25306
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
25257
25307
|
Gender: gender,
|
|
25258
25308
|
PeriodsOfWeek: periodsOfWeek,
|
|
25259
25309
|
SearchGeoCenter: searchGeoCenter,
|
|
@@ -27608,6 +27658,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27608
27658
|
scheduledSessionId,
|
|
27609
27659
|
courseId,
|
|
27610
27660
|
email,
|
|
27661
|
+
futureOnly,
|
|
27611
27662
|
pageNumber,
|
|
27612
27663
|
take,
|
|
27613
27664
|
skip,
|
|
@@ -27632,6 +27683,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27632
27683
|
ScheduledSessionId: scheduledSessionId,
|
|
27633
27684
|
CourseId: courseId,
|
|
27634
27685
|
Email: email,
|
|
27686
|
+
FutureOnly: futureOnly,
|
|
27635
27687
|
PageNumber: pageNumber,
|
|
27636
27688
|
Take: take,
|
|
27637
27689
|
Skip: skip,
|
|
@@ -27713,6 +27765,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27713
27765
|
scheduledSessionId,
|
|
27714
27766
|
courseId,
|
|
27715
27767
|
email,
|
|
27768
|
+
futureOnly,
|
|
27716
27769
|
pageNumber,
|
|
27717
27770
|
take,
|
|
27718
27771
|
skip,
|
|
@@ -27737,6 +27790,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27737
27790
|
ScheduledSessionId: scheduledSessionId,
|
|
27738
27791
|
CourseId: courseId,
|
|
27739
27792
|
Email: email,
|
|
27793
|
+
FutureOnly: futureOnly,
|
|
27740
27794
|
PageNumber: pageNumber,
|
|
27741
27795
|
Take: take,
|
|
27742
27796
|
Skip: skip,
|
|
@@ -30737,6 +30791,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
30737
30791
|
futureOnly,
|
|
30738
30792
|
online,
|
|
30739
30793
|
featured,
|
|
30794
|
+
_private,
|
|
30740
30795
|
programmeId,
|
|
30741
30796
|
includeNextOpportunity,
|
|
30742
30797
|
allowTemplating,
|
|
@@ -30753,8 +30808,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
30753
30808
|
priceTotalGte,
|
|
30754
30809
|
priceTotalLte,
|
|
30755
30810
|
timeOfDay,
|
|
30756
|
-
|
|
30757
|
-
|
|
30811
|
+
startDateTimeGte,
|
|
30812
|
+
endDateTimeLte,
|
|
30758
30813
|
gender,
|
|
30759
30814
|
periodsOfWeek,
|
|
30760
30815
|
searchGeoCenter,
|
|
@@ -30784,6 +30839,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
30784
30839
|
FutureOnly: futureOnly,
|
|
30785
30840
|
Online: online,
|
|
30786
30841
|
Featured: featured,
|
|
30842
|
+
Private: _private,
|
|
30787
30843
|
ProgrammeId: programmeId,
|
|
30788
30844
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
30789
30845
|
AllowTemplating: allowTemplating,
|
|
@@ -30800,8 +30856,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
30800
30856
|
PriceTotalGTE: priceTotalGte,
|
|
30801
30857
|
PriceTotalLTE: priceTotalLte,
|
|
30802
30858
|
TimeOfDay: timeOfDay,
|
|
30803
|
-
|
|
30804
|
-
|
|
30859
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
30860
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
30805
30861
|
Gender: gender,
|
|
30806
30862
|
PeriodsOfWeek: periodsOfWeek,
|
|
30807
30863
|
SearchGeoCenter: searchGeoCenter,
|
|
@@ -30903,6 +30959,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
30903
30959
|
futureOnly,
|
|
30904
30960
|
online,
|
|
30905
30961
|
featured,
|
|
30962
|
+
_private,
|
|
30906
30963
|
programmeId,
|
|
30907
30964
|
includeNextOpportunity,
|
|
30908
30965
|
allowTemplating,
|
|
@@ -30919,8 +30976,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
30919
30976
|
priceTotalGte,
|
|
30920
30977
|
priceTotalLte,
|
|
30921
30978
|
timeOfDay,
|
|
30922
|
-
|
|
30923
|
-
|
|
30979
|
+
startDateTimeGte,
|
|
30980
|
+
endDateTimeLte,
|
|
30924
30981
|
gender,
|
|
30925
30982
|
periodsOfWeek,
|
|
30926
30983
|
searchGeoCenter,
|
|
@@ -30950,6 +31007,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
30950
31007
|
FutureOnly: futureOnly,
|
|
30951
31008
|
Online: online,
|
|
30952
31009
|
Featured: featured,
|
|
31010
|
+
Private: _private,
|
|
30953
31011
|
ProgrammeId: programmeId,
|
|
30954
31012
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
30955
31013
|
AllowTemplating: allowTemplating,
|
|
@@ -30966,8 +31024,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
30966
31024
|
PriceTotalGTE: priceTotalGte,
|
|
30967
31025
|
PriceTotalLTE: priceTotalLte,
|
|
30968
31026
|
TimeOfDay: timeOfDay,
|
|
30969
|
-
|
|
30970
|
-
|
|
31027
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
31028
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
30971
31029
|
Gender: gender,
|
|
30972
31030
|
PeriodsOfWeek: periodsOfWeek,
|
|
30973
31031
|
SearchGeoCenter: searchGeoCenter,
|
|
@@ -31006,6 +31064,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
31006
31064
|
futureOnly,
|
|
31007
31065
|
online,
|
|
31008
31066
|
featured,
|
|
31067
|
+
_private,
|
|
31009
31068
|
programmeId,
|
|
31010
31069
|
includeNextOpportunity,
|
|
31011
31070
|
allowTemplating,
|
|
@@ -31022,8 +31081,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
31022
31081
|
priceTotalGte,
|
|
31023
31082
|
priceTotalLte,
|
|
31024
31083
|
timeOfDay,
|
|
31025
|
-
|
|
31026
|
-
|
|
31084
|
+
startDateTimeGte,
|
|
31085
|
+
endDateTimeLte,
|
|
31027
31086
|
gender,
|
|
31028
31087
|
periodsOfWeek,
|
|
31029
31088
|
searchGeoCenter,
|
|
@@ -31053,6 +31112,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
31053
31112
|
FutureOnly: futureOnly,
|
|
31054
31113
|
Online: online,
|
|
31055
31114
|
Featured: featured,
|
|
31115
|
+
Private: _private,
|
|
31056
31116
|
ProgrammeId: programmeId,
|
|
31057
31117
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
31058
31118
|
AllowTemplating: allowTemplating,
|
|
@@ -31069,8 +31129,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
31069
31129
|
PriceTotalGTE: priceTotalGte,
|
|
31070
31130
|
PriceTotalLTE: priceTotalLte,
|
|
31071
31131
|
TimeOfDay: timeOfDay,
|
|
31072
|
-
|
|
31073
|
-
|
|
31132
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
31133
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
31074
31134
|
Gender: gender,
|
|
31075
31135
|
PeriodsOfWeek: periodsOfWeek,
|
|
31076
31136
|
SearchGeoCenter: searchGeoCenter,
|
|
@@ -31109,6 +31169,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
31109
31169
|
futureOnly,
|
|
31110
31170
|
online,
|
|
31111
31171
|
featured,
|
|
31172
|
+
_private,
|
|
31112
31173
|
programmeId,
|
|
31113
31174
|
includeNextOpportunity,
|
|
31114
31175
|
allowTemplating,
|
|
@@ -31125,8 +31186,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
31125
31186
|
priceTotalGte,
|
|
31126
31187
|
priceTotalLte,
|
|
31127
31188
|
timeOfDay,
|
|
31128
|
-
|
|
31129
|
-
|
|
31189
|
+
startDateTimeGte,
|
|
31190
|
+
endDateTimeLte,
|
|
31130
31191
|
gender,
|
|
31131
31192
|
periodsOfWeek,
|
|
31132
31193
|
searchGeoCenter,
|
|
@@ -31156,6 +31217,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
31156
31217
|
FutureOnly: futureOnly,
|
|
31157
31218
|
Online: online,
|
|
31158
31219
|
Featured: featured,
|
|
31220
|
+
Private: _private,
|
|
31159
31221
|
ProgrammeId: programmeId,
|
|
31160
31222
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
31161
31223
|
AllowTemplating: allowTemplating,
|
|
@@ -31172,8 +31234,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
31172
31234
|
PriceTotalGTE: priceTotalGte,
|
|
31173
31235
|
PriceTotalLTE: priceTotalLte,
|
|
31174
31236
|
TimeOfDay: timeOfDay,
|
|
31175
|
-
|
|
31176
|
-
|
|
31237
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
31238
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
31177
31239
|
Gender: gender,
|
|
31178
31240
|
PeriodsOfWeek: periodsOfWeek,
|
|
31179
31241
|
SearchGeoCenter: searchGeoCenter,
|
|
@@ -31212,6 +31274,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
31212
31274
|
futureOnly,
|
|
31213
31275
|
online,
|
|
31214
31276
|
featured,
|
|
31277
|
+
_private,
|
|
31215
31278
|
programmeId,
|
|
31216
31279
|
includeNextOpportunity,
|
|
31217
31280
|
allowTemplating,
|
|
@@ -31228,8 +31291,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
31228
31291
|
priceTotalGte,
|
|
31229
31292
|
priceTotalLte,
|
|
31230
31293
|
timeOfDay,
|
|
31231
|
-
|
|
31232
|
-
|
|
31294
|
+
startDateTimeGte,
|
|
31295
|
+
endDateTimeLte,
|
|
31233
31296
|
gender,
|
|
31234
31297
|
periodsOfWeek,
|
|
31235
31298
|
searchGeoCenter,
|
|
@@ -31259,6 +31322,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
31259
31322
|
FutureOnly: futureOnly,
|
|
31260
31323
|
Online: online,
|
|
31261
31324
|
Featured: featured,
|
|
31325
|
+
Private: _private,
|
|
31262
31326
|
ProgrammeId: programmeId,
|
|
31263
31327
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
31264
31328
|
AllowTemplating: allowTemplating,
|
|
@@ -31275,8 +31339,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
31275
31339
|
PriceTotalGTE: priceTotalGte,
|
|
31276
31340
|
PriceTotalLTE: priceTotalLte,
|
|
31277
31341
|
TimeOfDay: timeOfDay,
|
|
31278
|
-
|
|
31279
|
-
|
|
31342
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
31343
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
31280
31344
|
Gender: gender,
|
|
31281
31345
|
PeriodsOfWeek: periodsOfWeek,
|
|
31282
31346
|
SearchGeoCenter: searchGeoCenter,
|
|
@@ -44394,6 +44458,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44394
44458
|
scheduledSessionId,
|
|
44395
44459
|
courseId,
|
|
44396
44460
|
email,
|
|
44461
|
+
futureOnly,
|
|
44397
44462
|
pageNumber,
|
|
44398
44463
|
take,
|
|
44399
44464
|
skip,
|
|
@@ -44415,6 +44480,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44415
44480
|
ScheduledSessionId: scheduledSessionId,
|
|
44416
44481
|
CourseId: courseId,
|
|
44417
44482
|
Email: email,
|
|
44483
|
+
FutureOnly: futureOnly,
|
|
44418
44484
|
PageNumber: pageNumber,
|
|
44419
44485
|
Take: take,
|
|
44420
44486
|
Skip: skip,
|
|
@@ -44508,6 +44574,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44508
44574
|
scheduledSessionId,
|
|
44509
44575
|
courseId,
|
|
44510
44576
|
email,
|
|
44577
|
+
futureOnly,
|
|
44511
44578
|
pageNumber,
|
|
44512
44579
|
take,
|
|
44513
44580
|
skip,
|
|
@@ -44529,6 +44596,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44529
44596
|
ScheduledSessionId: scheduledSessionId,
|
|
44530
44597
|
CourseId: courseId,
|
|
44531
44598
|
Email: email,
|
|
44599
|
+
FutureOnly: futureOnly,
|
|
44532
44600
|
PageNumber: pageNumber,
|
|
44533
44601
|
Take: take,
|
|
44534
44602
|
Skip: skip,
|
|
@@ -44559,6 +44627,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44559
44627
|
scheduledSessionId,
|
|
44560
44628
|
courseId,
|
|
44561
44629
|
email,
|
|
44630
|
+
futureOnly,
|
|
44562
44631
|
pageNumber,
|
|
44563
44632
|
take,
|
|
44564
44633
|
skip,
|
|
@@ -44580,6 +44649,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44580
44649
|
ScheduledSessionId: scheduledSessionId,
|
|
44581
44650
|
CourseId: courseId,
|
|
44582
44651
|
Email: email,
|
|
44652
|
+
FutureOnly: futureOnly,
|
|
44583
44653
|
PageNumber: pageNumber,
|
|
44584
44654
|
Take: take,
|
|
44585
44655
|
Skip: skip,
|
|
@@ -44610,6 +44680,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44610
44680
|
scheduledSessionId,
|
|
44611
44681
|
courseId,
|
|
44612
44682
|
email,
|
|
44683
|
+
futureOnly,
|
|
44613
44684
|
pageNumber,
|
|
44614
44685
|
take,
|
|
44615
44686
|
skip,
|
|
@@ -44631,6 +44702,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44631
44702
|
ScheduledSessionId: scheduledSessionId,
|
|
44632
44703
|
CourseId: courseId,
|
|
44633
44704
|
Email: email,
|
|
44705
|
+
FutureOnly: futureOnly,
|
|
44634
44706
|
PageNumber: pageNumber,
|
|
44635
44707
|
Take: take,
|
|
44636
44708
|
Skip: skip,
|
|
@@ -44661,6 +44733,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44661
44733
|
scheduledSessionId,
|
|
44662
44734
|
courseId,
|
|
44663
44735
|
email,
|
|
44736
|
+
futureOnly,
|
|
44664
44737
|
pageNumber,
|
|
44665
44738
|
take,
|
|
44666
44739
|
skip,
|
|
@@ -44682,6 +44755,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44682
44755
|
ScheduledSessionId: scheduledSessionId,
|
|
44683
44756
|
CourseId: courseId,
|
|
44684
44757
|
Email: email,
|
|
44758
|
+
FutureOnly: futureOnly,
|
|
44685
44759
|
PageNumber: pageNumber,
|
|
44686
44760
|
Take: take,
|
|
44687
44761
|
Skip: skip,
|
|
@@ -44717,6 +44791,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44717
44791
|
scheduledSessionId,
|
|
44718
44792
|
courseId,
|
|
44719
44793
|
email,
|
|
44794
|
+
futureOnly,
|
|
44720
44795
|
pageNumber,
|
|
44721
44796
|
take,
|
|
44722
44797
|
skip,
|
|
@@ -44739,6 +44814,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44739
44814
|
ScheduledSessionId: scheduledSessionId,
|
|
44740
44815
|
CourseId: courseId,
|
|
44741
44816
|
Email: email,
|
|
44817
|
+
FutureOnly: futureOnly,
|
|
44742
44818
|
PageNumber: pageNumber,
|
|
44743
44819
|
Take: take,
|
|
44744
44820
|
Skip: skip,
|
|
@@ -44760,6 +44836,22 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44760
44836
|
}
|
|
44761
44837
|
});
|
|
44762
44838
|
}
|
|
44839
|
+
/**
|
|
44840
|
+
* Gets waitlist conversion statistics.
|
|
44841
|
+
* @returns WaitlistConversionStatsResponseDto OK
|
|
44842
|
+
* @throws ApiError
|
|
44843
|
+
*/
|
|
44844
|
+
getConversionStats() {
|
|
44845
|
+
return this.httpRequest.request({
|
|
44846
|
+
method: "GET",
|
|
44847
|
+
url: "/api/waitlist-opportunity-report/conversion-stats",
|
|
44848
|
+
errors: {
|
|
44849
|
+
400: `Bad Request`,
|
|
44850
|
+
422: `Unprocessable Content`,
|
|
44851
|
+
500: `Internal Server Error`
|
|
44852
|
+
}
|
|
44853
|
+
});
|
|
44854
|
+
}
|
|
44763
44855
|
/**
|
|
44764
44856
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
44765
44857
|
* @returns WaitlistOpportunityReport OK
|
|
@@ -44871,6 +44963,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44871
44963
|
scheduledSessionId,
|
|
44872
44964
|
courseId,
|
|
44873
44965
|
email,
|
|
44966
|
+
futureOnly,
|
|
44874
44967
|
pageNumber,
|
|
44875
44968
|
take,
|
|
44876
44969
|
skip,
|
|
@@ -44892,6 +44985,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44892
44985
|
ScheduledSessionId: scheduledSessionId,
|
|
44893
44986
|
CourseId: courseId,
|
|
44894
44987
|
Email: email,
|
|
44988
|
+
FutureOnly: futureOnly,
|
|
44895
44989
|
PageNumber: pageNumber,
|
|
44896
44990
|
Take: take,
|
|
44897
44991
|
Skip: skip,
|
|
@@ -44985,6 +45079,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
44985
45079
|
scheduledSessionId,
|
|
44986
45080
|
courseId,
|
|
44987
45081
|
email,
|
|
45082
|
+
futureOnly,
|
|
44988
45083
|
pageNumber,
|
|
44989
45084
|
take,
|
|
44990
45085
|
skip,
|
|
@@ -45006,6 +45101,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45006
45101
|
ScheduledSessionId: scheduledSessionId,
|
|
45007
45102
|
CourseId: courseId,
|
|
45008
45103
|
Email: email,
|
|
45104
|
+
FutureOnly: futureOnly,
|
|
45009
45105
|
PageNumber: pageNumber,
|
|
45010
45106
|
Take: take,
|
|
45011
45107
|
Skip: skip,
|
|
@@ -45036,6 +45132,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45036
45132
|
scheduledSessionId,
|
|
45037
45133
|
courseId,
|
|
45038
45134
|
email,
|
|
45135
|
+
futureOnly,
|
|
45039
45136
|
pageNumber,
|
|
45040
45137
|
take,
|
|
45041
45138
|
skip,
|
|
@@ -45057,6 +45154,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45057
45154
|
ScheduledSessionId: scheduledSessionId,
|
|
45058
45155
|
CourseId: courseId,
|
|
45059
45156
|
Email: email,
|
|
45157
|
+
FutureOnly: futureOnly,
|
|
45060
45158
|
PageNumber: pageNumber,
|
|
45061
45159
|
Take: take,
|
|
45062
45160
|
Skip: skip,
|
|
@@ -45087,6 +45185,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45087
45185
|
scheduledSessionId,
|
|
45088
45186
|
courseId,
|
|
45089
45187
|
email,
|
|
45188
|
+
futureOnly,
|
|
45090
45189
|
pageNumber,
|
|
45091
45190
|
take,
|
|
45092
45191
|
skip,
|
|
@@ -45108,6 +45207,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45108
45207
|
ScheduledSessionId: scheduledSessionId,
|
|
45109
45208
|
CourseId: courseId,
|
|
45110
45209
|
Email: email,
|
|
45210
|
+
FutureOnly: futureOnly,
|
|
45111
45211
|
PageNumber: pageNumber,
|
|
45112
45212
|
Take: take,
|
|
45113
45213
|
Skip: skip,
|
|
@@ -45138,6 +45238,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45138
45238
|
scheduledSessionId,
|
|
45139
45239
|
courseId,
|
|
45140
45240
|
email,
|
|
45241
|
+
futureOnly,
|
|
45141
45242
|
pageNumber,
|
|
45142
45243
|
take,
|
|
45143
45244
|
skip,
|
|
@@ -45159,6 +45260,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45159
45260
|
ScheduledSessionId: scheduledSessionId,
|
|
45160
45261
|
CourseId: courseId,
|
|
45161
45262
|
Email: email,
|
|
45263
|
+
FutureOnly: futureOnly,
|
|
45162
45264
|
PageNumber: pageNumber,
|
|
45163
45265
|
Take: take,
|
|
45164
45266
|
Skip: skip,
|