reach-api-sdk 1.0.191 → 1.0.193
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/reach-sdk.d.ts +515 -73
- package/dist/reach-sdk.js +298 -5
- package/package.json +1 -1
- package/src/apiClient.ts +3 -0
- package/src/definition/swagger.yaml +806 -6
- package/src/index.ts +2 -0
- package/src/models/Course.ts +8 -0
- package/src/models/GenericActivity.ts +4 -0
- package/src/models/Session.ts +8 -0
- package/src/models/TenantWebsiteSetting.ts +3 -0
- package/src/models/UpcomingLayout.ts +12 -0
- package/src/services/BookingService.ts +36 -0
- package/src/services/CoursesService.ts +104 -2
- package/src/services/GenericActivityService.ts +30 -0
- package/src/services/LeasingService.ts +24 -0
- package/src/services/OrderItemsService.ts +48 -0
- package/src/services/OrdersService.ts +24 -0
- package/src/services/PublicBookingService.ts +12 -0
- package/src/services/PublicCalendarService.ts +57 -0
- package/src/services/PublicCoursesService.ts +24 -0
- package/src/services/PublicGenericActivityService.ts +24 -0
- package/src/services/PublicLeasingService.ts +12 -0
- package/src/services/PublicNetworksService.ts +12 -0
- package/src/services/PublicOrderItemsService.ts +24 -0
- package/src/services/PublicOrdersService.ts +12 -0
- package/src/services/PublicScheduledSessionsService.ts +12 -0
- package/src/services/PublicSessionsService.ts +30 -0
- package/src/services/PublicVenuesService.ts +18 -0
- package/src/services/ScheduledSessionsSchedulesService.ts +24 -0
- package/src/services/ScheduledSessionsService.ts +24 -0
- package/src/services/SessionsService.ts +106 -4
- package/src/services/VenuesService.ts +24 -0
package/dist/reach-sdk.js
CHANGED
|
@@ -1797,6 +1797,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
1797
1797
|
orderStages,
|
|
1798
1798
|
orderDateGte,
|
|
1799
1799
|
orderDateLte,
|
|
1800
|
+
endUserIdentityId,
|
|
1800
1801
|
pageNumber,
|
|
1801
1802
|
take,
|
|
1802
1803
|
skip,
|
|
@@ -1832,6 +1833,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
1832
1833
|
OrderStages: orderStages,
|
|
1833
1834
|
OrderDateGTE: orderDateGte,
|
|
1834
1835
|
OrderDateLTE: orderDateLte,
|
|
1836
|
+
EndUserIdentityId: endUserIdentityId,
|
|
1835
1837
|
PageNumber: pageNumber,
|
|
1836
1838
|
Take: take,
|
|
1837
1839
|
Skip: skip,
|
|
@@ -1878,6 +1880,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
1878
1880
|
orderStages,
|
|
1879
1881
|
orderDateGte,
|
|
1880
1882
|
orderDateLte,
|
|
1883
|
+
endUserIdentityId,
|
|
1881
1884
|
pageNumber,
|
|
1882
1885
|
take,
|
|
1883
1886
|
skip,
|
|
@@ -1913,6 +1916,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
1913
1916
|
OrderStages: orderStages,
|
|
1914
1917
|
OrderDateGTE: orderDateGte,
|
|
1915
1918
|
OrderDateLTE: orderDateLte,
|
|
1919
|
+
EndUserIdentityId: endUserIdentityId,
|
|
1916
1920
|
PageNumber: pageNumber,
|
|
1917
1921
|
Take: take,
|
|
1918
1922
|
Skip: skip,
|
|
@@ -2058,6 +2062,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2058
2062
|
orderStages,
|
|
2059
2063
|
orderDateGte,
|
|
2060
2064
|
orderDateLte,
|
|
2065
|
+
endUserIdentityId,
|
|
2061
2066
|
pageNumber,
|
|
2062
2067
|
take,
|
|
2063
2068
|
skip,
|
|
@@ -2092,6 +2097,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2092
2097
|
OrderStages: orderStages,
|
|
2093
2098
|
OrderDateGTE: orderDateGte,
|
|
2094
2099
|
OrderDateLTE: orderDateLte,
|
|
2100
|
+
EndUserIdentityId: endUserIdentityId,
|
|
2095
2101
|
PageNumber: pageNumber,
|
|
2096
2102
|
Take: take,
|
|
2097
2103
|
Skip: skip,
|
|
@@ -2198,6 +2204,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2198
2204
|
orderStages,
|
|
2199
2205
|
orderDateGte,
|
|
2200
2206
|
orderDateLte,
|
|
2207
|
+
endUserIdentityId,
|
|
2201
2208
|
pageNumber,
|
|
2202
2209
|
take,
|
|
2203
2210
|
skip,
|
|
@@ -2232,6 +2239,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2232
2239
|
OrderStages: orderStages,
|
|
2233
2240
|
OrderDateGTE: orderDateGte,
|
|
2234
2241
|
OrderDateLTE: orderDateLte,
|
|
2242
|
+
EndUserIdentityId: endUserIdentityId,
|
|
2235
2243
|
PageNumber: pageNumber,
|
|
2236
2244
|
Take: take,
|
|
2237
2245
|
Skip: skip,
|
|
@@ -2275,6 +2283,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2275
2283
|
orderStages,
|
|
2276
2284
|
orderDateGte,
|
|
2277
2285
|
orderDateLte,
|
|
2286
|
+
endUserIdentityId,
|
|
2278
2287
|
pageNumber,
|
|
2279
2288
|
take,
|
|
2280
2289
|
skip,
|
|
@@ -2309,6 +2318,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2309
2318
|
OrderStages: orderStages,
|
|
2310
2319
|
OrderDateGTE: orderDateGte,
|
|
2311
2320
|
OrderDateLTE: orderDateLte,
|
|
2321
|
+
EndUserIdentityId: endUserIdentityId,
|
|
2312
2322
|
PageNumber: pageNumber,
|
|
2313
2323
|
Take: take,
|
|
2314
2324
|
Skip: skip,
|
|
@@ -2352,6 +2362,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2352
2362
|
orderStages,
|
|
2353
2363
|
orderDateGte,
|
|
2354
2364
|
orderDateLte,
|
|
2365
|
+
endUserIdentityId,
|
|
2355
2366
|
pageNumber,
|
|
2356
2367
|
take,
|
|
2357
2368
|
skip,
|
|
@@ -2386,6 +2397,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2386
2397
|
OrderStages: orderStages,
|
|
2387
2398
|
OrderDateGTE: orderDateGte,
|
|
2388
2399
|
OrderDateLTE: orderDateLte,
|
|
2400
|
+
EndUserIdentityId: endUserIdentityId,
|
|
2389
2401
|
PageNumber: pageNumber,
|
|
2390
2402
|
Take: take,
|
|
2391
2403
|
Skip: skip,
|
|
@@ -3111,7 +3123,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3111
3123
|
});
|
|
3112
3124
|
}
|
|
3113
3125
|
/**
|
|
3114
|
-
*
|
|
3126
|
+
* Assign deal to course />.
|
|
3115
3127
|
* @returns Course OK
|
|
3116
3128
|
* @throws ApiError
|
|
3117
3129
|
*/
|
|
@@ -3134,7 +3146,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3134
3146
|
});
|
|
3135
3147
|
}
|
|
3136
3148
|
/**
|
|
3137
|
-
*
|
|
3149
|
+
* Unassign deal from course />.
|
|
3138
3150
|
* @returns Course OK
|
|
3139
3151
|
* @throws ApiError
|
|
3140
3152
|
*/
|
|
@@ -3156,6 +3168,48 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3156
3168
|
}
|
|
3157
3169
|
});
|
|
3158
3170
|
}
|
|
3171
|
+
/**
|
|
3172
|
+
* Set the course as featured (displays more prominently on the storefront).
|
|
3173
|
+
* @returns Course OK
|
|
3174
|
+
* @throws ApiError
|
|
3175
|
+
*/
|
|
3176
|
+
setFeatured({
|
|
3177
|
+
id
|
|
3178
|
+
}) {
|
|
3179
|
+
return this.httpRequest.request({
|
|
3180
|
+
method: "PATCH",
|
|
3181
|
+
url: "/api/courses/{id}/set-featured",
|
|
3182
|
+
path: {
|
|
3183
|
+
id
|
|
3184
|
+
},
|
|
3185
|
+
errors: {
|
|
3186
|
+
400: `Bad Request`,
|
|
3187
|
+
422: `Unprocessable Content`,
|
|
3188
|
+
500: `Internal Server Error`
|
|
3189
|
+
}
|
|
3190
|
+
});
|
|
3191
|
+
}
|
|
3192
|
+
/**
|
|
3193
|
+
* Remove the course as featured (displays as standard on the storefront).
|
|
3194
|
+
* @returns Course OK
|
|
3195
|
+
* @throws ApiError
|
|
3196
|
+
*/
|
|
3197
|
+
removeFeatured({
|
|
3198
|
+
id
|
|
3199
|
+
}) {
|
|
3200
|
+
return this.httpRequest.request({
|
|
3201
|
+
method: "PATCH",
|
|
3202
|
+
url: "/api/courses/{id}/remove-featured",
|
|
3203
|
+
path: {
|
|
3204
|
+
id
|
|
3205
|
+
},
|
|
3206
|
+
errors: {
|
|
3207
|
+
400: `Bad Request`,
|
|
3208
|
+
422: `Unprocessable Content`,
|
|
3209
|
+
500: `Internal Server Error`
|
|
3210
|
+
}
|
|
3211
|
+
});
|
|
3212
|
+
}
|
|
3159
3213
|
/**
|
|
3160
3214
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
3161
3215
|
* @returns Course OK
|
|
@@ -3273,6 +3327,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3273
3327
|
archived,
|
|
3274
3328
|
deleted,
|
|
3275
3329
|
openActiveUpdate,
|
|
3330
|
+
dashboardRequest,
|
|
3276
3331
|
bookingStatus,
|
|
3277
3332
|
startDateTimeLte,
|
|
3278
3333
|
startDateTimeGte,
|
|
@@ -3282,6 +3337,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3282
3337
|
remainingUsesGte,
|
|
3283
3338
|
futureOnly,
|
|
3284
3339
|
online,
|
|
3340
|
+
featured,
|
|
3285
3341
|
hasAvailability,
|
|
3286
3342
|
orderFirstNameContains,
|
|
3287
3343
|
orderLastNameContains,
|
|
@@ -3318,6 +3374,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3318
3374
|
Archived: archived,
|
|
3319
3375
|
Deleted: deleted,
|
|
3320
3376
|
OpenActiveUpdate: openActiveUpdate,
|
|
3377
|
+
DashboardRequest: dashboardRequest,
|
|
3321
3378
|
BookingStatus: bookingStatus,
|
|
3322
3379
|
StartDateTimeLTE: startDateTimeLte,
|
|
3323
3380
|
StartDateTimeGTE: startDateTimeGte,
|
|
@@ -3327,6 +3384,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3327
3384
|
RemainingUsesGTE: remainingUsesGte,
|
|
3328
3385
|
FutureOnly: futureOnly,
|
|
3329
3386
|
Online: online,
|
|
3387
|
+
Featured: featured,
|
|
3330
3388
|
HasAvailability: hasAvailability,
|
|
3331
3389
|
OrderFirstNameContains: orderFirstNameContains,
|
|
3332
3390
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -3435,6 +3493,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3435
3493
|
archived,
|
|
3436
3494
|
deleted,
|
|
3437
3495
|
openActiveUpdate,
|
|
3496
|
+
dashboardRequest,
|
|
3438
3497
|
bookingStatus,
|
|
3439
3498
|
startDateTimeLte,
|
|
3440
3499
|
startDateTimeGte,
|
|
@@ -3444,6 +3503,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3444
3503
|
remainingUsesGte,
|
|
3445
3504
|
futureOnly,
|
|
3446
3505
|
online,
|
|
3506
|
+
featured,
|
|
3447
3507
|
hasAvailability,
|
|
3448
3508
|
orderFirstNameContains,
|
|
3449
3509
|
orderLastNameContains,
|
|
@@ -3480,6 +3540,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3480
3540
|
Archived: archived,
|
|
3481
3541
|
Deleted: deleted,
|
|
3482
3542
|
OpenActiveUpdate: openActiveUpdate,
|
|
3543
|
+
DashboardRequest: dashboardRequest,
|
|
3483
3544
|
BookingStatus: bookingStatus,
|
|
3484
3545
|
StartDateTimeLTE: startDateTimeLte,
|
|
3485
3546
|
StartDateTimeGTE: startDateTimeGte,
|
|
@@ -3489,6 +3550,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3489
3550
|
RemainingUsesGTE: remainingUsesGte,
|
|
3490
3551
|
FutureOnly: futureOnly,
|
|
3491
3552
|
Online: online,
|
|
3553
|
+
Featured: featured,
|
|
3492
3554
|
HasAvailability: hasAvailability,
|
|
3493
3555
|
OrderFirstNameContains: orderFirstNameContains,
|
|
3494
3556
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -3534,6 +3596,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3534
3596
|
archived,
|
|
3535
3597
|
deleted,
|
|
3536
3598
|
openActiveUpdate,
|
|
3599
|
+
dashboardRequest,
|
|
3537
3600
|
bookingStatus,
|
|
3538
3601
|
startDateTimeLte,
|
|
3539
3602
|
startDateTimeGte,
|
|
@@ -3543,6 +3606,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3543
3606
|
remainingUsesGte,
|
|
3544
3607
|
futureOnly,
|
|
3545
3608
|
online,
|
|
3609
|
+
featured,
|
|
3546
3610
|
hasAvailability,
|
|
3547
3611
|
orderFirstNameContains,
|
|
3548
3612
|
orderLastNameContains,
|
|
@@ -3579,6 +3643,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3579
3643
|
Archived: archived,
|
|
3580
3644
|
Deleted: deleted,
|
|
3581
3645
|
OpenActiveUpdate: openActiveUpdate,
|
|
3646
|
+
DashboardRequest: dashboardRequest,
|
|
3582
3647
|
BookingStatus: bookingStatus,
|
|
3583
3648
|
StartDateTimeLTE: startDateTimeLte,
|
|
3584
3649
|
StartDateTimeGTE: startDateTimeGte,
|
|
@@ -3588,6 +3653,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3588
3653
|
RemainingUsesGTE: remainingUsesGte,
|
|
3589
3654
|
FutureOnly: futureOnly,
|
|
3590
3655
|
Online: online,
|
|
3656
|
+
Featured: featured,
|
|
3591
3657
|
HasAvailability: hasAvailability,
|
|
3592
3658
|
OrderFirstNameContains: orderFirstNameContains,
|
|
3593
3659
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -3633,6 +3699,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3633
3699
|
archived,
|
|
3634
3700
|
deleted,
|
|
3635
3701
|
openActiveUpdate,
|
|
3702
|
+
dashboardRequest,
|
|
3636
3703
|
bookingStatus,
|
|
3637
3704
|
startDateTimeLte,
|
|
3638
3705
|
startDateTimeGte,
|
|
@@ -3642,6 +3709,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3642
3709
|
remainingUsesGte,
|
|
3643
3710
|
futureOnly,
|
|
3644
3711
|
online,
|
|
3712
|
+
featured,
|
|
3645
3713
|
hasAvailability,
|
|
3646
3714
|
orderFirstNameContains,
|
|
3647
3715
|
orderLastNameContains,
|
|
@@ -3678,6 +3746,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3678
3746
|
Archived: archived,
|
|
3679
3747
|
Deleted: deleted,
|
|
3680
3748
|
OpenActiveUpdate: openActiveUpdate,
|
|
3749
|
+
DashboardRequest: dashboardRequest,
|
|
3681
3750
|
BookingStatus: bookingStatus,
|
|
3682
3751
|
StartDateTimeLTE: startDateTimeLte,
|
|
3683
3752
|
StartDateTimeGTE: startDateTimeGte,
|
|
@@ -3687,6 +3756,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3687
3756
|
RemainingUsesGTE: remainingUsesGte,
|
|
3688
3757
|
FutureOnly: futureOnly,
|
|
3689
3758
|
Online: online,
|
|
3759
|
+
Featured: featured,
|
|
3690
3760
|
HasAvailability: hasAvailability,
|
|
3691
3761
|
OrderFirstNameContains: orderFirstNameContains,
|
|
3692
3762
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -8214,6 +8284,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8214
8284
|
deleted,
|
|
8215
8285
|
activityType,
|
|
8216
8286
|
includeNextOpportunity,
|
|
8287
|
+
featured,
|
|
8217
8288
|
searchGeoCenter,
|
|
8218
8289
|
openactiveActivityId,
|
|
8219
8290
|
activityId,
|
|
@@ -8260,6 +8331,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8260
8331
|
Deleted: deleted,
|
|
8261
8332
|
ActivityType: activityType,
|
|
8262
8333
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
8334
|
+
Featured: featured,
|
|
8263
8335
|
SearchGeoCenter: searchGeoCenter,
|
|
8264
8336
|
OpenactiveActivityId: openactiveActivityId,
|
|
8265
8337
|
ActivityId: activityId,
|
|
@@ -8336,6 +8408,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8336
8408
|
deleted,
|
|
8337
8409
|
activityType,
|
|
8338
8410
|
includeNextOpportunity,
|
|
8411
|
+
featured,
|
|
8339
8412
|
searchGeoCenter,
|
|
8340
8413
|
openactiveActivityId,
|
|
8341
8414
|
activityId,
|
|
@@ -8382,6 +8455,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8382
8455
|
Deleted: deleted,
|
|
8383
8456
|
ActivityType: activityType,
|
|
8384
8457
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
8458
|
+
Featured: featured,
|
|
8385
8459
|
SearchGeoCenter: searchGeoCenter,
|
|
8386
8460
|
OpenactiveActivityId: openactiveActivityId,
|
|
8387
8461
|
ActivityId: activityId,
|
|
@@ -8437,6 +8511,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8437
8511
|
deleted,
|
|
8438
8512
|
activityType,
|
|
8439
8513
|
includeNextOpportunity,
|
|
8514
|
+
featured,
|
|
8440
8515
|
searchGeoCenter,
|
|
8441
8516
|
openactiveActivityId,
|
|
8442
8517
|
activityId,
|
|
@@ -8483,6 +8558,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8483
8558
|
Deleted: deleted,
|
|
8484
8559
|
ActivityType: activityType,
|
|
8485
8560
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
8561
|
+
Featured: featured,
|
|
8486
8562
|
SearchGeoCenter: searchGeoCenter,
|
|
8487
8563
|
OpenactiveActivityId: openactiveActivityId,
|
|
8488
8564
|
ActivityId: activityId,
|
|
@@ -8538,6 +8614,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8538
8614
|
deleted,
|
|
8539
8615
|
activityType,
|
|
8540
8616
|
includeNextOpportunity,
|
|
8617
|
+
featured,
|
|
8541
8618
|
searchGeoCenter,
|
|
8542
8619
|
openactiveActivityId,
|
|
8543
8620
|
activityId,
|
|
@@ -8584,6 +8661,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8584
8661
|
Deleted: deleted,
|
|
8585
8662
|
ActivityType: activityType,
|
|
8586
8663
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
8664
|
+
Featured: featured,
|
|
8587
8665
|
SearchGeoCenter: searchGeoCenter,
|
|
8588
8666
|
OpenactiveActivityId: openactiveActivityId,
|
|
8589
8667
|
ActivityId: activityId,
|
|
@@ -8639,6 +8717,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8639
8717
|
deleted,
|
|
8640
8718
|
activityType,
|
|
8641
8719
|
includeNextOpportunity,
|
|
8720
|
+
featured,
|
|
8642
8721
|
searchGeoCenter,
|
|
8643
8722
|
openactiveActivityId,
|
|
8644
8723
|
activityId,
|
|
@@ -8685,6 +8764,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8685
8764
|
Deleted: deleted,
|
|
8686
8765
|
ActivityType: activityType,
|
|
8687
8766
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
8767
|
+
Featured: featured,
|
|
8688
8768
|
SearchGeoCenter: searchGeoCenter,
|
|
8689
8769
|
OpenactiveActivityId: openactiveActivityId,
|
|
8690
8770
|
ActivityId: activityId,
|
|
@@ -9909,6 +9989,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9909
9989
|
orderStages,
|
|
9910
9990
|
orderDateGte,
|
|
9911
9991
|
orderDateLte,
|
|
9992
|
+
endUserIdentityId,
|
|
9912
9993
|
pageNumber,
|
|
9913
9994
|
take,
|
|
9914
9995
|
skip,
|
|
@@ -9942,6 +10023,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9942
10023
|
OrderStages: orderStages,
|
|
9943
10024
|
OrderDateGTE: orderDateGte,
|
|
9944
10025
|
OrderDateLTE: orderDateLte,
|
|
10026
|
+
EndUserIdentityId: endUserIdentityId,
|
|
9945
10027
|
PageNumber: pageNumber,
|
|
9946
10028
|
Take: take,
|
|
9947
10029
|
Skip: skip,
|
|
@@ -10047,6 +10129,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
10047
10129
|
orderStages,
|
|
10048
10130
|
orderDateGte,
|
|
10049
10131
|
orderDateLte,
|
|
10132
|
+
endUserIdentityId,
|
|
10050
10133
|
pageNumber,
|
|
10051
10134
|
take,
|
|
10052
10135
|
skip,
|
|
@@ -10080,6 +10163,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
10080
10163
|
OrderStages: orderStages,
|
|
10081
10164
|
OrderDateGTE: orderDateGte,
|
|
10082
10165
|
OrderDateLTE: orderDateLte,
|
|
10166
|
+
EndUserIdentityId: endUserIdentityId,
|
|
10083
10167
|
PageNumber: pageNumber,
|
|
10084
10168
|
Take: take,
|
|
10085
10169
|
Skip: skip,
|
|
@@ -10122,6 +10206,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
10122
10206
|
orderStages,
|
|
10123
10207
|
orderDateGte,
|
|
10124
10208
|
orderDateLte,
|
|
10209
|
+
endUserIdentityId,
|
|
10125
10210
|
pageNumber,
|
|
10126
10211
|
take,
|
|
10127
10212
|
skip,
|
|
@@ -10155,6 +10240,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
10155
10240
|
OrderStages: orderStages,
|
|
10156
10241
|
OrderDateGTE: orderDateGte,
|
|
10157
10242
|
OrderDateLTE: orderDateLte,
|
|
10243
|
+
EndUserIdentityId: endUserIdentityId,
|
|
10158
10244
|
PageNumber: pageNumber,
|
|
10159
10245
|
Take: take,
|
|
10160
10246
|
Skip: skip,
|
|
@@ -10197,6 +10283,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
10197
10283
|
orderStages,
|
|
10198
10284
|
orderDateGte,
|
|
10199
10285
|
orderDateLte,
|
|
10286
|
+
endUserIdentityId,
|
|
10200
10287
|
pageNumber,
|
|
10201
10288
|
take,
|
|
10202
10289
|
skip,
|
|
@@ -10230,6 +10317,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
10230
10317
|
OrderStages: orderStages,
|
|
10231
10318
|
OrderDateGTE: orderDateGte,
|
|
10232
10319
|
OrderDateLTE: orderDateLte,
|
|
10320
|
+
EndUserIdentityId: endUserIdentityId,
|
|
10233
10321
|
PageNumber: pageNumber,
|
|
10234
10322
|
Take: take,
|
|
10235
10323
|
Skip: skip,
|
|
@@ -13785,6 +13873,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13785
13873
|
parentOrderItemId,
|
|
13786
13874
|
orderByOpportunityStartdate,
|
|
13787
13875
|
eventTiming,
|
|
13876
|
+
endUserIdentityId,
|
|
13877
|
+
dashboardRequest,
|
|
13788
13878
|
pageNumber,
|
|
13789
13879
|
take,
|
|
13790
13880
|
skip,
|
|
@@ -13811,6 +13901,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13811
13901
|
ParentOrderItemId: parentOrderItemId,
|
|
13812
13902
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
13813
13903
|
EventTiming: eventTiming,
|
|
13904
|
+
EndUserIdentityId: endUserIdentityId,
|
|
13905
|
+
DashboardRequest: dashboardRequest,
|
|
13814
13906
|
PageNumber: pageNumber,
|
|
13815
13907
|
Take: take,
|
|
13816
13908
|
Skip: skip,
|
|
@@ -13909,6 +14001,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13909
14001
|
parentOrderItemId,
|
|
13910
14002
|
orderByOpportunityStartdate,
|
|
13911
14003
|
eventTiming,
|
|
14004
|
+
endUserIdentityId,
|
|
14005
|
+
dashboardRequest,
|
|
13912
14006
|
pageNumber,
|
|
13913
14007
|
take,
|
|
13914
14008
|
skip,
|
|
@@ -13935,6 +14029,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13935
14029
|
ParentOrderItemId: parentOrderItemId,
|
|
13936
14030
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
13937
14031
|
EventTiming: eventTiming,
|
|
14032
|
+
EndUserIdentityId: endUserIdentityId,
|
|
14033
|
+
DashboardRequest: dashboardRequest,
|
|
13938
14034
|
PageNumber: pageNumber,
|
|
13939
14035
|
Take: take,
|
|
13940
14036
|
Skip: skip,
|
|
@@ -13970,6 +14066,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13970
14066
|
parentOrderItemId,
|
|
13971
14067
|
orderByOpportunityStartdate,
|
|
13972
14068
|
eventTiming,
|
|
14069
|
+
endUserIdentityId,
|
|
14070
|
+
dashboardRequest,
|
|
13973
14071
|
pageNumber,
|
|
13974
14072
|
take,
|
|
13975
14073
|
skip,
|
|
@@ -13996,6 +14094,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13996
14094
|
ParentOrderItemId: parentOrderItemId,
|
|
13997
14095
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
13998
14096
|
EventTiming: eventTiming,
|
|
14097
|
+
EndUserIdentityId: endUserIdentityId,
|
|
14098
|
+
DashboardRequest: dashboardRequest,
|
|
13999
14099
|
PageNumber: pageNumber,
|
|
14000
14100
|
Take: take,
|
|
14001
14101
|
Skip: skip,
|
|
@@ -14031,6 +14131,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14031
14131
|
parentOrderItemId,
|
|
14032
14132
|
orderByOpportunityStartdate,
|
|
14033
14133
|
eventTiming,
|
|
14134
|
+
endUserIdentityId,
|
|
14135
|
+
dashboardRequest,
|
|
14034
14136
|
pageNumber,
|
|
14035
14137
|
take,
|
|
14036
14138
|
skip,
|
|
@@ -14057,6 +14159,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14057
14159
|
ParentOrderItemId: parentOrderItemId,
|
|
14058
14160
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
14059
14161
|
EventTiming: eventTiming,
|
|
14162
|
+
EndUserIdentityId: endUserIdentityId,
|
|
14163
|
+
DashboardRequest: dashboardRequest,
|
|
14060
14164
|
PageNumber: pageNumber,
|
|
14061
14165
|
Take: take,
|
|
14062
14166
|
Skip: skip,
|
|
@@ -14429,6 +14533,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14429
14533
|
orderStages,
|
|
14430
14534
|
orderDateGte,
|
|
14431
14535
|
orderDateLte,
|
|
14536
|
+
endUserIdentityId,
|
|
14432
14537
|
pageNumber,
|
|
14433
14538
|
take,
|
|
14434
14539
|
skip,
|
|
@@ -14462,6 +14567,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14462
14567
|
OrderStages: orderStages,
|
|
14463
14568
|
OrderDateGTE: orderDateGte,
|
|
14464
14569
|
OrderDateLTE: orderDateLte,
|
|
14570
|
+
EndUserIdentityId: endUserIdentityId,
|
|
14465
14571
|
PageNumber: pageNumber,
|
|
14466
14572
|
Take: take,
|
|
14467
14573
|
Skip: skip,
|
|
@@ -14567,6 +14673,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14567
14673
|
orderStages,
|
|
14568
14674
|
orderDateGte,
|
|
14569
14675
|
orderDateLte,
|
|
14676
|
+
endUserIdentityId,
|
|
14570
14677
|
pageNumber,
|
|
14571
14678
|
take,
|
|
14572
14679
|
skip,
|
|
@@ -14600,6 +14707,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14600
14707
|
OrderStages: orderStages,
|
|
14601
14708
|
OrderDateGTE: orderDateGte,
|
|
14602
14709
|
OrderDateLTE: orderDateLte,
|
|
14710
|
+
EndUserIdentityId: endUserIdentityId,
|
|
14603
14711
|
PageNumber: pageNumber,
|
|
14604
14712
|
Take: take,
|
|
14605
14713
|
Skip: skip,
|
|
@@ -14642,6 +14750,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14642
14750
|
orderStages,
|
|
14643
14751
|
orderDateGte,
|
|
14644
14752
|
orderDateLte,
|
|
14753
|
+
endUserIdentityId,
|
|
14645
14754
|
pageNumber,
|
|
14646
14755
|
take,
|
|
14647
14756
|
skip,
|
|
@@ -14675,6 +14784,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14675
14784
|
OrderStages: orderStages,
|
|
14676
14785
|
OrderDateGTE: orderDateGte,
|
|
14677
14786
|
OrderDateLTE: orderDateLte,
|
|
14787
|
+
EndUserIdentityId: endUserIdentityId,
|
|
14678
14788
|
PageNumber: pageNumber,
|
|
14679
14789
|
Take: take,
|
|
14680
14790
|
Skip: skip,
|
|
@@ -14717,6 +14827,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14717
14827
|
orderStages,
|
|
14718
14828
|
orderDateGte,
|
|
14719
14829
|
orderDateLte,
|
|
14830
|
+
endUserIdentityId,
|
|
14720
14831
|
pageNumber,
|
|
14721
14832
|
take,
|
|
14722
14833
|
skip,
|
|
@@ -14750,6 +14861,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14750
14861
|
OrderStages: orderStages,
|
|
14751
14862
|
OrderDateGTE: orderDateGte,
|
|
14752
14863
|
OrderDateLTE: orderDateLte,
|
|
14864
|
+
EndUserIdentityId: endUserIdentityId,
|
|
14753
14865
|
PageNumber: pageNumber,
|
|
14754
14866
|
Take: take,
|
|
14755
14867
|
Skip: skip,
|
|
@@ -17986,6 +18098,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
17986
18098
|
orderStages,
|
|
17987
18099
|
orderDateGte,
|
|
17988
18100
|
orderDateLte,
|
|
18101
|
+
endUserIdentityId,
|
|
17989
18102
|
pageNumber,
|
|
17990
18103
|
take,
|
|
17991
18104
|
skip,
|
|
@@ -18023,6 +18136,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18023
18136
|
OrderStages: orderStages,
|
|
18024
18137
|
OrderDateGTE: orderDateGte,
|
|
18025
18138
|
OrderDateLTE: orderDateLte,
|
|
18139
|
+
EndUserIdentityId: endUserIdentityId,
|
|
18026
18140
|
PageNumber: pageNumber,
|
|
18027
18141
|
Take: take,
|
|
18028
18142
|
Skip: skip,
|
|
@@ -18117,6 +18231,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18117
18231
|
orderStages,
|
|
18118
18232
|
orderDateGte,
|
|
18119
18233
|
orderDateLte,
|
|
18234
|
+
endUserIdentityId,
|
|
18120
18235
|
pageNumber,
|
|
18121
18236
|
take,
|
|
18122
18237
|
skip,
|
|
@@ -18154,6 +18269,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18154
18269
|
OrderStages: orderStages,
|
|
18155
18270
|
OrderDateGTE: orderDateGte,
|
|
18156
18271
|
OrderDateLTE: orderDateLte,
|
|
18272
|
+
EndUserIdentityId: endUserIdentityId,
|
|
18157
18273
|
PageNumber: pageNumber,
|
|
18158
18274
|
Take: take,
|
|
18159
18275
|
Skip: skip,
|
|
@@ -18173,6 +18289,39 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18173
18289
|
}
|
|
18174
18290
|
});
|
|
18175
18291
|
}
|
|
18292
|
+
}class PublicCalendarService {
|
|
18293
|
+
constructor(httpRequest) {
|
|
18294
|
+
this.httpRequest = httpRequest;
|
|
18295
|
+
}
|
|
18296
|
+
/**
|
|
18297
|
+
* Gets calendar data.
|
|
18298
|
+
* @returns any OK
|
|
18299
|
+
* @throws ApiError
|
|
18300
|
+
*/
|
|
18301
|
+
getCalendarView({
|
|
18302
|
+
xTenantSubdomain,
|
|
18303
|
+
startDateTimeGte,
|
|
18304
|
+
venueId,
|
|
18305
|
+
programmeId
|
|
18306
|
+
}) {
|
|
18307
|
+
return this.httpRequest.request({
|
|
18308
|
+
method: "GET",
|
|
18309
|
+
url: "/api/public/calendar",
|
|
18310
|
+
headers: {
|
|
18311
|
+
"x-tenant-subdomain": xTenantSubdomain
|
|
18312
|
+
},
|
|
18313
|
+
query: {
|
|
18314
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
18315
|
+
VenueId: venueId,
|
|
18316
|
+
ProgrammeId: programmeId
|
|
18317
|
+
},
|
|
18318
|
+
errors: {
|
|
18319
|
+
400: `Bad Request`,
|
|
18320
|
+
422: `Unprocessable Content`,
|
|
18321
|
+
500: `Internal Server Error`
|
|
18322
|
+
}
|
|
18323
|
+
});
|
|
18324
|
+
}
|
|
18176
18325
|
}class PublicCoursesService {
|
|
18177
18326
|
constructor(httpRequest) {
|
|
18178
18327
|
this.httpRequest = httpRequest;
|
|
@@ -18243,6 +18392,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18243
18392
|
archived,
|
|
18244
18393
|
deleted,
|
|
18245
18394
|
openActiveUpdate,
|
|
18395
|
+
dashboardRequest,
|
|
18246
18396
|
bookingStatus,
|
|
18247
18397
|
startDateTimeLte,
|
|
18248
18398
|
startDateTimeGte,
|
|
@@ -18252,6 +18402,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18252
18402
|
remainingUsesGte,
|
|
18253
18403
|
futureOnly,
|
|
18254
18404
|
online,
|
|
18405
|
+
featured,
|
|
18255
18406
|
hasAvailability,
|
|
18256
18407
|
orderFirstNameContains,
|
|
18257
18408
|
orderLastNameContains,
|
|
@@ -18291,6 +18442,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18291
18442
|
Archived: archived,
|
|
18292
18443
|
Deleted: deleted,
|
|
18293
18444
|
OpenActiveUpdate: openActiveUpdate,
|
|
18445
|
+
DashboardRequest: dashboardRequest,
|
|
18294
18446
|
BookingStatus: bookingStatus,
|
|
18295
18447
|
StartDateTimeLTE: startDateTimeLte,
|
|
18296
18448
|
StartDateTimeGTE: startDateTimeGte,
|
|
@@ -18300,6 +18452,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18300
18452
|
RemainingUsesGTE: remainingUsesGte,
|
|
18301
18453
|
FutureOnly: futureOnly,
|
|
18302
18454
|
Online: online,
|
|
18455
|
+
Featured: featured,
|
|
18303
18456
|
HasAvailability: hasAvailability,
|
|
18304
18457
|
OrderFirstNameContains: orderFirstNameContains,
|
|
18305
18458
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -18442,6 +18595,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18442
18595
|
archived,
|
|
18443
18596
|
deleted,
|
|
18444
18597
|
openActiveUpdate,
|
|
18598
|
+
dashboardRequest,
|
|
18445
18599
|
bookingStatus,
|
|
18446
18600
|
startDateTimeLte,
|
|
18447
18601
|
startDateTimeGte,
|
|
@@ -18451,6 +18605,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18451
18605
|
remainingUsesGte,
|
|
18452
18606
|
futureOnly,
|
|
18453
18607
|
online,
|
|
18608
|
+
featured,
|
|
18454
18609
|
hasAvailability,
|
|
18455
18610
|
orderFirstNameContains,
|
|
18456
18611
|
orderLastNameContains,
|
|
@@ -18490,6 +18645,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18490
18645
|
Archived: archived,
|
|
18491
18646
|
Deleted: deleted,
|
|
18492
18647
|
OpenActiveUpdate: openActiveUpdate,
|
|
18648
|
+
DashboardRequest: dashboardRequest,
|
|
18493
18649
|
BookingStatus: bookingStatus,
|
|
18494
18650
|
StartDateTimeLTE: startDateTimeLte,
|
|
18495
18651
|
StartDateTimeGTE: startDateTimeGte,
|
|
@@ -18499,6 +18655,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18499
18655
|
RemainingUsesGTE: remainingUsesGte,
|
|
18500
18656
|
FutureOnly: futureOnly,
|
|
18501
18657
|
Online: online,
|
|
18658
|
+
Featured: featured,
|
|
18502
18659
|
HasAvailability: hasAvailability,
|
|
18503
18660
|
OrderFirstNameContains: orderFirstNameContains,
|
|
18504
18661
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -19158,6 +19315,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19158
19315
|
deleted,
|
|
19159
19316
|
activityType,
|
|
19160
19317
|
includeNextOpportunity,
|
|
19318
|
+
featured,
|
|
19161
19319
|
searchGeoCenter,
|
|
19162
19320
|
openactiveActivityId,
|
|
19163
19321
|
activityId,
|
|
@@ -19207,6 +19365,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19207
19365
|
Deleted: deleted,
|
|
19208
19366
|
ActivityType: activityType,
|
|
19209
19367
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
19368
|
+
Featured: featured,
|
|
19210
19369
|
SearchGeoCenter: searchGeoCenter,
|
|
19211
19370
|
OpenactiveActivityId: openactiveActivityId,
|
|
19212
19371
|
ActivityId: activityId,
|
|
@@ -19262,6 +19421,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19262
19421
|
deleted,
|
|
19263
19422
|
activityType,
|
|
19264
19423
|
includeNextOpportunity,
|
|
19424
|
+
featured,
|
|
19265
19425
|
searchGeoCenter,
|
|
19266
19426
|
openactiveActivityId,
|
|
19267
19427
|
activityId,
|
|
@@ -19308,6 +19468,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19308
19468
|
Deleted: deleted,
|
|
19309
19469
|
ActivityType: activityType,
|
|
19310
19470
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
19471
|
+
Featured: featured,
|
|
19311
19472
|
SearchGeoCenter: searchGeoCenter,
|
|
19312
19473
|
OpenactiveActivityId: openactiveActivityId,
|
|
19313
19474
|
ActivityId: activityId,
|
|
@@ -19364,6 +19525,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19364
19525
|
deleted,
|
|
19365
19526
|
activityType,
|
|
19366
19527
|
includeNextOpportunity,
|
|
19528
|
+
featured,
|
|
19367
19529
|
searchGeoCenter,
|
|
19368
19530
|
openactiveActivityId,
|
|
19369
19531
|
activityId,
|
|
@@ -19413,6 +19575,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19413
19575
|
Deleted: deleted,
|
|
19414
19576
|
ActivityType: activityType,
|
|
19415
19577
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
19578
|
+
Featured: featured,
|
|
19416
19579
|
SearchGeoCenter: searchGeoCenter,
|
|
19417
19580
|
OpenactiveActivityId: openactiveActivityId,
|
|
19418
19581
|
ActivityId: activityId,
|
|
@@ -19496,6 +19659,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19496
19659
|
deleted,
|
|
19497
19660
|
activityType,
|
|
19498
19661
|
includeNextOpportunity,
|
|
19662
|
+
featured,
|
|
19499
19663
|
searchGeoCenter,
|
|
19500
19664
|
openactiveActivityId,
|
|
19501
19665
|
activityId,
|
|
@@ -19545,6 +19709,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19545
19709
|
Deleted: deleted,
|
|
19546
19710
|
ActivityType: activityType,
|
|
19547
19711
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
19712
|
+
Featured: featured,
|
|
19548
19713
|
SearchGeoCenter: searchGeoCenter,
|
|
19549
19714
|
OpenactiveActivityId: openactiveActivityId,
|
|
19550
19715
|
ActivityId: activityId,
|
|
@@ -19862,6 +20027,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19862
20027
|
orderStages,
|
|
19863
20028
|
orderDateGte,
|
|
19864
20029
|
orderDateLte,
|
|
20030
|
+
endUserIdentityId,
|
|
19865
20031
|
pageNumber,
|
|
19866
20032
|
take,
|
|
19867
20033
|
skip,
|
|
@@ -19898,6 +20064,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19898
20064
|
OrderStages: orderStages,
|
|
19899
20065
|
OrderDateGTE: orderDateGte,
|
|
19900
20066
|
OrderDateLTE: orderDateLte,
|
|
20067
|
+
EndUserIdentityId: endUserIdentityId,
|
|
19901
20068
|
PageNumber: pageNumber,
|
|
19902
20069
|
Take: take,
|
|
19903
20070
|
Skip: skip,
|
|
@@ -19941,6 +20108,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19941
20108
|
orderStages,
|
|
19942
20109
|
orderDateGte,
|
|
19943
20110
|
orderDateLte,
|
|
20111
|
+
endUserIdentityId,
|
|
19944
20112
|
pageNumber,
|
|
19945
20113
|
take,
|
|
19946
20114
|
skip,
|
|
@@ -19977,6 +20145,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19977
20145
|
OrderStages: orderStages,
|
|
19978
20146
|
OrderDateGTE: orderDateGte,
|
|
19979
20147
|
OrderDateLTE: orderDateLte,
|
|
20148
|
+
EndUserIdentityId: endUserIdentityId,
|
|
19980
20149
|
PageNumber: pageNumber,
|
|
19981
20150
|
Take: take,
|
|
19982
20151
|
Skip: skip,
|
|
@@ -20013,12 +20182,14 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20013
20182
|
paymentPolicyId,
|
|
20014
20183
|
futureOnly,
|
|
20015
20184
|
online,
|
|
20185
|
+
featured,
|
|
20016
20186
|
programmeId,
|
|
20017
20187
|
includeNextOpportunity,
|
|
20018
20188
|
allowTemplating,
|
|
20019
20189
|
archived,
|
|
20020
20190
|
deleted,
|
|
20021
20191
|
openActiveUpdate,
|
|
20192
|
+
dashboardRequest,
|
|
20022
20193
|
networkId,
|
|
20023
20194
|
distance,
|
|
20024
20195
|
minAgeLte,
|
|
@@ -20058,12 +20229,14 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20058
20229
|
PaymentPolicyId: paymentPolicyId,
|
|
20059
20230
|
FutureOnly: futureOnly,
|
|
20060
20231
|
Online: online,
|
|
20232
|
+
Featured: featured,
|
|
20061
20233
|
ProgrammeId: programmeId,
|
|
20062
20234
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
20063
20235
|
AllowTemplating: allowTemplating,
|
|
20064
20236
|
Archived: archived,
|
|
20065
20237
|
Deleted: deleted,
|
|
20066
20238
|
OpenActiveUpdate: openActiveUpdate,
|
|
20239
|
+
DashboardRequest: dashboardRequest,
|
|
20067
20240
|
NetworkId: networkId,
|
|
20068
20241
|
Distance: distance,
|
|
20069
20242
|
MinAgeLTE: minAgeLte,
|
|
@@ -20447,6 +20620,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20447
20620
|
parentOrderItemId,
|
|
20448
20621
|
orderByOpportunityStartdate,
|
|
20449
20622
|
eventTiming,
|
|
20623
|
+
endUserIdentityId,
|
|
20624
|
+
dashboardRequest,
|
|
20450
20625
|
pageNumber,
|
|
20451
20626
|
take,
|
|
20452
20627
|
skip,
|
|
@@ -20476,6 +20651,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20476
20651
|
ParentOrderItemId: parentOrderItemId,
|
|
20477
20652
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
20478
20653
|
EventTiming: eventTiming,
|
|
20654
|
+
EndUserIdentityId: endUserIdentityId,
|
|
20655
|
+
DashboardRequest: dashboardRequest,
|
|
20479
20656
|
PageNumber: pageNumber,
|
|
20480
20657
|
Take: take,
|
|
20481
20658
|
Skip: skip,
|
|
@@ -20685,6 +20862,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20685
20862
|
parentOrderItemId,
|
|
20686
20863
|
orderByOpportunityStartdate,
|
|
20687
20864
|
eventTiming,
|
|
20865
|
+
endUserIdentityId,
|
|
20866
|
+
dashboardRequest,
|
|
20688
20867
|
pageNumber,
|
|
20689
20868
|
take,
|
|
20690
20869
|
skip,
|
|
@@ -20714,6 +20893,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20714
20893
|
ParentOrderItemId: parentOrderItemId,
|
|
20715
20894
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
20716
20895
|
EventTiming: eventTiming,
|
|
20896
|
+
EndUserIdentityId: endUserIdentityId,
|
|
20897
|
+
DashboardRequest: dashboardRequest,
|
|
20717
20898
|
PageNumber: pageNumber,
|
|
20718
20899
|
Take: take,
|
|
20719
20900
|
Skip: skip,
|
|
@@ -20809,6 +20990,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20809
20990
|
orderStages,
|
|
20810
20991
|
orderDateGte,
|
|
20811
20992
|
orderDateLte,
|
|
20993
|
+
endUserIdentityId,
|
|
20812
20994
|
pageNumber,
|
|
20813
20995
|
take,
|
|
20814
20996
|
skip,
|
|
@@ -20845,6 +21027,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20845
21027
|
OrderStages: orderStages,
|
|
20846
21028
|
OrderDateGTE: orderDateGte,
|
|
20847
21029
|
OrderDateLTE: orderDateLte,
|
|
21030
|
+
EndUserIdentityId: endUserIdentityId,
|
|
20848
21031
|
PageNumber: pageNumber,
|
|
20849
21032
|
Take: take,
|
|
20850
21033
|
Skip: skip,
|
|
@@ -21089,6 +21272,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21089
21272
|
orderStages,
|
|
21090
21273
|
orderDateGte,
|
|
21091
21274
|
orderDateLte,
|
|
21275
|
+
endUserIdentityId,
|
|
21092
21276
|
pageNumber,
|
|
21093
21277
|
take,
|
|
21094
21278
|
skip,
|
|
@@ -21125,6 +21309,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21125
21309
|
OrderStages: orderStages,
|
|
21126
21310
|
OrderDateGTE: orderDateGte,
|
|
21127
21311
|
OrderDateLTE: orderDateLte,
|
|
21312
|
+
EndUserIdentityId: endUserIdentityId,
|
|
21128
21313
|
PageNumber: pageNumber,
|
|
21129
21314
|
Take: take,
|
|
21130
21315
|
Skip: skip,
|
|
@@ -22155,6 +22340,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22155
22340
|
remainingUsesLte,
|
|
22156
22341
|
remainingUsesGte,
|
|
22157
22342
|
futureOnly,
|
|
22343
|
+
bookableOnly,
|
|
22158
22344
|
includeImages,
|
|
22159
22345
|
includeVenue,
|
|
22160
22346
|
includeOrders,
|
|
@@ -22199,6 +22385,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22199
22385
|
RemainingUsesLTE: remainingUsesLte,
|
|
22200
22386
|
RemainingUsesGTE: remainingUsesGte,
|
|
22201
22387
|
FutureOnly: futureOnly,
|
|
22388
|
+
BookableOnly: bookableOnly,
|
|
22202
22389
|
IncludeImages: includeImages,
|
|
22203
22390
|
IncludeVenue: includeVenue,
|
|
22204
22391
|
IncludeOrders: includeOrders,
|
|
@@ -22346,6 +22533,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22346
22533
|
remainingUsesLte,
|
|
22347
22534
|
remainingUsesGte,
|
|
22348
22535
|
futureOnly,
|
|
22536
|
+
bookableOnly,
|
|
22349
22537
|
includeImages,
|
|
22350
22538
|
includeVenue,
|
|
22351
22539
|
includeOrders,
|
|
@@ -22390,6 +22578,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22390
22578
|
RemainingUsesLTE: remainingUsesLte,
|
|
22391
22579
|
RemainingUsesGTE: remainingUsesGte,
|
|
22392
22580
|
FutureOnly: futureOnly,
|
|
22581
|
+
BookableOnly: bookableOnly,
|
|
22393
22582
|
IncludeImages: includeImages,
|
|
22394
22583
|
IncludeVenue: includeVenue,
|
|
22395
22584
|
IncludeOrders: includeOrders,
|
|
@@ -22484,12 +22673,14 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22484
22673
|
paymentPolicyId,
|
|
22485
22674
|
futureOnly,
|
|
22486
22675
|
online,
|
|
22676
|
+
featured,
|
|
22487
22677
|
programmeId,
|
|
22488
22678
|
includeNextOpportunity,
|
|
22489
22679
|
allowTemplating,
|
|
22490
22680
|
archived,
|
|
22491
22681
|
deleted,
|
|
22492
22682
|
openActiveUpdate,
|
|
22683
|
+
dashboardRequest,
|
|
22493
22684
|
networkId,
|
|
22494
22685
|
distance,
|
|
22495
22686
|
minAgeLte,
|
|
@@ -22532,12 +22723,14 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22532
22723
|
PaymentPolicyId: paymentPolicyId,
|
|
22533
22724
|
FutureOnly: futureOnly,
|
|
22534
22725
|
Online: online,
|
|
22726
|
+
Featured: featured,
|
|
22535
22727
|
ProgrammeId: programmeId,
|
|
22536
22728
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
22537
22729
|
AllowTemplating: allowTemplating,
|
|
22538
22730
|
Archived: archived,
|
|
22539
22731
|
Deleted: deleted,
|
|
22540
22732
|
OpenActiveUpdate: openActiveUpdate,
|
|
22733
|
+
DashboardRequest: dashboardRequest,
|
|
22541
22734
|
NetworkId: networkId,
|
|
22542
22735
|
Distance: distance,
|
|
22543
22736
|
MinAgeLTE: minAgeLte,
|
|
@@ -22647,6 +22840,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22647
22840
|
remainingUsesLte,
|
|
22648
22841
|
remainingUsesGte,
|
|
22649
22842
|
futureOnly,
|
|
22843
|
+
bookableOnly,
|
|
22650
22844
|
includeImages,
|
|
22651
22845
|
includeVenue,
|
|
22652
22846
|
includeOrders,
|
|
@@ -22691,6 +22885,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22691
22885
|
RemainingUsesLTE: remainingUsesLte,
|
|
22692
22886
|
RemainingUsesGTE: remainingUsesGte,
|
|
22693
22887
|
FutureOnly: futureOnly,
|
|
22888
|
+
BookableOnly: bookableOnly,
|
|
22694
22889
|
IncludeImages: includeImages,
|
|
22695
22890
|
IncludeVenue: includeVenue,
|
|
22696
22891
|
IncludeOrders: includeOrders,
|
|
@@ -22805,12 +23000,14 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22805
23000
|
paymentPolicyId,
|
|
22806
23001
|
futureOnly,
|
|
22807
23002
|
online,
|
|
23003
|
+
featured,
|
|
22808
23004
|
programmeId,
|
|
22809
23005
|
includeNextOpportunity,
|
|
22810
23006
|
allowTemplating,
|
|
22811
23007
|
archived,
|
|
22812
23008
|
deleted,
|
|
22813
23009
|
openActiveUpdate,
|
|
23010
|
+
dashboardRequest,
|
|
22814
23011
|
networkId,
|
|
22815
23012
|
distance,
|
|
22816
23013
|
minAgeLte,
|
|
@@ -22853,12 +23050,14 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22853
23050
|
PaymentPolicyId: paymentPolicyId,
|
|
22854
23051
|
FutureOnly: futureOnly,
|
|
22855
23052
|
Online: online,
|
|
23053
|
+
Featured: featured,
|
|
22856
23054
|
ProgrammeId: programmeId,
|
|
22857
23055
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
22858
23056
|
AllowTemplating: allowTemplating,
|
|
22859
23057
|
Archived: archived,
|
|
22860
23058
|
Deleted: deleted,
|
|
22861
23059
|
OpenActiveUpdate: openActiveUpdate,
|
|
23060
|
+
DashboardRequest: dashboardRequest,
|
|
22862
23061
|
NetworkId: networkId,
|
|
22863
23062
|
Distance: distance,
|
|
22864
23063
|
MinAgeLTE: minAgeLte,
|
|
@@ -24520,6 +24719,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24520
24719
|
includeOpportunityOffers,
|
|
24521
24720
|
includeNextOpportunity,
|
|
24522
24721
|
distance,
|
|
24722
|
+
dashboardRequest,
|
|
24523
24723
|
pageNumber,
|
|
24524
24724
|
take,
|
|
24525
24725
|
skip,
|
|
@@ -24557,6 +24757,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24557
24757
|
IncludeOpportunityOffers: includeOpportunityOffers,
|
|
24558
24758
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
24559
24759
|
Distance: distance,
|
|
24760
|
+
DashboardRequest: dashboardRequest,
|
|
24560
24761
|
PageNumber: pageNumber,
|
|
24561
24762
|
Take: take,
|
|
24562
24763
|
Skip: skip,
|
|
@@ -24624,6 +24825,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24624
24825
|
includeOpportunityOffers,
|
|
24625
24826
|
includeNextOpportunity,
|
|
24626
24827
|
distance,
|
|
24828
|
+
dashboardRequest,
|
|
24627
24829
|
pageNumber,
|
|
24628
24830
|
take,
|
|
24629
24831
|
skip,
|
|
@@ -24658,6 +24860,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24658
24860
|
IncludeOpportunityOffers: includeOpportunityOffers,
|
|
24659
24861
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
24660
24862
|
Distance: distance,
|
|
24863
|
+
DashboardRequest: dashboardRequest,
|
|
24661
24864
|
PageNumber: pageNumber,
|
|
24662
24865
|
Take: take,
|
|
24663
24866
|
Skip: skip,
|
|
@@ -24774,6 +24977,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24774
24977
|
includeOpportunityOffers,
|
|
24775
24978
|
includeNextOpportunity,
|
|
24776
24979
|
distance,
|
|
24980
|
+
dashboardRequest,
|
|
24777
24981
|
pageNumber,
|
|
24778
24982
|
take,
|
|
24779
24983
|
skip,
|
|
@@ -24811,6 +25015,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24811
25015
|
IncludeOpportunityOffers: includeOpportunityOffers,
|
|
24812
25016
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
24813
25017
|
Distance: distance,
|
|
25018
|
+
DashboardRequest: dashboardRequest,
|
|
24814
25019
|
PageNumber: pageNumber,
|
|
24815
25020
|
Take: take,
|
|
24816
25021
|
Skip: skip,
|
|
@@ -26846,6 +27051,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
26846
27051
|
remainingUsesLte,
|
|
26847
27052
|
remainingUsesGte,
|
|
26848
27053
|
futureOnly,
|
|
27054
|
+
bookableOnly,
|
|
26849
27055
|
includeImages,
|
|
26850
27056
|
includeVenue,
|
|
26851
27057
|
includeOrders,
|
|
@@ -26887,6 +27093,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
26887
27093
|
RemainingUsesLTE: remainingUsesLte,
|
|
26888
27094
|
RemainingUsesGTE: remainingUsesGte,
|
|
26889
27095
|
FutureOnly: futureOnly,
|
|
27096
|
+
BookableOnly: bookableOnly,
|
|
26890
27097
|
IncludeImages: includeImages,
|
|
26891
27098
|
IncludeVenue: includeVenue,
|
|
26892
27099
|
IncludeOrders: includeOrders,
|
|
@@ -27000,6 +27207,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27000
27207
|
remainingUsesLte,
|
|
27001
27208
|
remainingUsesGte,
|
|
27002
27209
|
futureOnly,
|
|
27210
|
+
bookableOnly,
|
|
27003
27211
|
includeImages,
|
|
27004
27212
|
includeVenue,
|
|
27005
27213
|
includeOrders,
|
|
@@ -27041,6 +27249,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27041
27249
|
RemainingUsesLTE: remainingUsesLte,
|
|
27042
27250
|
RemainingUsesGTE: remainingUsesGte,
|
|
27043
27251
|
FutureOnly: futureOnly,
|
|
27252
|
+
BookableOnly: bookableOnly,
|
|
27044
27253
|
IncludeImages: includeImages,
|
|
27045
27254
|
IncludeVenue: includeVenue,
|
|
27046
27255
|
IncludeOrders: includeOrders,
|
|
@@ -27091,6 +27300,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27091
27300
|
remainingUsesLte,
|
|
27092
27301
|
remainingUsesGte,
|
|
27093
27302
|
futureOnly,
|
|
27303
|
+
bookableOnly,
|
|
27094
27304
|
includeImages,
|
|
27095
27305
|
includeVenue,
|
|
27096
27306
|
includeOrders,
|
|
@@ -27132,6 +27342,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27132
27342
|
RemainingUsesLTE: remainingUsesLte,
|
|
27133
27343
|
RemainingUsesGTE: remainingUsesGte,
|
|
27134
27344
|
FutureOnly: futureOnly,
|
|
27345
|
+
BookableOnly: bookableOnly,
|
|
27135
27346
|
IncludeImages: includeImages,
|
|
27136
27347
|
IncludeVenue: includeVenue,
|
|
27137
27348
|
IncludeOrders: includeOrders,
|
|
@@ -27182,6 +27393,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27182
27393
|
remainingUsesLte,
|
|
27183
27394
|
remainingUsesGte,
|
|
27184
27395
|
futureOnly,
|
|
27396
|
+
bookableOnly,
|
|
27185
27397
|
includeImages,
|
|
27186
27398
|
includeVenue,
|
|
27187
27399
|
includeOrders,
|
|
@@ -27223,6 +27435,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27223
27435
|
RemainingUsesLTE: remainingUsesLte,
|
|
27224
27436
|
RemainingUsesGTE: remainingUsesGte,
|
|
27225
27437
|
FutureOnly: futureOnly,
|
|
27438
|
+
BookableOnly: bookableOnly,
|
|
27226
27439
|
IncludeImages: includeImages,
|
|
27227
27440
|
IncludeVenue: includeVenue,
|
|
27228
27441
|
IncludeOrders: includeOrders,
|
|
@@ -27419,6 +27632,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27419
27632
|
lastRunDateTimeLte,
|
|
27420
27633
|
status,
|
|
27421
27634
|
statuses,
|
|
27635
|
+
bookableOnly,
|
|
27422
27636
|
pageNumber,
|
|
27423
27637
|
take,
|
|
27424
27638
|
skip,
|
|
@@ -27440,6 +27654,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27440
27654
|
LastRunDateTimeLTE: lastRunDateTimeLte,
|
|
27441
27655
|
Status: status,
|
|
27442
27656
|
Statuses: statuses,
|
|
27657
|
+
BookableOnly: bookableOnly,
|
|
27443
27658
|
PageNumber: pageNumber,
|
|
27444
27659
|
Take: take,
|
|
27445
27660
|
Skip: skip,
|
|
@@ -27533,6 +27748,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27533
27748
|
lastRunDateTimeLte,
|
|
27534
27749
|
status,
|
|
27535
27750
|
statuses,
|
|
27751
|
+
bookableOnly,
|
|
27536
27752
|
pageNumber,
|
|
27537
27753
|
take,
|
|
27538
27754
|
skip,
|
|
@@ -27554,6 +27770,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27554
27770
|
LastRunDateTimeLTE: lastRunDateTimeLte,
|
|
27555
27771
|
Status: status,
|
|
27556
27772
|
Statuses: statuses,
|
|
27773
|
+
BookableOnly: bookableOnly,
|
|
27557
27774
|
PageNumber: pageNumber,
|
|
27558
27775
|
Take: take,
|
|
27559
27776
|
Skip: skip,
|
|
@@ -27584,6 +27801,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27584
27801
|
lastRunDateTimeLte,
|
|
27585
27802
|
status,
|
|
27586
27803
|
statuses,
|
|
27804
|
+
bookableOnly,
|
|
27587
27805
|
pageNumber,
|
|
27588
27806
|
take,
|
|
27589
27807
|
skip,
|
|
@@ -27605,6 +27823,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27605
27823
|
LastRunDateTimeLTE: lastRunDateTimeLte,
|
|
27606
27824
|
Status: status,
|
|
27607
27825
|
Statuses: statuses,
|
|
27826
|
+
BookableOnly: bookableOnly,
|
|
27608
27827
|
PageNumber: pageNumber,
|
|
27609
27828
|
Take: take,
|
|
27610
27829
|
Skip: skip,
|
|
@@ -27635,6 +27854,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27635
27854
|
lastRunDateTimeLte,
|
|
27636
27855
|
status,
|
|
27637
27856
|
statuses,
|
|
27857
|
+
bookableOnly,
|
|
27638
27858
|
pageNumber,
|
|
27639
27859
|
take,
|
|
27640
27860
|
skip,
|
|
@@ -27656,6 +27876,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27656
27876
|
LastRunDateTimeLTE: lastRunDateTimeLte,
|
|
27657
27877
|
Status: status,
|
|
27658
27878
|
Statuses: statuses,
|
|
27879
|
+
BookableOnly: bookableOnly,
|
|
27659
27880
|
PageNumber: pageNumber,
|
|
27660
27881
|
Take: take,
|
|
27661
27882
|
Skip: skip,
|
|
@@ -27825,7 +28046,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27825
28046
|
});
|
|
27826
28047
|
}
|
|
27827
28048
|
/**
|
|
27828
|
-
*
|
|
28049
|
+
* Assign deal to session.
|
|
27829
28050
|
* @returns Session OK
|
|
27830
28051
|
* @throws ApiError
|
|
27831
28052
|
*/
|
|
@@ -27848,7 +28069,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27848
28069
|
});
|
|
27849
28070
|
}
|
|
27850
28071
|
/**
|
|
27851
|
-
*
|
|
28072
|
+
* Unassign deal from session.
|
|
27852
28073
|
* @returns Session OK
|
|
27853
28074
|
* @throws ApiError
|
|
27854
28075
|
*/
|
|
@@ -27870,6 +28091,48 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27870
28091
|
}
|
|
27871
28092
|
});
|
|
27872
28093
|
}
|
|
28094
|
+
/**
|
|
28095
|
+
* Set the session as featured (displays more prominently on the storefront).
|
|
28096
|
+
* @returns Session OK
|
|
28097
|
+
* @throws ApiError
|
|
28098
|
+
*/
|
|
28099
|
+
setFeatured({
|
|
28100
|
+
id
|
|
28101
|
+
}) {
|
|
28102
|
+
return this.httpRequest.request({
|
|
28103
|
+
method: "PATCH",
|
|
28104
|
+
url: "/api/sessions/{id}/set-featured",
|
|
28105
|
+
path: {
|
|
28106
|
+
id
|
|
28107
|
+
},
|
|
28108
|
+
errors: {
|
|
28109
|
+
400: `Bad Request`,
|
|
28110
|
+
422: `Unprocessable Content`,
|
|
28111
|
+
500: `Internal Server Error`
|
|
28112
|
+
}
|
|
28113
|
+
});
|
|
28114
|
+
}
|
|
28115
|
+
/**
|
|
28116
|
+
* Remove the session as featured (displays as standard on the storefront).
|
|
28117
|
+
* @returns Session OK
|
|
28118
|
+
* @throws ApiError
|
|
28119
|
+
*/
|
|
28120
|
+
removeFeatured({
|
|
28121
|
+
id
|
|
28122
|
+
}) {
|
|
28123
|
+
return this.httpRequest.request({
|
|
28124
|
+
method: "PATCH",
|
|
28125
|
+
url: "/api/sessions/{id}/remove-featured",
|
|
28126
|
+
path: {
|
|
28127
|
+
id
|
|
28128
|
+
},
|
|
28129
|
+
errors: {
|
|
28130
|
+
400: `Bad Request`,
|
|
28131
|
+
422: `Unprocessable Content`,
|
|
28132
|
+
500: `Internal Server Error`
|
|
28133
|
+
}
|
|
28134
|
+
});
|
|
28135
|
+
}
|
|
27873
28136
|
/**
|
|
27874
28137
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
27875
28138
|
* @returns Session OK
|
|
@@ -27983,12 +28246,14 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27983
28246
|
paymentPolicyId,
|
|
27984
28247
|
futureOnly,
|
|
27985
28248
|
online,
|
|
28249
|
+
featured,
|
|
27986
28250
|
programmeId,
|
|
27987
28251
|
includeNextOpportunity,
|
|
27988
28252
|
allowTemplating,
|
|
27989
28253
|
archived,
|
|
27990
28254
|
deleted,
|
|
27991
28255
|
openActiveUpdate,
|
|
28256
|
+
dashboardRequest,
|
|
27992
28257
|
networkId,
|
|
27993
28258
|
distance,
|
|
27994
28259
|
minAgeLte,
|
|
@@ -28028,12 +28293,14 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28028
28293
|
PaymentPolicyId: paymentPolicyId,
|
|
28029
28294
|
FutureOnly: futureOnly,
|
|
28030
28295
|
Online: online,
|
|
28296
|
+
Featured: featured,
|
|
28031
28297
|
ProgrammeId: programmeId,
|
|
28032
28298
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
28033
28299
|
AllowTemplating: allowTemplating,
|
|
28034
28300
|
Archived: archived,
|
|
28035
28301
|
Deleted: deleted,
|
|
28036
28302
|
OpenActiveUpdate: openActiveUpdate,
|
|
28303
|
+
DashboardRequest: dashboardRequest,
|
|
28037
28304
|
NetworkId: networkId,
|
|
28038
28305
|
Distance: distance,
|
|
28039
28306
|
MinAgeLTE: minAgeLte,
|
|
@@ -28145,12 +28412,14 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28145
28412
|
paymentPolicyId,
|
|
28146
28413
|
futureOnly,
|
|
28147
28414
|
online,
|
|
28415
|
+
featured,
|
|
28148
28416
|
programmeId,
|
|
28149
28417
|
includeNextOpportunity,
|
|
28150
28418
|
allowTemplating,
|
|
28151
28419
|
archived,
|
|
28152
28420
|
deleted,
|
|
28153
28421
|
openActiveUpdate,
|
|
28422
|
+
dashboardRequest,
|
|
28154
28423
|
networkId,
|
|
28155
28424
|
distance,
|
|
28156
28425
|
minAgeLte,
|
|
@@ -28190,12 +28459,14 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28190
28459
|
PaymentPolicyId: paymentPolicyId,
|
|
28191
28460
|
FutureOnly: futureOnly,
|
|
28192
28461
|
Online: online,
|
|
28462
|
+
Featured: featured,
|
|
28193
28463
|
ProgrammeId: programmeId,
|
|
28194
28464
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
28195
28465
|
AllowTemplating: allowTemplating,
|
|
28196
28466
|
Archived: archived,
|
|
28197
28467
|
Deleted: deleted,
|
|
28198
28468
|
OpenActiveUpdate: openActiveUpdate,
|
|
28469
|
+
DashboardRequest: dashboardRequest,
|
|
28199
28470
|
NetworkId: networkId,
|
|
28200
28471
|
Distance: distance,
|
|
28201
28472
|
MinAgeLTE: minAgeLte,
|
|
@@ -28244,12 +28515,14 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28244
28515
|
paymentPolicyId,
|
|
28245
28516
|
futureOnly,
|
|
28246
28517
|
online,
|
|
28518
|
+
featured,
|
|
28247
28519
|
programmeId,
|
|
28248
28520
|
includeNextOpportunity,
|
|
28249
28521
|
allowTemplating,
|
|
28250
28522
|
archived,
|
|
28251
28523
|
deleted,
|
|
28252
28524
|
openActiveUpdate,
|
|
28525
|
+
dashboardRequest,
|
|
28253
28526
|
networkId,
|
|
28254
28527
|
distance,
|
|
28255
28528
|
minAgeLte,
|
|
@@ -28289,12 +28562,14 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28289
28562
|
PaymentPolicyId: paymentPolicyId,
|
|
28290
28563
|
FutureOnly: futureOnly,
|
|
28291
28564
|
Online: online,
|
|
28565
|
+
Featured: featured,
|
|
28292
28566
|
ProgrammeId: programmeId,
|
|
28293
28567
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
28294
28568
|
AllowTemplating: allowTemplating,
|
|
28295
28569
|
Archived: archived,
|
|
28296
28570
|
Deleted: deleted,
|
|
28297
28571
|
OpenActiveUpdate: openActiveUpdate,
|
|
28572
|
+
DashboardRequest: dashboardRequest,
|
|
28298
28573
|
NetworkId: networkId,
|
|
28299
28574
|
Distance: distance,
|
|
28300
28575
|
MinAgeLTE: minAgeLte,
|
|
@@ -28343,12 +28618,14 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28343
28618
|
paymentPolicyId,
|
|
28344
28619
|
futureOnly,
|
|
28345
28620
|
online,
|
|
28621
|
+
featured,
|
|
28346
28622
|
programmeId,
|
|
28347
28623
|
includeNextOpportunity,
|
|
28348
28624
|
allowTemplating,
|
|
28349
28625
|
archived,
|
|
28350
28626
|
deleted,
|
|
28351
28627
|
openActiveUpdate,
|
|
28628
|
+
dashboardRequest,
|
|
28352
28629
|
networkId,
|
|
28353
28630
|
distance,
|
|
28354
28631
|
minAgeLte,
|
|
@@ -28388,12 +28665,14 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28388
28665
|
PaymentPolicyId: paymentPolicyId,
|
|
28389
28666
|
FutureOnly: futureOnly,
|
|
28390
28667
|
Online: online,
|
|
28668
|
+
Featured: featured,
|
|
28391
28669
|
ProgrammeId: programmeId,
|
|
28392
28670
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
28393
28671
|
AllowTemplating: allowTemplating,
|
|
28394
28672
|
Archived: archived,
|
|
28395
28673
|
Deleted: deleted,
|
|
28396
28674
|
OpenActiveUpdate: openActiveUpdate,
|
|
28675
|
+
DashboardRequest: dashboardRequest,
|
|
28397
28676
|
NetworkId: networkId,
|
|
28398
28677
|
Distance: distance,
|
|
28399
28678
|
MinAgeLTE: minAgeLte,
|
|
@@ -38431,6 +38710,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
38431
38710
|
includeOpportunityOffers,
|
|
38432
38711
|
includeNextOpportunity,
|
|
38433
38712
|
distance,
|
|
38713
|
+
dashboardRequest,
|
|
38434
38714
|
pageNumber,
|
|
38435
38715
|
take,
|
|
38436
38716
|
skip,
|
|
@@ -38465,6 +38745,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
38465
38745
|
IncludeOpportunityOffers: includeOpportunityOffers,
|
|
38466
38746
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
38467
38747
|
Distance: distance,
|
|
38748
|
+
DashboardRequest: dashboardRequest,
|
|
38468
38749
|
PageNumber: pageNumber,
|
|
38469
38750
|
Take: take,
|
|
38470
38751
|
Skip: skip,
|
|
@@ -38571,6 +38852,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
38571
38852
|
includeOpportunityOffers,
|
|
38572
38853
|
includeNextOpportunity,
|
|
38573
38854
|
distance,
|
|
38855
|
+
dashboardRequest,
|
|
38574
38856
|
pageNumber,
|
|
38575
38857
|
take,
|
|
38576
38858
|
skip,
|
|
@@ -38605,6 +38887,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
38605
38887
|
IncludeOpportunityOffers: includeOpportunityOffers,
|
|
38606
38888
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
38607
38889
|
Distance: distance,
|
|
38890
|
+
DashboardRequest: dashboardRequest,
|
|
38608
38891
|
PageNumber: pageNumber,
|
|
38609
38892
|
Take: take,
|
|
38610
38893
|
Skip: skip,
|
|
@@ -38648,6 +38931,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
38648
38931
|
includeOpportunityOffers,
|
|
38649
38932
|
includeNextOpportunity,
|
|
38650
38933
|
distance,
|
|
38934
|
+
dashboardRequest,
|
|
38651
38935
|
pageNumber,
|
|
38652
38936
|
take,
|
|
38653
38937
|
skip,
|
|
@@ -38682,6 +38966,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
38682
38966
|
IncludeOpportunityOffers: includeOpportunityOffers,
|
|
38683
38967
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
38684
38968
|
Distance: distance,
|
|
38969
|
+
DashboardRequest: dashboardRequest,
|
|
38685
38970
|
PageNumber: pageNumber,
|
|
38686
38971
|
Take: take,
|
|
38687
38972
|
Skip: skip,
|
|
@@ -38725,6 +39010,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
38725
39010
|
includeOpportunityOffers,
|
|
38726
39011
|
includeNextOpportunity,
|
|
38727
39012
|
distance,
|
|
39013
|
+
dashboardRequest,
|
|
38728
39014
|
pageNumber,
|
|
38729
39015
|
take,
|
|
38730
39016
|
skip,
|
|
@@ -38759,6 +39045,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
38759
39045
|
IncludeOpportunityOffers: includeOpportunityOffers,
|
|
38760
39046
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
38761
39047
|
Distance: distance,
|
|
39048
|
+
DashboardRequest: dashboardRequest,
|
|
38762
39049
|
PageNumber: pageNumber,
|
|
38763
39050
|
Take: take,
|
|
38764
39051
|
Skip: skip,
|
|
@@ -40877,6 +41164,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
40877
41164
|
providers;
|
|
40878
41165
|
providerTypes;
|
|
40879
41166
|
publicBooking;
|
|
41167
|
+
publicCalendar;
|
|
40880
41168
|
publicCourses;
|
|
40881
41169
|
publicCustomers;
|
|
40882
41170
|
publicFacilities;
|
|
@@ -41006,6 +41294,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
41006
41294
|
this.providers = new ProvidersService(this.request);
|
|
41007
41295
|
this.providerTypes = new ProviderTypesService(this.request);
|
|
41008
41296
|
this.publicBooking = new PublicBookingService(this.request);
|
|
41297
|
+
this.publicCalendar = new PublicCalendarService(this.request);
|
|
41009
41298
|
this.publicCourses = new PublicCoursesService(this.request);
|
|
41010
41299
|
this.publicCustomers = new PublicCustomersService(this.request);
|
|
41011
41300
|
this.publicFacilities = new PublicFacilitiesService(this.request);
|
|
@@ -41461,4 +41750,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
41461
41750
|
TenantTier2["ENTERPRISE"] = "Enterprise";
|
|
41462
41751
|
TenantTier2["PRO"] = "Pro";
|
|
41463
41752
|
return TenantTier2;
|
|
41464
|
-
})(TenantTier || {});
|
|
41753
|
+
})(TenantTier || {});var UpcomingLayout = /* @__PURE__ */ ((UpcomingLayout2) => {
|
|
41754
|
+
UpcomingLayout2["GRID"] = "Grid";
|
|
41755
|
+
UpcomingLayout2["CALENDAR"] = "Calendar";
|
|
41756
|
+
return UpcomingLayout2;
|
|
41757
|
+
})(UpcomingLayout || {});export{ActivityPerformanceService,ActivityService,ActivityType,AdvanceBooking,AmenityService,AmenityType,ApiClient,ApiError,AppUserRole,ApplicationRole,AttendeesService,AvailabilityIndicator,BadEnglandReportService,BaseHttpRequest,BookingService,BookingStatus,CancelError,CancelablePromise,CancellationPoliciesService,ChatService,CheckoutPlatform,ContactOnConfirmation,CountryService,CourseBookingCutoff,CourseSearchSortBy,CourseSessionSchedulesService,CourseSessionsService,CourseStatus,CoursesService,CustomDateRange,CustomerCancellationOption,CustomerType,CustomersService,DayOfWeek,DealActivitiesService,DealDiscountType,DealTarget,DealType,DealsService,DiscountCodeUsesService,EmailReminderSchedulesService,EmailSettingsService,EndUserIdentitySecureTokenService,EnglandGolfReportService,EventTiming,FacilitiesService,FacilityIndividualsService,FacilityIndividualsType,FieldPermission,FilestackService,Gender,GenericActivityService,GeocodeService,HelpersService,HereAutocompleteLookupService,HttpStatusCode,ImageLibraryCategoryService,ImageLibraryImageService,ImageUploadHistoryService,ImagesService,InviteStatus,LeasingService,LocationsReportService,LoqatePlacesService,NotificationQueueService,NotificationSettingsService,NotificationType,OffersService,OpenAPI,OpenactiveFeedIntermediateService,OpenactiveFeedItemService,OpportunityRegisterService,OpportunityRegisterStatus,OpportunityType,OrderItemReportService,OrderItemStatus,OrderItemsService,OrderSource,OrderStage,OrdersService,OrgCourseUtilisationService,OrganisationApplicationFeeHandling,OrganisationAvailableChannel,OrganisationRefundPolicy,OrganisationTaxMode,OrganisationType,PaymentMethod,PaymentPoliciesService,PaymentPolicySplitType,PaymentsService,PeriodsOfWeek,PermissionsService,PlacesService,PlatformPayoutsService,Prepayment,ProgrammesService,ProviderTypesService,ProvidersService,PublicBookingService,PublicCalendarService,PublicCoursesService,PublicCustomersService,PublicFacilitiesService,PublicFilestackWebhookService,PublicGenericActivityService,PublicHealthCheckService,PublicLeasingService,PublicNetworksService,PublicOpportunityRegisterService,PublicOrderItemsService,PublicOrderTokensService,PublicOrdersService,PublicProgrammesService,PublicProvidersService,PublicScheduledSessionsService,PublicSessionsService,PublicSlotsService,PublicStripeWebhookService,PublicSurveyCompletionLogsService,PublicSurveyQuestionsService,PublicSurveysService,PublicTenantsService,PublicVenuesService,PublicWaitlistActivityService,PublicWaitlistOpportunityService,ReachEntity,ReachOperation,RecentOrderActivityReportService,RefundSource,RefundStatus,RegisterReportService,RescheduleLogService,ScheduleStatus,ScheduledSessionSearchSortBy,ScheduledSessionsSchedulesService,ScheduledSessionsService,SearchSortOrderDirection,SessionType,SessionsService,SlotAvailabilityStatus,SlotOffersService,SlotScheduleOffersService,SlotSchedulesService,SlotStatus,SlotsService,StripeAccountLinkedEntityType,StripeAccountService,StripeStatus,SurfacesService,SurveyAnswersService,SurveyCompletionLogService,SurveyQuestionType,SurveyQuestionsService,SurveyQuestionsTarget,SurveyReportExtendedService,SurveyResponseMode,SurveyType,SurveysService,TemplateDetailsService,TemplateFieldPermissionsService,TemplateOffersService,TemplatesService,TenantTier,TenantWebsiteSettingsService,TenantsService,TimezoneService,TotalRevenueReportService,UnsplashService,UpcomingLayout,UserPermissionsService,UserProgrammesService,UserProvidersService,UsersService,VenueManagersService,VenuePerformanceService,VenuesReportService,VenuesService,WaitlistActivityReportService,WaitlistActivityService,WaitlistOpportunityReportService,WaitlistOpportunityService};
|