reach-api-sdk 1.0.192 → 1.0.194
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 +376 -52
- package/dist/reach-sdk.js +213 -5
- package/package.json +1 -1
- package/src/definition/swagger.yaml +655 -7
- package/src/models/Course.ts +8 -0
- package/src/models/CreateDeal.ts +8 -0
- package/src/models/Deal.ts +8 -0
- package/src/models/GenericActivity.ts +4 -0
- package/src/models/Session.ts +4 -0
- package/src/services/CourseSessionsService.ts +24 -0
- package/src/services/CoursesService.ts +80 -2
- package/src/services/GenericActivityService.ts +60 -0
- package/src/services/OrderItemsService.ts +24 -0
- package/src/services/PublicCalendarService.ts +1 -1
- package/src/services/PublicCoursesService.ts +12 -0
- package/src/services/PublicGenericActivityService.ts +48 -0
- package/src/services/PublicNetworksService.ts +6 -0
- package/src/services/PublicOrderItemsService.ts +12 -0
- package/src/services/PublicScheduledSessionsService.ts +12 -0
- package/src/services/PublicSessionsService.ts +18 -0
- package/src/services/PublicVenuesService.ts +36 -0
- package/src/services/ScheduledSessionsService.ts +24 -0
- package/src/services/SessionsService.ts +82 -4
- package/src/services/VenuesService.ts +48 -0
package/dist/reach-sdk.js
CHANGED
|
@@ -3123,7 +3123,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3123
3123
|
});
|
|
3124
3124
|
}
|
|
3125
3125
|
/**
|
|
3126
|
-
*
|
|
3126
|
+
* Assign deal to course />.
|
|
3127
3127
|
* @returns Course OK
|
|
3128
3128
|
* @throws ApiError
|
|
3129
3129
|
*/
|
|
@@ -3146,7 +3146,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3146
3146
|
});
|
|
3147
3147
|
}
|
|
3148
3148
|
/**
|
|
3149
|
-
*
|
|
3149
|
+
* Unassign deal from course />.
|
|
3150
3150
|
* @returns Course OK
|
|
3151
3151
|
* @throws ApiError
|
|
3152
3152
|
*/
|
|
@@ -3168,6 +3168,48 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3168
3168
|
}
|
|
3169
3169
|
});
|
|
3170
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
|
+
}
|
|
3171
3213
|
/**
|
|
3172
3214
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
3173
3215
|
* @returns Course OK
|
|
@@ -3285,6 +3327,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3285
3327
|
archived,
|
|
3286
3328
|
deleted,
|
|
3287
3329
|
openActiveUpdate,
|
|
3330
|
+
dashboardRequest,
|
|
3288
3331
|
bookingStatus,
|
|
3289
3332
|
startDateTimeLte,
|
|
3290
3333
|
startDateTimeGte,
|
|
@@ -3331,6 +3374,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3331
3374
|
Archived: archived,
|
|
3332
3375
|
Deleted: deleted,
|
|
3333
3376
|
OpenActiveUpdate: openActiveUpdate,
|
|
3377
|
+
DashboardRequest: dashboardRequest,
|
|
3334
3378
|
BookingStatus: bookingStatus,
|
|
3335
3379
|
StartDateTimeLTE: startDateTimeLte,
|
|
3336
3380
|
StartDateTimeGTE: startDateTimeGte,
|
|
@@ -3449,6 +3493,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3449
3493
|
archived,
|
|
3450
3494
|
deleted,
|
|
3451
3495
|
openActiveUpdate,
|
|
3496
|
+
dashboardRequest,
|
|
3452
3497
|
bookingStatus,
|
|
3453
3498
|
startDateTimeLte,
|
|
3454
3499
|
startDateTimeGte,
|
|
@@ -3495,6 +3540,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3495
3540
|
Archived: archived,
|
|
3496
3541
|
Deleted: deleted,
|
|
3497
3542
|
OpenActiveUpdate: openActiveUpdate,
|
|
3543
|
+
DashboardRequest: dashboardRequest,
|
|
3498
3544
|
BookingStatus: bookingStatus,
|
|
3499
3545
|
StartDateTimeLTE: startDateTimeLte,
|
|
3500
3546
|
StartDateTimeGTE: startDateTimeGte,
|
|
@@ -3550,6 +3596,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3550
3596
|
archived,
|
|
3551
3597
|
deleted,
|
|
3552
3598
|
openActiveUpdate,
|
|
3599
|
+
dashboardRequest,
|
|
3553
3600
|
bookingStatus,
|
|
3554
3601
|
startDateTimeLte,
|
|
3555
3602
|
startDateTimeGte,
|
|
@@ -3596,6 +3643,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3596
3643
|
Archived: archived,
|
|
3597
3644
|
Deleted: deleted,
|
|
3598
3645
|
OpenActiveUpdate: openActiveUpdate,
|
|
3646
|
+
DashboardRequest: dashboardRequest,
|
|
3599
3647
|
BookingStatus: bookingStatus,
|
|
3600
3648
|
StartDateTimeLTE: startDateTimeLte,
|
|
3601
3649
|
StartDateTimeGTE: startDateTimeGte,
|
|
@@ -3651,6 +3699,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3651
3699
|
archived,
|
|
3652
3700
|
deleted,
|
|
3653
3701
|
openActiveUpdate,
|
|
3702
|
+
dashboardRequest,
|
|
3654
3703
|
bookingStatus,
|
|
3655
3704
|
startDateTimeLte,
|
|
3656
3705
|
startDateTimeGte,
|
|
@@ -3697,6 +3746,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3697
3746
|
Archived: archived,
|
|
3698
3747
|
Deleted: deleted,
|
|
3699
3748
|
OpenActiveUpdate: openActiveUpdate,
|
|
3749
|
+
DashboardRequest: dashboardRequest,
|
|
3700
3750
|
BookingStatus: bookingStatus,
|
|
3701
3751
|
StartDateTimeLTE: startDateTimeLte,
|
|
3702
3752
|
StartDateTimeGTE: startDateTimeGte,
|
|
@@ -3920,6 +3970,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3920
3970
|
endDateTimeGte,
|
|
3921
3971
|
futureOnly,
|
|
3922
3972
|
includeVenue,
|
|
3973
|
+
includeOffers,
|
|
3923
3974
|
excludeArchived,
|
|
3924
3975
|
pageNumber,
|
|
3925
3976
|
take,
|
|
@@ -3951,6 +4002,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3951
4002
|
EndDateTimeGTE: endDateTimeGte,
|
|
3952
4003
|
FutureOnly: futureOnly,
|
|
3953
4004
|
IncludeVenue: includeVenue,
|
|
4005
|
+
IncludeOffers: includeOffers,
|
|
3954
4006
|
ExcludeArchived: excludeArchived,
|
|
3955
4007
|
PageNumber: pageNumber,
|
|
3956
4008
|
Take: take,
|
|
@@ -4054,6 +4106,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
4054
4106
|
endDateTimeGte,
|
|
4055
4107
|
futureOnly,
|
|
4056
4108
|
includeVenue,
|
|
4109
|
+
includeOffers,
|
|
4057
4110
|
excludeArchived,
|
|
4058
4111
|
pageNumber,
|
|
4059
4112
|
take,
|
|
@@ -4085,6 +4138,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
4085
4138
|
EndDateTimeGTE: endDateTimeGte,
|
|
4086
4139
|
FutureOnly: futureOnly,
|
|
4087
4140
|
IncludeVenue: includeVenue,
|
|
4141
|
+
IncludeOffers: includeOffers,
|
|
4088
4142
|
ExcludeArchived: excludeArchived,
|
|
4089
4143
|
PageNumber: pageNumber,
|
|
4090
4144
|
Take: take,
|
|
@@ -4125,6 +4179,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
4125
4179
|
endDateTimeGte,
|
|
4126
4180
|
futureOnly,
|
|
4127
4181
|
includeVenue,
|
|
4182
|
+
includeOffers,
|
|
4128
4183
|
excludeArchived,
|
|
4129
4184
|
pageNumber,
|
|
4130
4185
|
take,
|
|
@@ -4156,6 +4211,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
4156
4211
|
EndDateTimeGTE: endDateTimeGte,
|
|
4157
4212
|
FutureOnly: futureOnly,
|
|
4158
4213
|
IncludeVenue: includeVenue,
|
|
4214
|
+
IncludeOffers: includeOffers,
|
|
4159
4215
|
ExcludeArchived: excludeArchived,
|
|
4160
4216
|
PageNumber: pageNumber,
|
|
4161
4217
|
Take: take,
|
|
@@ -4196,6 +4252,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
4196
4252
|
endDateTimeGte,
|
|
4197
4253
|
futureOnly,
|
|
4198
4254
|
includeVenue,
|
|
4255
|
+
includeOffers,
|
|
4199
4256
|
excludeArchived,
|
|
4200
4257
|
pageNumber,
|
|
4201
4258
|
take,
|
|
@@ -4227,6 +4284,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
4227
4284
|
EndDateTimeGTE: endDateTimeGte,
|
|
4228
4285
|
FutureOnly: futureOnly,
|
|
4229
4286
|
IncludeVenue: includeVenue,
|
|
4287
|
+
IncludeOffers: includeOffers,
|
|
4230
4288
|
ExcludeArchived: excludeArchived,
|
|
4231
4289
|
PageNumber: pageNumber,
|
|
4232
4290
|
Take: take,
|
|
@@ -8234,6 +8292,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8234
8292
|
deleted,
|
|
8235
8293
|
activityType,
|
|
8236
8294
|
includeNextOpportunity,
|
|
8295
|
+
featured,
|
|
8237
8296
|
searchGeoCenter,
|
|
8238
8297
|
openactiveActivityId,
|
|
8239
8298
|
activityId,
|
|
@@ -8255,6 +8314,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8255
8314
|
periodsOfWeek,
|
|
8256
8315
|
additionalSupport,
|
|
8257
8316
|
amenity,
|
|
8317
|
+
programmeIds,
|
|
8258
8318
|
pageNumber,
|
|
8259
8319
|
take,
|
|
8260
8320
|
skip,
|
|
@@ -8280,6 +8340,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8280
8340
|
Deleted: deleted,
|
|
8281
8341
|
ActivityType: activityType,
|
|
8282
8342
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
8343
|
+
Featured: featured,
|
|
8283
8344
|
SearchGeoCenter: searchGeoCenter,
|
|
8284
8345
|
OpenactiveActivityId: openactiveActivityId,
|
|
8285
8346
|
ActivityId: activityId,
|
|
@@ -8301,6 +8362,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8301
8362
|
PeriodsOfWeek: periodsOfWeek,
|
|
8302
8363
|
AdditionalSupport: additionalSupport,
|
|
8303
8364
|
Amenity: amenity,
|
|
8365
|
+
ProgrammeIds: programmeIds,
|
|
8304
8366
|
PageNumber: pageNumber,
|
|
8305
8367
|
Take: take,
|
|
8306
8368
|
Skip: skip,
|
|
@@ -8356,6 +8418,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8356
8418
|
deleted,
|
|
8357
8419
|
activityType,
|
|
8358
8420
|
includeNextOpportunity,
|
|
8421
|
+
featured,
|
|
8359
8422
|
searchGeoCenter,
|
|
8360
8423
|
openactiveActivityId,
|
|
8361
8424
|
activityId,
|
|
@@ -8377,6 +8440,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8377
8440
|
periodsOfWeek,
|
|
8378
8441
|
additionalSupport,
|
|
8379
8442
|
amenity,
|
|
8443
|
+
programmeIds,
|
|
8380
8444
|
pageNumber,
|
|
8381
8445
|
take,
|
|
8382
8446
|
skip,
|
|
@@ -8402,6 +8466,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8402
8466
|
Deleted: deleted,
|
|
8403
8467
|
ActivityType: activityType,
|
|
8404
8468
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
8469
|
+
Featured: featured,
|
|
8405
8470
|
SearchGeoCenter: searchGeoCenter,
|
|
8406
8471
|
OpenactiveActivityId: openactiveActivityId,
|
|
8407
8472
|
ActivityId: activityId,
|
|
@@ -8423,6 +8488,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8423
8488
|
PeriodsOfWeek: periodsOfWeek,
|
|
8424
8489
|
AdditionalSupport: additionalSupport,
|
|
8425
8490
|
Amenity: amenity,
|
|
8491
|
+
ProgrammeIds: programmeIds,
|
|
8426
8492
|
PageNumber: pageNumber,
|
|
8427
8493
|
Take: take,
|
|
8428
8494
|
Skip: skip,
|
|
@@ -8457,6 +8523,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8457
8523
|
deleted,
|
|
8458
8524
|
activityType,
|
|
8459
8525
|
includeNextOpportunity,
|
|
8526
|
+
featured,
|
|
8460
8527
|
searchGeoCenter,
|
|
8461
8528
|
openactiveActivityId,
|
|
8462
8529
|
activityId,
|
|
@@ -8478,6 +8545,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8478
8545
|
periodsOfWeek,
|
|
8479
8546
|
additionalSupport,
|
|
8480
8547
|
amenity,
|
|
8548
|
+
programmeIds,
|
|
8481
8549
|
pageNumber,
|
|
8482
8550
|
take,
|
|
8483
8551
|
skip,
|
|
@@ -8503,6 +8571,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8503
8571
|
Deleted: deleted,
|
|
8504
8572
|
ActivityType: activityType,
|
|
8505
8573
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
8574
|
+
Featured: featured,
|
|
8506
8575
|
SearchGeoCenter: searchGeoCenter,
|
|
8507
8576
|
OpenactiveActivityId: openactiveActivityId,
|
|
8508
8577
|
ActivityId: activityId,
|
|
@@ -8524,6 +8593,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8524
8593
|
PeriodsOfWeek: periodsOfWeek,
|
|
8525
8594
|
AdditionalSupport: additionalSupport,
|
|
8526
8595
|
Amenity: amenity,
|
|
8596
|
+
ProgrammeIds: programmeIds,
|
|
8527
8597
|
PageNumber: pageNumber,
|
|
8528
8598
|
Take: take,
|
|
8529
8599
|
Skip: skip,
|
|
@@ -8558,6 +8628,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8558
8628
|
deleted,
|
|
8559
8629
|
activityType,
|
|
8560
8630
|
includeNextOpportunity,
|
|
8631
|
+
featured,
|
|
8561
8632
|
searchGeoCenter,
|
|
8562
8633
|
openactiveActivityId,
|
|
8563
8634
|
activityId,
|
|
@@ -8579,6 +8650,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8579
8650
|
periodsOfWeek,
|
|
8580
8651
|
additionalSupport,
|
|
8581
8652
|
amenity,
|
|
8653
|
+
programmeIds,
|
|
8582
8654
|
pageNumber,
|
|
8583
8655
|
take,
|
|
8584
8656
|
skip,
|
|
@@ -8604,6 +8676,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8604
8676
|
Deleted: deleted,
|
|
8605
8677
|
ActivityType: activityType,
|
|
8606
8678
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
8679
|
+
Featured: featured,
|
|
8607
8680
|
SearchGeoCenter: searchGeoCenter,
|
|
8608
8681
|
OpenactiveActivityId: openactiveActivityId,
|
|
8609
8682
|
ActivityId: activityId,
|
|
@@ -8625,6 +8698,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8625
8698
|
PeriodsOfWeek: periodsOfWeek,
|
|
8626
8699
|
AdditionalSupport: additionalSupport,
|
|
8627
8700
|
Amenity: amenity,
|
|
8701
|
+
ProgrammeIds: programmeIds,
|
|
8628
8702
|
PageNumber: pageNumber,
|
|
8629
8703
|
Take: take,
|
|
8630
8704
|
Skip: skip,
|
|
@@ -8659,6 +8733,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8659
8733
|
deleted,
|
|
8660
8734
|
activityType,
|
|
8661
8735
|
includeNextOpportunity,
|
|
8736
|
+
featured,
|
|
8662
8737
|
searchGeoCenter,
|
|
8663
8738
|
openactiveActivityId,
|
|
8664
8739
|
activityId,
|
|
@@ -8680,6 +8755,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8680
8755
|
periodsOfWeek,
|
|
8681
8756
|
additionalSupport,
|
|
8682
8757
|
amenity,
|
|
8758
|
+
programmeIds,
|
|
8683
8759
|
pageNumber,
|
|
8684
8760
|
take,
|
|
8685
8761
|
skip,
|
|
@@ -8705,6 +8781,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8705
8781
|
Deleted: deleted,
|
|
8706
8782
|
ActivityType: activityType,
|
|
8707
8783
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
8784
|
+
Featured: featured,
|
|
8708
8785
|
SearchGeoCenter: searchGeoCenter,
|
|
8709
8786
|
OpenactiveActivityId: openactiveActivityId,
|
|
8710
8787
|
ActivityId: activityId,
|
|
@@ -8726,6 +8803,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8726
8803
|
PeriodsOfWeek: periodsOfWeek,
|
|
8727
8804
|
AdditionalSupport: additionalSupport,
|
|
8728
8805
|
Amenity: amenity,
|
|
8806
|
+
ProgrammeIds: programmeIds,
|
|
8729
8807
|
PageNumber: pageNumber,
|
|
8730
8808
|
Take: take,
|
|
8731
8809
|
Skip: skip,
|
|
@@ -13814,6 +13892,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13814
13892
|
orderByOpportunityStartdate,
|
|
13815
13893
|
eventTiming,
|
|
13816
13894
|
endUserIdentityId,
|
|
13895
|
+
dashboardRequest,
|
|
13817
13896
|
pageNumber,
|
|
13818
13897
|
take,
|
|
13819
13898
|
skip,
|
|
@@ -13841,6 +13920,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13841
13920
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
13842
13921
|
EventTiming: eventTiming,
|
|
13843
13922
|
EndUserIdentityId: endUserIdentityId,
|
|
13923
|
+
DashboardRequest: dashboardRequest,
|
|
13844
13924
|
PageNumber: pageNumber,
|
|
13845
13925
|
Take: take,
|
|
13846
13926
|
Skip: skip,
|
|
@@ -13940,6 +14020,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13940
14020
|
orderByOpportunityStartdate,
|
|
13941
14021
|
eventTiming,
|
|
13942
14022
|
endUserIdentityId,
|
|
14023
|
+
dashboardRequest,
|
|
13943
14024
|
pageNumber,
|
|
13944
14025
|
take,
|
|
13945
14026
|
skip,
|
|
@@ -13967,6 +14048,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13967
14048
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
13968
14049
|
EventTiming: eventTiming,
|
|
13969
14050
|
EndUserIdentityId: endUserIdentityId,
|
|
14051
|
+
DashboardRequest: dashboardRequest,
|
|
13970
14052
|
PageNumber: pageNumber,
|
|
13971
14053
|
Take: take,
|
|
13972
14054
|
Skip: skip,
|
|
@@ -14003,6 +14085,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14003
14085
|
orderByOpportunityStartdate,
|
|
14004
14086
|
eventTiming,
|
|
14005
14087
|
endUserIdentityId,
|
|
14088
|
+
dashboardRequest,
|
|
14006
14089
|
pageNumber,
|
|
14007
14090
|
take,
|
|
14008
14091
|
skip,
|
|
@@ -14030,6 +14113,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14030
14113
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
14031
14114
|
EventTiming: eventTiming,
|
|
14032
14115
|
EndUserIdentityId: endUserIdentityId,
|
|
14116
|
+
DashboardRequest: dashboardRequest,
|
|
14033
14117
|
PageNumber: pageNumber,
|
|
14034
14118
|
Take: take,
|
|
14035
14119
|
Skip: skip,
|
|
@@ -14066,6 +14150,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14066
14150
|
orderByOpportunityStartdate,
|
|
14067
14151
|
eventTiming,
|
|
14068
14152
|
endUserIdentityId,
|
|
14153
|
+
dashboardRequest,
|
|
14069
14154
|
pageNumber,
|
|
14070
14155
|
take,
|
|
14071
14156
|
skip,
|
|
@@ -14093,6 +14178,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14093
14178
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
14094
14179
|
EventTiming: eventTiming,
|
|
14095
14180
|
EndUserIdentityId: endUserIdentityId,
|
|
14181
|
+
DashboardRequest: dashboardRequest,
|
|
14096
14182
|
PageNumber: pageNumber,
|
|
14097
14183
|
Take: take,
|
|
14098
14184
|
Skip: skip,
|
|
@@ -18240,7 +18326,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18240
18326
|
method: "GET",
|
|
18241
18327
|
url: "/api/public/calendar",
|
|
18242
18328
|
headers: {
|
|
18243
|
-
|
|
18329
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
18244
18330
|
},
|
|
18245
18331
|
query: {
|
|
18246
18332
|
StartDateTimeGTE: startDateTimeGte,
|
|
@@ -18324,6 +18410,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18324
18410
|
archived,
|
|
18325
18411
|
deleted,
|
|
18326
18412
|
openActiveUpdate,
|
|
18413
|
+
dashboardRequest,
|
|
18327
18414
|
bookingStatus,
|
|
18328
18415
|
startDateTimeLte,
|
|
18329
18416
|
startDateTimeGte,
|
|
@@ -18373,6 +18460,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18373
18460
|
Archived: archived,
|
|
18374
18461
|
Deleted: deleted,
|
|
18375
18462
|
OpenActiveUpdate: openActiveUpdate,
|
|
18463
|
+
DashboardRequest: dashboardRequest,
|
|
18376
18464
|
BookingStatus: bookingStatus,
|
|
18377
18465
|
StartDateTimeLTE: startDateTimeLte,
|
|
18378
18466
|
StartDateTimeGTE: startDateTimeGte,
|
|
@@ -18525,6 +18613,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18525
18613
|
archived,
|
|
18526
18614
|
deleted,
|
|
18527
18615
|
openActiveUpdate,
|
|
18616
|
+
dashboardRequest,
|
|
18528
18617
|
bookingStatus,
|
|
18529
18618
|
startDateTimeLte,
|
|
18530
18619
|
startDateTimeGte,
|
|
@@ -18574,6 +18663,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18574
18663
|
Archived: archived,
|
|
18575
18664
|
Deleted: deleted,
|
|
18576
18665
|
OpenActiveUpdate: openActiveUpdate,
|
|
18666
|
+
DashboardRequest: dashboardRequest,
|
|
18577
18667
|
BookingStatus: bookingStatus,
|
|
18578
18668
|
StartDateTimeLTE: startDateTimeLte,
|
|
18579
18669
|
StartDateTimeGTE: startDateTimeGte,
|
|
@@ -19243,6 +19333,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19243
19333
|
deleted,
|
|
19244
19334
|
activityType,
|
|
19245
19335
|
includeNextOpportunity,
|
|
19336
|
+
featured,
|
|
19246
19337
|
searchGeoCenter,
|
|
19247
19338
|
openactiveActivityId,
|
|
19248
19339
|
activityId,
|
|
@@ -19264,6 +19355,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19264
19355
|
periodsOfWeek,
|
|
19265
19356
|
additionalSupport,
|
|
19266
19357
|
amenity,
|
|
19358
|
+
programmeIds,
|
|
19267
19359
|
pageNumber,
|
|
19268
19360
|
take,
|
|
19269
19361
|
skip,
|
|
@@ -19292,6 +19384,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19292
19384
|
Deleted: deleted,
|
|
19293
19385
|
ActivityType: activityType,
|
|
19294
19386
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
19387
|
+
Featured: featured,
|
|
19295
19388
|
SearchGeoCenter: searchGeoCenter,
|
|
19296
19389
|
OpenactiveActivityId: openactiveActivityId,
|
|
19297
19390
|
ActivityId: activityId,
|
|
@@ -19313,6 +19406,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19313
19406
|
PeriodsOfWeek: periodsOfWeek,
|
|
19314
19407
|
AdditionalSupport: additionalSupport,
|
|
19315
19408
|
Amenity: amenity,
|
|
19409
|
+
ProgrammeIds: programmeIds,
|
|
19316
19410
|
PageNumber: pageNumber,
|
|
19317
19411
|
Take: take,
|
|
19318
19412
|
Skip: skip,
|
|
@@ -19347,6 +19441,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19347
19441
|
deleted,
|
|
19348
19442
|
activityType,
|
|
19349
19443
|
includeNextOpportunity,
|
|
19444
|
+
featured,
|
|
19350
19445
|
searchGeoCenter,
|
|
19351
19446
|
openactiveActivityId,
|
|
19352
19447
|
activityId,
|
|
@@ -19368,6 +19463,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19368
19463
|
periodsOfWeek,
|
|
19369
19464
|
additionalSupport,
|
|
19370
19465
|
amenity,
|
|
19466
|
+
programmeIds,
|
|
19371
19467
|
pageNumber,
|
|
19372
19468
|
take,
|
|
19373
19469
|
skip,
|
|
@@ -19393,6 +19489,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19393
19489
|
Deleted: deleted,
|
|
19394
19490
|
ActivityType: activityType,
|
|
19395
19491
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
19492
|
+
Featured: featured,
|
|
19396
19493
|
SearchGeoCenter: searchGeoCenter,
|
|
19397
19494
|
OpenactiveActivityId: openactiveActivityId,
|
|
19398
19495
|
ActivityId: activityId,
|
|
@@ -19414,6 +19511,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19414
19511
|
PeriodsOfWeek: periodsOfWeek,
|
|
19415
19512
|
AdditionalSupport: additionalSupport,
|
|
19416
19513
|
Amenity: amenity,
|
|
19514
|
+
ProgrammeIds: programmeIds,
|
|
19417
19515
|
PageNumber: pageNumber,
|
|
19418
19516
|
Take: take,
|
|
19419
19517
|
Skip: skip,
|
|
@@ -19449,6 +19547,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19449
19547
|
deleted,
|
|
19450
19548
|
activityType,
|
|
19451
19549
|
includeNextOpportunity,
|
|
19550
|
+
featured,
|
|
19452
19551
|
searchGeoCenter,
|
|
19453
19552
|
openactiveActivityId,
|
|
19454
19553
|
activityId,
|
|
@@ -19470,6 +19569,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19470
19569
|
periodsOfWeek,
|
|
19471
19570
|
additionalSupport,
|
|
19472
19571
|
amenity,
|
|
19572
|
+
programmeIds,
|
|
19473
19573
|
pageNumber,
|
|
19474
19574
|
take,
|
|
19475
19575
|
skip,
|
|
@@ -19498,6 +19598,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19498
19598
|
Deleted: deleted,
|
|
19499
19599
|
ActivityType: activityType,
|
|
19500
19600
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
19601
|
+
Featured: featured,
|
|
19501
19602
|
SearchGeoCenter: searchGeoCenter,
|
|
19502
19603
|
OpenactiveActivityId: openactiveActivityId,
|
|
19503
19604
|
ActivityId: activityId,
|
|
@@ -19519,6 +19620,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19519
19620
|
PeriodsOfWeek: periodsOfWeek,
|
|
19520
19621
|
AdditionalSupport: additionalSupport,
|
|
19521
19622
|
Amenity: amenity,
|
|
19623
|
+
ProgrammeIds: programmeIds,
|
|
19522
19624
|
PageNumber: pageNumber,
|
|
19523
19625
|
Take: take,
|
|
19524
19626
|
Skip: skip,
|
|
@@ -19581,6 +19683,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19581
19683
|
deleted,
|
|
19582
19684
|
activityType,
|
|
19583
19685
|
includeNextOpportunity,
|
|
19686
|
+
featured,
|
|
19584
19687
|
searchGeoCenter,
|
|
19585
19688
|
openactiveActivityId,
|
|
19586
19689
|
activityId,
|
|
@@ -19602,6 +19705,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19602
19705
|
periodsOfWeek,
|
|
19603
19706
|
additionalSupport,
|
|
19604
19707
|
amenity,
|
|
19708
|
+
programmeIds,
|
|
19605
19709
|
pageNumber,
|
|
19606
19710
|
take,
|
|
19607
19711
|
skip,
|
|
@@ -19630,6 +19734,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19630
19734
|
Deleted: deleted,
|
|
19631
19735
|
ActivityType: activityType,
|
|
19632
19736
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
19737
|
+
Featured: featured,
|
|
19633
19738
|
SearchGeoCenter: searchGeoCenter,
|
|
19634
19739
|
OpenactiveActivityId: openactiveActivityId,
|
|
19635
19740
|
ActivityId: activityId,
|
|
@@ -19651,6 +19756,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19651
19756
|
PeriodsOfWeek: periodsOfWeek,
|
|
19652
19757
|
AdditionalSupport: additionalSupport,
|
|
19653
19758
|
Amenity: amenity,
|
|
19759
|
+
ProgrammeIds: programmeIds,
|
|
19654
19760
|
PageNumber: pageNumber,
|
|
19655
19761
|
Take: take,
|
|
19656
19762
|
Skip: skip,
|
|
@@ -20109,6 +20215,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20109
20215
|
archived,
|
|
20110
20216
|
deleted,
|
|
20111
20217
|
openActiveUpdate,
|
|
20218
|
+
dashboardRequest,
|
|
20112
20219
|
networkId,
|
|
20113
20220
|
distance,
|
|
20114
20221
|
minAgeLte,
|
|
@@ -20155,6 +20262,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20155
20262
|
Archived: archived,
|
|
20156
20263
|
Deleted: deleted,
|
|
20157
20264
|
OpenActiveUpdate: openActiveUpdate,
|
|
20265
|
+
DashboardRequest: dashboardRequest,
|
|
20158
20266
|
NetworkId: networkId,
|
|
20159
20267
|
Distance: distance,
|
|
20160
20268
|
MinAgeLTE: minAgeLte,
|
|
@@ -20539,6 +20647,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20539
20647
|
orderByOpportunityStartdate,
|
|
20540
20648
|
eventTiming,
|
|
20541
20649
|
endUserIdentityId,
|
|
20650
|
+
dashboardRequest,
|
|
20542
20651
|
pageNumber,
|
|
20543
20652
|
take,
|
|
20544
20653
|
skip,
|
|
@@ -20569,6 +20678,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20569
20678
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
20570
20679
|
EventTiming: eventTiming,
|
|
20571
20680
|
EndUserIdentityId: endUserIdentityId,
|
|
20681
|
+
DashboardRequest: dashboardRequest,
|
|
20572
20682
|
PageNumber: pageNumber,
|
|
20573
20683
|
Take: take,
|
|
20574
20684
|
Skip: skip,
|
|
@@ -20779,6 +20889,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20779
20889
|
orderByOpportunityStartdate,
|
|
20780
20890
|
eventTiming,
|
|
20781
20891
|
endUserIdentityId,
|
|
20892
|
+
dashboardRequest,
|
|
20782
20893
|
pageNumber,
|
|
20783
20894
|
take,
|
|
20784
20895
|
skip,
|
|
@@ -20809,6 +20920,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20809
20920
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
20810
20921
|
EventTiming: eventTiming,
|
|
20811
20922
|
EndUserIdentityId: endUserIdentityId,
|
|
20923
|
+
DashboardRequest: dashboardRequest,
|
|
20812
20924
|
PageNumber: pageNumber,
|
|
20813
20925
|
Take: take,
|
|
20814
20926
|
Skip: skip,
|
|
@@ -22257,6 +22369,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22257
22369
|
bookableOnly,
|
|
22258
22370
|
includeImages,
|
|
22259
22371
|
includeVenue,
|
|
22372
|
+
includeOffers,
|
|
22260
22373
|
includeOrders,
|
|
22261
22374
|
hasAvailability,
|
|
22262
22375
|
excludeArchived,
|
|
@@ -22302,6 +22415,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22302
22415
|
BookableOnly: bookableOnly,
|
|
22303
22416
|
IncludeImages: includeImages,
|
|
22304
22417
|
IncludeVenue: includeVenue,
|
|
22418
|
+
IncludeOffers: includeOffers,
|
|
22305
22419
|
IncludeOrders: includeOrders,
|
|
22306
22420
|
HasAvailability: hasAvailability,
|
|
22307
22421
|
ExcludeArchived: excludeArchived,
|
|
@@ -22450,6 +22564,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22450
22564
|
bookableOnly,
|
|
22451
22565
|
includeImages,
|
|
22452
22566
|
includeVenue,
|
|
22567
|
+
includeOffers,
|
|
22453
22568
|
includeOrders,
|
|
22454
22569
|
hasAvailability,
|
|
22455
22570
|
excludeArchived,
|
|
@@ -22495,6 +22610,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22495
22610
|
BookableOnly: bookableOnly,
|
|
22496
22611
|
IncludeImages: includeImages,
|
|
22497
22612
|
IncludeVenue: includeVenue,
|
|
22613
|
+
IncludeOffers: includeOffers,
|
|
22498
22614
|
IncludeOrders: includeOrders,
|
|
22499
22615
|
HasAvailability: hasAvailability,
|
|
22500
22616
|
ExcludeArchived: excludeArchived,
|
|
@@ -22594,6 +22710,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22594
22710
|
archived,
|
|
22595
22711
|
deleted,
|
|
22596
22712
|
openActiveUpdate,
|
|
22713
|
+
dashboardRequest,
|
|
22597
22714
|
networkId,
|
|
22598
22715
|
distance,
|
|
22599
22716
|
minAgeLte,
|
|
@@ -22643,6 +22760,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22643
22760
|
Archived: archived,
|
|
22644
22761
|
Deleted: deleted,
|
|
22645
22762
|
OpenActiveUpdate: openActiveUpdate,
|
|
22763
|
+
DashboardRequest: dashboardRequest,
|
|
22646
22764
|
NetworkId: networkId,
|
|
22647
22765
|
Distance: distance,
|
|
22648
22766
|
MinAgeLTE: minAgeLte,
|
|
@@ -22755,6 +22873,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22755
22873
|
bookableOnly,
|
|
22756
22874
|
includeImages,
|
|
22757
22875
|
includeVenue,
|
|
22876
|
+
includeOffers,
|
|
22758
22877
|
includeOrders,
|
|
22759
22878
|
hasAvailability,
|
|
22760
22879
|
excludeArchived,
|
|
@@ -22800,6 +22919,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22800
22919
|
BookableOnly: bookableOnly,
|
|
22801
22920
|
IncludeImages: includeImages,
|
|
22802
22921
|
IncludeVenue: includeVenue,
|
|
22922
|
+
IncludeOffers: includeOffers,
|
|
22803
22923
|
IncludeOrders: includeOrders,
|
|
22804
22924
|
HasAvailability: hasAvailability,
|
|
22805
22925
|
ExcludeArchived: excludeArchived,
|
|
@@ -22919,6 +23039,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22919
23039
|
archived,
|
|
22920
23040
|
deleted,
|
|
22921
23041
|
openActiveUpdate,
|
|
23042
|
+
dashboardRequest,
|
|
22922
23043
|
networkId,
|
|
22923
23044
|
distance,
|
|
22924
23045
|
minAgeLte,
|
|
@@ -22968,6 +23089,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22968
23089
|
Archived: archived,
|
|
22969
23090
|
Deleted: deleted,
|
|
22970
23091
|
OpenActiveUpdate: openActiveUpdate,
|
|
23092
|
+
DashboardRequest: dashboardRequest,
|
|
22971
23093
|
NetworkId: networkId,
|
|
22972
23094
|
Distance: distance,
|
|
22973
23095
|
MinAgeLTE: minAgeLte,
|
|
@@ -24629,6 +24751,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24629
24751
|
includeOpportunityOffers,
|
|
24630
24752
|
includeNextOpportunity,
|
|
24631
24753
|
distance,
|
|
24754
|
+
dashboardRequest,
|
|
24755
|
+
programmeIds,
|
|
24632
24756
|
pageNumber,
|
|
24633
24757
|
take,
|
|
24634
24758
|
skip,
|
|
@@ -24666,6 +24790,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24666
24790
|
IncludeOpportunityOffers: includeOpportunityOffers,
|
|
24667
24791
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
24668
24792
|
Distance: distance,
|
|
24793
|
+
DashboardRequest: dashboardRequest,
|
|
24794
|
+
ProgrammeIds: programmeIds,
|
|
24669
24795
|
PageNumber: pageNumber,
|
|
24670
24796
|
Take: take,
|
|
24671
24797
|
Skip: skip,
|
|
@@ -24733,6 +24859,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24733
24859
|
includeOpportunityOffers,
|
|
24734
24860
|
includeNextOpportunity,
|
|
24735
24861
|
distance,
|
|
24862
|
+
dashboardRequest,
|
|
24863
|
+
programmeIds,
|
|
24736
24864
|
pageNumber,
|
|
24737
24865
|
take,
|
|
24738
24866
|
skip,
|
|
@@ -24767,6 +24895,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24767
24895
|
IncludeOpportunityOffers: includeOpportunityOffers,
|
|
24768
24896
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
24769
24897
|
Distance: distance,
|
|
24898
|
+
DashboardRequest: dashboardRequest,
|
|
24899
|
+
ProgrammeIds: programmeIds,
|
|
24770
24900
|
PageNumber: pageNumber,
|
|
24771
24901
|
Take: take,
|
|
24772
24902
|
Skip: skip,
|
|
@@ -24883,6 +25013,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24883
25013
|
includeOpportunityOffers,
|
|
24884
25014
|
includeNextOpportunity,
|
|
24885
25015
|
distance,
|
|
25016
|
+
dashboardRequest,
|
|
25017
|
+
programmeIds,
|
|
24886
25018
|
pageNumber,
|
|
24887
25019
|
take,
|
|
24888
25020
|
skip,
|
|
@@ -24920,6 +25052,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
24920
25052
|
IncludeOpportunityOffers: includeOpportunityOffers,
|
|
24921
25053
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
24922
25054
|
Distance: distance,
|
|
25055
|
+
DashboardRequest: dashboardRequest,
|
|
25056
|
+
ProgrammeIds: programmeIds,
|
|
24923
25057
|
PageNumber: pageNumber,
|
|
24924
25058
|
Take: take,
|
|
24925
25059
|
Skip: skip,
|
|
@@ -26958,6 +27092,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
26958
27092
|
bookableOnly,
|
|
26959
27093
|
includeImages,
|
|
26960
27094
|
includeVenue,
|
|
27095
|
+
includeOffers,
|
|
26961
27096
|
includeOrders,
|
|
26962
27097
|
hasAvailability,
|
|
26963
27098
|
excludeArchived,
|
|
@@ -27000,6 +27135,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27000
27135
|
BookableOnly: bookableOnly,
|
|
27001
27136
|
IncludeImages: includeImages,
|
|
27002
27137
|
IncludeVenue: includeVenue,
|
|
27138
|
+
IncludeOffers: includeOffers,
|
|
27003
27139
|
IncludeOrders: includeOrders,
|
|
27004
27140
|
HasAvailability: hasAvailability,
|
|
27005
27141
|
ExcludeArchived: excludeArchived,
|
|
@@ -27114,6 +27250,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27114
27250
|
bookableOnly,
|
|
27115
27251
|
includeImages,
|
|
27116
27252
|
includeVenue,
|
|
27253
|
+
includeOffers,
|
|
27117
27254
|
includeOrders,
|
|
27118
27255
|
hasAvailability,
|
|
27119
27256
|
excludeArchived,
|
|
@@ -27156,6 +27293,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27156
27293
|
BookableOnly: bookableOnly,
|
|
27157
27294
|
IncludeImages: includeImages,
|
|
27158
27295
|
IncludeVenue: includeVenue,
|
|
27296
|
+
IncludeOffers: includeOffers,
|
|
27159
27297
|
IncludeOrders: includeOrders,
|
|
27160
27298
|
HasAvailability: hasAvailability,
|
|
27161
27299
|
ExcludeArchived: excludeArchived,
|
|
@@ -27207,6 +27345,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27207
27345
|
bookableOnly,
|
|
27208
27346
|
includeImages,
|
|
27209
27347
|
includeVenue,
|
|
27348
|
+
includeOffers,
|
|
27210
27349
|
includeOrders,
|
|
27211
27350
|
hasAvailability,
|
|
27212
27351
|
excludeArchived,
|
|
@@ -27249,6 +27388,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27249
27388
|
BookableOnly: bookableOnly,
|
|
27250
27389
|
IncludeImages: includeImages,
|
|
27251
27390
|
IncludeVenue: includeVenue,
|
|
27391
|
+
IncludeOffers: includeOffers,
|
|
27252
27392
|
IncludeOrders: includeOrders,
|
|
27253
27393
|
HasAvailability: hasAvailability,
|
|
27254
27394
|
ExcludeArchived: excludeArchived,
|
|
@@ -27300,6 +27440,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27300
27440
|
bookableOnly,
|
|
27301
27441
|
includeImages,
|
|
27302
27442
|
includeVenue,
|
|
27443
|
+
includeOffers,
|
|
27303
27444
|
includeOrders,
|
|
27304
27445
|
hasAvailability,
|
|
27305
27446
|
excludeArchived,
|
|
@@ -27342,6 +27483,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27342
27483
|
BookableOnly: bookableOnly,
|
|
27343
27484
|
IncludeImages: includeImages,
|
|
27344
27485
|
IncludeVenue: includeVenue,
|
|
27486
|
+
IncludeOffers: includeOffers,
|
|
27345
27487
|
IncludeOrders: includeOrders,
|
|
27346
27488
|
HasAvailability: hasAvailability,
|
|
27347
27489
|
ExcludeArchived: excludeArchived,
|
|
@@ -27950,7 +28092,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27950
28092
|
});
|
|
27951
28093
|
}
|
|
27952
28094
|
/**
|
|
27953
|
-
*
|
|
28095
|
+
* Assign deal to session.
|
|
27954
28096
|
* @returns Session OK
|
|
27955
28097
|
* @throws ApiError
|
|
27956
28098
|
*/
|
|
@@ -27973,7 +28115,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27973
28115
|
});
|
|
27974
28116
|
}
|
|
27975
28117
|
/**
|
|
27976
|
-
*
|
|
28118
|
+
* Unassign deal from session.
|
|
27977
28119
|
* @returns Session OK
|
|
27978
28120
|
* @throws ApiError
|
|
27979
28121
|
*/
|
|
@@ -27995,6 +28137,48 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27995
28137
|
}
|
|
27996
28138
|
});
|
|
27997
28139
|
}
|
|
28140
|
+
/**
|
|
28141
|
+
* Set the session as featured (displays more prominently on the storefront).
|
|
28142
|
+
* @returns Session OK
|
|
28143
|
+
* @throws ApiError
|
|
28144
|
+
*/
|
|
28145
|
+
setFeatured({
|
|
28146
|
+
id
|
|
28147
|
+
}) {
|
|
28148
|
+
return this.httpRequest.request({
|
|
28149
|
+
method: "PATCH",
|
|
28150
|
+
url: "/api/sessions/{id}/set-featured",
|
|
28151
|
+
path: {
|
|
28152
|
+
id
|
|
28153
|
+
},
|
|
28154
|
+
errors: {
|
|
28155
|
+
400: `Bad Request`,
|
|
28156
|
+
422: `Unprocessable Content`,
|
|
28157
|
+
500: `Internal Server Error`
|
|
28158
|
+
}
|
|
28159
|
+
});
|
|
28160
|
+
}
|
|
28161
|
+
/**
|
|
28162
|
+
* Remove the session as featured (displays as standard on the storefront).
|
|
28163
|
+
* @returns Session OK
|
|
28164
|
+
* @throws ApiError
|
|
28165
|
+
*/
|
|
28166
|
+
removeFeatured({
|
|
28167
|
+
id
|
|
28168
|
+
}) {
|
|
28169
|
+
return this.httpRequest.request({
|
|
28170
|
+
method: "PATCH",
|
|
28171
|
+
url: "/api/sessions/{id}/remove-featured",
|
|
28172
|
+
path: {
|
|
28173
|
+
id
|
|
28174
|
+
},
|
|
28175
|
+
errors: {
|
|
28176
|
+
400: `Bad Request`,
|
|
28177
|
+
422: `Unprocessable Content`,
|
|
28178
|
+
500: `Internal Server Error`
|
|
28179
|
+
}
|
|
28180
|
+
});
|
|
28181
|
+
}
|
|
27998
28182
|
/**
|
|
27999
28183
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
28000
28184
|
* @returns Session OK
|
|
@@ -28115,6 +28299,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28115
28299
|
archived,
|
|
28116
28300
|
deleted,
|
|
28117
28301
|
openActiveUpdate,
|
|
28302
|
+
dashboardRequest,
|
|
28118
28303
|
networkId,
|
|
28119
28304
|
distance,
|
|
28120
28305
|
minAgeLte,
|
|
@@ -28161,6 +28346,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28161
28346
|
Archived: archived,
|
|
28162
28347
|
Deleted: deleted,
|
|
28163
28348
|
OpenActiveUpdate: openActiveUpdate,
|
|
28349
|
+
DashboardRequest: dashboardRequest,
|
|
28164
28350
|
NetworkId: networkId,
|
|
28165
28351
|
Distance: distance,
|
|
28166
28352
|
MinAgeLTE: minAgeLte,
|
|
@@ -28279,6 +28465,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28279
28465
|
archived,
|
|
28280
28466
|
deleted,
|
|
28281
28467
|
openActiveUpdate,
|
|
28468
|
+
dashboardRequest,
|
|
28282
28469
|
networkId,
|
|
28283
28470
|
distance,
|
|
28284
28471
|
minAgeLte,
|
|
@@ -28325,6 +28512,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28325
28512
|
Archived: archived,
|
|
28326
28513
|
Deleted: deleted,
|
|
28327
28514
|
OpenActiveUpdate: openActiveUpdate,
|
|
28515
|
+
DashboardRequest: dashboardRequest,
|
|
28328
28516
|
NetworkId: networkId,
|
|
28329
28517
|
Distance: distance,
|
|
28330
28518
|
MinAgeLTE: minAgeLte,
|
|
@@ -28380,6 +28568,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28380
28568
|
archived,
|
|
28381
28569
|
deleted,
|
|
28382
28570
|
openActiveUpdate,
|
|
28571
|
+
dashboardRequest,
|
|
28383
28572
|
networkId,
|
|
28384
28573
|
distance,
|
|
28385
28574
|
minAgeLte,
|
|
@@ -28426,6 +28615,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28426
28615
|
Archived: archived,
|
|
28427
28616
|
Deleted: deleted,
|
|
28428
28617
|
OpenActiveUpdate: openActiveUpdate,
|
|
28618
|
+
DashboardRequest: dashboardRequest,
|
|
28429
28619
|
NetworkId: networkId,
|
|
28430
28620
|
Distance: distance,
|
|
28431
28621
|
MinAgeLTE: minAgeLte,
|
|
@@ -28481,6 +28671,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28481
28671
|
archived,
|
|
28482
28672
|
deleted,
|
|
28483
28673
|
openActiveUpdate,
|
|
28674
|
+
dashboardRequest,
|
|
28484
28675
|
networkId,
|
|
28485
28676
|
distance,
|
|
28486
28677
|
minAgeLte,
|
|
@@ -28527,6 +28718,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28527
28718
|
Archived: archived,
|
|
28528
28719
|
Deleted: deleted,
|
|
28529
28720
|
OpenActiveUpdate: openActiveUpdate,
|
|
28721
|
+
DashboardRequest: dashboardRequest,
|
|
28530
28722
|
NetworkId: networkId,
|
|
28531
28723
|
Distance: distance,
|
|
28532
28724
|
MinAgeLTE: minAgeLte,
|
|
@@ -38564,6 +38756,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
38564
38756
|
includeOpportunityOffers,
|
|
38565
38757
|
includeNextOpportunity,
|
|
38566
38758
|
distance,
|
|
38759
|
+
dashboardRequest,
|
|
38760
|
+
programmeIds,
|
|
38567
38761
|
pageNumber,
|
|
38568
38762
|
take,
|
|
38569
38763
|
skip,
|
|
@@ -38598,6 +38792,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
38598
38792
|
IncludeOpportunityOffers: includeOpportunityOffers,
|
|
38599
38793
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
38600
38794
|
Distance: distance,
|
|
38795
|
+
DashboardRequest: dashboardRequest,
|
|
38796
|
+
ProgrammeIds: programmeIds,
|
|
38601
38797
|
PageNumber: pageNumber,
|
|
38602
38798
|
Take: take,
|
|
38603
38799
|
Skip: skip,
|
|
@@ -38704,6 +38900,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
38704
38900
|
includeOpportunityOffers,
|
|
38705
38901
|
includeNextOpportunity,
|
|
38706
38902
|
distance,
|
|
38903
|
+
dashboardRequest,
|
|
38904
|
+
programmeIds,
|
|
38707
38905
|
pageNumber,
|
|
38708
38906
|
take,
|
|
38709
38907
|
skip,
|
|
@@ -38738,6 +38936,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
38738
38936
|
IncludeOpportunityOffers: includeOpportunityOffers,
|
|
38739
38937
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
38740
38938
|
Distance: distance,
|
|
38939
|
+
DashboardRequest: dashboardRequest,
|
|
38940
|
+
ProgrammeIds: programmeIds,
|
|
38741
38941
|
PageNumber: pageNumber,
|
|
38742
38942
|
Take: take,
|
|
38743
38943
|
Skip: skip,
|
|
@@ -38781,6 +38981,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
38781
38981
|
includeOpportunityOffers,
|
|
38782
38982
|
includeNextOpportunity,
|
|
38783
38983
|
distance,
|
|
38984
|
+
dashboardRequest,
|
|
38985
|
+
programmeIds,
|
|
38784
38986
|
pageNumber,
|
|
38785
38987
|
take,
|
|
38786
38988
|
skip,
|
|
@@ -38815,6 +39017,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
38815
39017
|
IncludeOpportunityOffers: includeOpportunityOffers,
|
|
38816
39018
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
38817
39019
|
Distance: distance,
|
|
39020
|
+
DashboardRequest: dashboardRequest,
|
|
39021
|
+
ProgrammeIds: programmeIds,
|
|
38818
39022
|
PageNumber: pageNumber,
|
|
38819
39023
|
Take: take,
|
|
38820
39024
|
Skip: skip,
|
|
@@ -38858,6 +39062,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
38858
39062
|
includeOpportunityOffers,
|
|
38859
39063
|
includeNextOpportunity,
|
|
38860
39064
|
distance,
|
|
39065
|
+
dashboardRequest,
|
|
39066
|
+
programmeIds,
|
|
38861
39067
|
pageNumber,
|
|
38862
39068
|
take,
|
|
38863
39069
|
skip,
|
|
@@ -38892,6 +39098,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
38892
39098
|
IncludeOpportunityOffers: includeOpportunityOffers,
|
|
38893
39099
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
38894
39100
|
Distance: distance,
|
|
39101
|
+
DashboardRequest: dashboardRequest,
|
|
39102
|
+
ProgrammeIds: programmeIds,
|
|
38895
39103
|
PageNumber: pageNumber,
|
|
38896
39104
|
Take: take,
|
|
38897
39105
|
Skip: skip,
|