reach-api-sdk 1.0.201 → 1.0.203
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 +1117 -31
- package/dist/reach-sdk.js +1234 -428
- package/package.json +1 -1
- package/src/apiClient.ts +6 -0
- package/src/definition/swagger.yaml +3928 -1186
- package/src/index.ts +9 -0
- package/src/models/CourseEmailWaitlistPatch.ts +22 -0
- package/src/models/CreateOffer.ts +16 -0
- package/src/models/GenericActivity.ts +12 -0
- package/src/models/Offer.ts +25 -0
- package/src/models/OfferPost.ts +16 -0
- package/src/models/OrderItemReportSummary.ts +38 -0
- package/src/models/Permission.ts +4 -0
- package/src/models/PermissionPatch.ts +4 -0
- package/src/models/ScheduledSessionEmailWaitlistPatch.ts +22 -0
- package/src/models/Session.ts +12 -0
- package/src/models/TemplateOffer.ts +16 -0
- package/src/models/UpdateOffer.ts +16 -0
- package/src/models/UserPermission.ts +4 -0
- package/src/models/UserPermissionPatch.ts +4 -0
- package/src/models/Venue.ts +4 -0
- package/src/models/VenueType.ts +42 -0
- package/src/models/VenueTypePage.ts +12 -0
- package/src/models/VenueTypePatch.ts +26 -0
- package/src/models/VenueTypePost.ts +22 -0
- package/src/services/CoursesService.ts +35 -0
- package/src/services/GenericActivityService.ts +36 -0
- package/src/services/OffersService.ts +30 -0
- package/src/services/OrderItemReportService.ts +124 -0
- package/src/services/OrderItemsService.ts +30 -0
- package/src/services/PlacesService.ts +57 -0
- package/src/services/PublicGenericActivityService.ts +24 -0
- package/src/services/PublicOrderItemsService.ts +12 -0
- package/src/services/PublicVenueTypesService.ts +401 -0
- package/src/services/PublicVenuesService.ts +18 -0
- package/src/services/ScheduledSessionsService.ts +35 -0
- package/src/services/VenueTypeService.ts +662 -0
- package/src/services/VenuesService.ts +30 -0
package/dist/reach-sdk.js
CHANGED
|
@@ -3337,6 +3337,30 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3337
3337
|
}
|
|
3338
3338
|
});
|
|
3339
3339
|
}
|
|
3340
|
+
/**
|
|
3341
|
+
* Emails all on waitlist for the opportunity />.
|
|
3342
|
+
* @returns ScheduledSession OK
|
|
3343
|
+
* @throws ApiError
|
|
3344
|
+
*/
|
|
3345
|
+
contactWaitlist({
|
|
3346
|
+
courseId,
|
|
3347
|
+
requestBody
|
|
3348
|
+
}) {
|
|
3349
|
+
return this.httpRequest.request({
|
|
3350
|
+
method: "PATCH",
|
|
3351
|
+
url: "/api/courses/{courseId}/email-waitlist",
|
|
3352
|
+
path: {
|
|
3353
|
+
courseId
|
|
3354
|
+
},
|
|
3355
|
+
body: requestBody,
|
|
3356
|
+
mediaType: "application/json",
|
|
3357
|
+
errors: {
|
|
3358
|
+
400: `Bad Request`,
|
|
3359
|
+
422: `Unprocessable Content`,
|
|
3360
|
+
500: `Internal Server Error`
|
|
3361
|
+
}
|
|
3362
|
+
});
|
|
3363
|
+
}
|
|
3340
3364
|
/**
|
|
3341
3365
|
* Sends the post course completion email />.
|
|
3342
3366
|
* @returns any OK
|
|
@@ -9266,6 +9290,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9266
9290
|
periodsOfWeek,
|
|
9267
9291
|
additionalSupport,
|
|
9268
9292
|
amenity,
|
|
9293
|
+
venueTypeIds,
|
|
9269
9294
|
programmeIds,
|
|
9270
9295
|
pageNumber,
|
|
9271
9296
|
take,
|
|
@@ -9316,6 +9341,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9316
9341
|
PeriodsOfWeek: periodsOfWeek,
|
|
9317
9342
|
AdditionalSupport: additionalSupport,
|
|
9318
9343
|
Amenity: amenity,
|
|
9344
|
+
VenueTypeIds: venueTypeIds,
|
|
9319
9345
|
ProgrammeIds: programmeIds,
|
|
9320
9346
|
PageNumber: pageNumber,
|
|
9321
9347
|
Take: take,
|
|
@@ -9396,6 +9422,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9396
9422
|
periodsOfWeek,
|
|
9397
9423
|
additionalSupport,
|
|
9398
9424
|
amenity,
|
|
9425
|
+
venueTypeIds,
|
|
9399
9426
|
programmeIds,
|
|
9400
9427
|
pageNumber,
|
|
9401
9428
|
take,
|
|
@@ -9446,6 +9473,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9446
9473
|
PeriodsOfWeek: periodsOfWeek,
|
|
9447
9474
|
AdditionalSupport: additionalSupport,
|
|
9448
9475
|
Amenity: amenity,
|
|
9476
|
+
VenueTypeIds: venueTypeIds,
|
|
9449
9477
|
ProgrammeIds: programmeIds,
|
|
9450
9478
|
PageNumber: pageNumber,
|
|
9451
9479
|
Take: take,
|
|
@@ -9505,6 +9533,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9505
9533
|
periodsOfWeek,
|
|
9506
9534
|
additionalSupport,
|
|
9507
9535
|
amenity,
|
|
9536
|
+
venueTypeIds,
|
|
9508
9537
|
programmeIds,
|
|
9509
9538
|
pageNumber,
|
|
9510
9539
|
take,
|
|
@@ -9555,6 +9584,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9555
9584
|
PeriodsOfWeek: periodsOfWeek,
|
|
9556
9585
|
AdditionalSupport: additionalSupport,
|
|
9557
9586
|
Amenity: amenity,
|
|
9587
|
+
VenueTypeIds: venueTypeIds,
|
|
9558
9588
|
ProgrammeIds: programmeIds,
|
|
9559
9589
|
PageNumber: pageNumber,
|
|
9560
9590
|
Take: take,
|
|
@@ -9614,6 +9644,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9614
9644
|
periodsOfWeek,
|
|
9615
9645
|
additionalSupport,
|
|
9616
9646
|
amenity,
|
|
9647
|
+
venueTypeIds,
|
|
9617
9648
|
programmeIds,
|
|
9618
9649
|
pageNumber,
|
|
9619
9650
|
take,
|
|
@@ -9664,6 +9695,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9664
9695
|
PeriodsOfWeek: periodsOfWeek,
|
|
9665
9696
|
AdditionalSupport: additionalSupport,
|
|
9666
9697
|
Amenity: amenity,
|
|
9698
|
+
VenueTypeIds: venueTypeIds,
|
|
9667
9699
|
ProgrammeIds: programmeIds,
|
|
9668
9700
|
PageNumber: pageNumber,
|
|
9669
9701
|
Take: take,
|
|
@@ -9723,6 +9755,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9723
9755
|
periodsOfWeek,
|
|
9724
9756
|
additionalSupport,
|
|
9725
9757
|
amenity,
|
|
9758
|
+
venueTypeIds,
|
|
9726
9759
|
programmeIds,
|
|
9727
9760
|
pageNumber,
|
|
9728
9761
|
take,
|
|
@@ -9773,6 +9806,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9773
9806
|
PeriodsOfWeek: periodsOfWeek,
|
|
9774
9807
|
AdditionalSupport: additionalSupport,
|
|
9775
9808
|
Amenity: amenity,
|
|
9809
|
+
VenueTypeIds: venueTypeIds,
|
|
9776
9810
|
ProgrammeIds: programmeIds,
|
|
9777
9811
|
PageNumber: pageNumber,
|
|
9778
9812
|
Take: take,
|
|
@@ -9832,6 +9866,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9832
9866
|
periodsOfWeek,
|
|
9833
9867
|
additionalSupport,
|
|
9834
9868
|
amenity,
|
|
9869
|
+
venueTypeIds,
|
|
9835
9870
|
programmeIds,
|
|
9836
9871
|
pageNumber,
|
|
9837
9872
|
take,
|
|
@@ -9882,6 +9917,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9882
9917
|
PeriodsOfWeek: periodsOfWeek,
|
|
9883
9918
|
AdditionalSupport: additionalSupport,
|
|
9884
9919
|
Amenity: amenity,
|
|
9920
|
+
VenueTypeIds: venueTypeIds,
|
|
9885
9921
|
ProgrammeIds: programmeIds,
|
|
9886
9922
|
PageNumber: pageNumber,
|
|
9887
9923
|
Take: take,
|
|
@@ -13207,6 +13243,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13207
13243
|
* @throws ApiError
|
|
13208
13244
|
*/
|
|
13209
13245
|
getPage({
|
|
13246
|
+
ids,
|
|
13210
13247
|
facilityId,
|
|
13211
13248
|
facilityIds,
|
|
13212
13249
|
facilityIndividualId,
|
|
@@ -13236,6 +13273,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13236
13273
|
method: "GET",
|
|
13237
13274
|
url: "/api/offers",
|
|
13238
13275
|
query: {
|
|
13276
|
+
Ids: ids,
|
|
13239
13277
|
FacilityId: facilityId,
|
|
13240
13278
|
FacilityIds: facilityIds,
|
|
13241
13279
|
FacilityIndividualId: facilityIndividualId,
|
|
@@ -13337,6 +13375,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13337
13375
|
* @throws ApiError
|
|
13338
13376
|
*/
|
|
13339
13377
|
exists({
|
|
13378
|
+
ids,
|
|
13340
13379
|
facilityId,
|
|
13341
13380
|
facilityIds,
|
|
13342
13381
|
facilityIndividualId,
|
|
@@ -13366,6 +13405,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13366
13405
|
method: "GET",
|
|
13367
13406
|
url: "/api/offers/exists",
|
|
13368
13407
|
query: {
|
|
13408
|
+
Ids: ids,
|
|
13369
13409
|
FacilityId: facilityId,
|
|
13370
13410
|
FacilityIds: facilityIds,
|
|
13371
13411
|
FacilityIndividualId: facilityIndividualId,
|
|
@@ -13404,6 +13444,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13404
13444
|
* @throws ApiError
|
|
13405
13445
|
*/
|
|
13406
13446
|
count({
|
|
13447
|
+
ids,
|
|
13407
13448
|
facilityId,
|
|
13408
13449
|
facilityIds,
|
|
13409
13450
|
facilityIndividualId,
|
|
@@ -13433,6 +13474,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13433
13474
|
method: "GET",
|
|
13434
13475
|
url: "/api/offers/count",
|
|
13435
13476
|
query: {
|
|
13477
|
+
Ids: ids,
|
|
13436
13478
|
FacilityId: facilityId,
|
|
13437
13479
|
FacilityIds: facilityIds,
|
|
13438
13480
|
FacilityIndividualId: facilityIndividualId,
|
|
@@ -13471,6 +13513,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13471
13513
|
* @throws ApiError
|
|
13472
13514
|
*/
|
|
13473
13515
|
getListWithoutReferences({
|
|
13516
|
+
ids,
|
|
13474
13517
|
facilityId,
|
|
13475
13518
|
facilityIds,
|
|
13476
13519
|
facilityIndividualId,
|
|
@@ -13500,6 +13543,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13500
13543
|
method: "GET",
|
|
13501
13544
|
url: "/api/offers/without-references",
|
|
13502
13545
|
query: {
|
|
13546
|
+
Ids: ids,
|
|
13503
13547
|
FacilityId: facilityId,
|
|
13504
13548
|
FacilityIds: facilityIds,
|
|
13505
13549
|
FacilityIndividualId: facilityIndividualId,
|
|
@@ -13538,6 +13582,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13538
13582
|
* @throws ApiError
|
|
13539
13583
|
*/
|
|
13540
13584
|
getListIdName({
|
|
13585
|
+
ids,
|
|
13541
13586
|
facilityId,
|
|
13542
13587
|
facilityIds,
|
|
13543
13588
|
facilityIndividualId,
|
|
@@ -13567,6 +13612,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13567
13612
|
method: "GET",
|
|
13568
13613
|
url: "/api/offers/id-name",
|
|
13569
13614
|
query: {
|
|
13615
|
+
Ids: ids,
|
|
13570
13616
|
FacilityId: facilityId,
|
|
13571
13617
|
FacilityIds: facilityIds,
|
|
13572
13618
|
FacilityIndividualId: facilityIndividualId,
|
|
@@ -15011,111 +15057,11 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
15011
15057
|
});
|
|
15012
15058
|
}
|
|
15013
15059
|
/**
|
|
15014
|
-
*
|
|
15015
|
-
* @returns
|
|
15016
|
-
* @throws ApiError
|
|
15017
|
-
*/
|
|
15018
|
-
post({
|
|
15019
|
-
requestBody
|
|
15020
|
-
}) {
|
|
15021
|
-
return this.httpRequest.request({
|
|
15022
|
-
method: "POST",
|
|
15023
|
-
url: "/api/order-items-report/v2-temporary-route",
|
|
15024
|
-
body: requestBody,
|
|
15025
|
-
mediaType: "application/json",
|
|
15026
|
-
errors: {
|
|
15027
|
-
400: `Bad Request`,
|
|
15028
|
-
422: `Unprocessable Content`,
|
|
15029
|
-
500: `Internal Server Error`
|
|
15030
|
-
}
|
|
15031
|
-
});
|
|
15032
|
-
}
|
|
15033
|
-
/**
|
|
15034
|
-
* Patches the resource.
|
|
15035
|
-
* @returns OrderItemReport OK
|
|
15036
|
-
* @throws ApiError
|
|
15037
|
-
*/
|
|
15038
|
-
patch({
|
|
15039
|
-
requestBody
|
|
15040
|
-
}) {
|
|
15041
|
-
return this.httpRequest.request({
|
|
15042
|
-
method: "PATCH",
|
|
15043
|
-
url: "/api/order-items-report/v2-temporary-route",
|
|
15044
|
-
body: requestBody,
|
|
15045
|
-
mediaType: "application/json",
|
|
15046
|
-
errors: {
|
|
15047
|
-
400: `Bad Request`,
|
|
15048
|
-
422: `Unprocessable Content`,
|
|
15049
|
-
500: `Internal Server Error`
|
|
15050
|
-
}
|
|
15051
|
-
});
|
|
15052
|
-
}
|
|
15053
|
-
/**
|
|
15054
|
-
* Inserts a list of resources.
|
|
15055
|
-
* @returns OrderItemReport OK
|
|
15056
|
-
* @throws ApiError
|
|
15057
|
-
*/
|
|
15058
|
-
postList({
|
|
15059
|
-
requestBody
|
|
15060
|
-
}) {
|
|
15061
|
-
return this.httpRequest.request({
|
|
15062
|
-
method: "POST",
|
|
15063
|
-
url: "/api/order-items-report/v2-temporary-route/list",
|
|
15064
|
-
body: requestBody,
|
|
15065
|
-
mediaType: "application/json",
|
|
15066
|
-
errors: {
|
|
15067
|
-
400: `Bad Request`,
|
|
15068
|
-
422: `Unprocessable Content`,
|
|
15069
|
-
500: `Internal Server Error`
|
|
15070
|
-
}
|
|
15071
|
-
});
|
|
15072
|
-
}
|
|
15073
|
-
/**
|
|
15074
|
-
* Patches the resource.
|
|
15075
|
-
* @returns OrderItemReport OK
|
|
15060
|
+
* Get summary for order items.
|
|
15061
|
+
* @returns OrderItemReportSummary OK
|
|
15076
15062
|
* @throws ApiError
|
|
15077
15063
|
*/
|
|
15078
|
-
|
|
15079
|
-
requestBody
|
|
15080
|
-
}) {
|
|
15081
|
-
return this.httpRequest.request({
|
|
15082
|
-
method: "PATCH",
|
|
15083
|
-
url: "/api/order-items-report/v2-temporary-route/with-references",
|
|
15084
|
-
body: requestBody,
|
|
15085
|
-
mediaType: "application/json",
|
|
15086
|
-
errors: {
|
|
15087
|
-
400: `Bad Request`,
|
|
15088
|
-
422: `Unprocessable Content`,
|
|
15089
|
-
500: `Internal Server Error`
|
|
15090
|
-
}
|
|
15091
|
-
});
|
|
15092
|
-
}
|
|
15093
|
-
/**
|
|
15094
|
-
* Deletes the resource.
|
|
15095
|
-
* @returns any OK
|
|
15096
|
-
* @throws ApiError
|
|
15097
|
-
*/
|
|
15098
|
-
deleteByObject({
|
|
15099
|
-
requestBody
|
|
15100
|
-
}) {
|
|
15101
|
-
return this.httpRequest.request({
|
|
15102
|
-
method: "DELETE",
|
|
15103
|
-
url: "/api/order-items-report",
|
|
15104
|
-
body: requestBody,
|
|
15105
|
-
mediaType: "application/json",
|
|
15106
|
-
errors: {
|
|
15107
|
-
400: `Bad Request`,
|
|
15108
|
-
422: `Unprocessable Content`,
|
|
15109
|
-
500: `Internal Server Error`
|
|
15110
|
-
}
|
|
15111
|
-
});
|
|
15112
|
-
}
|
|
15113
|
-
/**
|
|
15114
|
-
* Gets a list of resources.
|
|
15115
|
-
* @returns OrderItemReportPage OK
|
|
15116
|
-
* @throws ApiError
|
|
15117
|
-
*/
|
|
15118
|
-
getPage({
|
|
15064
|
+
getSummary({
|
|
15119
15065
|
venueId,
|
|
15120
15066
|
userId,
|
|
15121
15067
|
programmeId,
|
|
@@ -15136,7 +15082,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
15136
15082
|
}) {
|
|
15137
15083
|
return this.httpRequest.request({
|
|
15138
15084
|
method: "GET",
|
|
15139
|
-
url: "/api/order-items-report",
|
|
15085
|
+
url: "/api/order-items-report/summary",
|
|
15140
15086
|
query: {
|
|
15141
15087
|
VenueId: venueId,
|
|
15142
15088
|
UserId: userId,
|
|
@@ -15164,19 +15110,18 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
15164
15110
|
});
|
|
15165
15111
|
}
|
|
15166
15112
|
/**
|
|
15167
|
-
*
|
|
15168
|
-
* @returns
|
|
15113
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
15114
|
+
* @returns OrderItemReport OK
|
|
15169
15115
|
* @throws ApiError
|
|
15170
15116
|
*/
|
|
15171
|
-
|
|
15172
|
-
|
|
15117
|
+
post({
|
|
15118
|
+
requestBody
|
|
15173
15119
|
}) {
|
|
15174
15120
|
return this.httpRequest.request({
|
|
15175
|
-
method: "
|
|
15176
|
-
url: "/api/order-items-report/
|
|
15177
|
-
|
|
15178
|
-
|
|
15179
|
-
},
|
|
15121
|
+
method: "POST",
|
|
15122
|
+
url: "/api/order-items-report/v2-temporary-route",
|
|
15123
|
+
body: requestBody,
|
|
15124
|
+
mediaType: "application/json",
|
|
15180
15125
|
errors: {
|
|
15181
15126
|
400: `Bad Request`,
|
|
15182
15127
|
422: `Unprocessable Content`,
|
|
@@ -15185,19 +15130,18 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
15185
15130
|
});
|
|
15186
15131
|
}
|
|
15187
15132
|
/**
|
|
15188
|
-
*
|
|
15133
|
+
* Patches the resource.
|
|
15189
15134
|
* @returns OrderItemReport OK
|
|
15190
15135
|
* @throws ApiError
|
|
15191
15136
|
*/
|
|
15192
|
-
|
|
15193
|
-
|
|
15137
|
+
patch({
|
|
15138
|
+
requestBody
|
|
15194
15139
|
}) {
|
|
15195
15140
|
return this.httpRequest.request({
|
|
15196
|
-
method: "
|
|
15197
|
-
url: "/api/order-items-report/
|
|
15198
|
-
|
|
15199
|
-
|
|
15200
|
-
},
|
|
15141
|
+
method: "PATCH",
|
|
15142
|
+
url: "/api/order-items-report/v2-temporary-route",
|
|
15143
|
+
body: requestBody,
|
|
15144
|
+
mediaType: "application/json",
|
|
15201
15145
|
errors: {
|
|
15202
15146
|
400: `Bad Request`,
|
|
15203
15147
|
422: `Unprocessable Content`,
|
|
@@ -15206,19 +15150,18 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
15206
15150
|
});
|
|
15207
15151
|
}
|
|
15208
15152
|
/**
|
|
15209
|
-
*
|
|
15210
|
-
* @returns
|
|
15153
|
+
* Inserts a list of resources.
|
|
15154
|
+
* @returns OrderItemReport OK
|
|
15211
15155
|
* @throws ApiError
|
|
15212
15156
|
*/
|
|
15213
|
-
|
|
15214
|
-
|
|
15157
|
+
postList({
|
|
15158
|
+
requestBody
|
|
15215
15159
|
}) {
|
|
15216
15160
|
return this.httpRequest.request({
|
|
15217
|
-
method: "
|
|
15218
|
-
url: "/api/order-items-report/
|
|
15219
|
-
|
|
15220
|
-
|
|
15221
|
-
},
|
|
15161
|
+
method: "POST",
|
|
15162
|
+
url: "/api/order-items-report/v2-temporary-route/list",
|
|
15163
|
+
body: requestBody,
|
|
15164
|
+
mediaType: "application/json",
|
|
15222
15165
|
errors: {
|
|
15223
15166
|
400: `Bad Request`,
|
|
15224
15167
|
422: `Unprocessable Content`,
|
|
@@ -15227,51 +15170,18 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
15227
15170
|
});
|
|
15228
15171
|
}
|
|
15229
15172
|
/**
|
|
15230
|
-
*
|
|
15231
|
-
* @returns
|
|
15173
|
+
* Patches the resource.
|
|
15174
|
+
* @returns OrderItemReport OK
|
|
15232
15175
|
* @throws ApiError
|
|
15233
15176
|
*/
|
|
15234
|
-
|
|
15235
|
-
|
|
15236
|
-
userId,
|
|
15237
|
-
programmeId,
|
|
15238
|
-
startDateGte,
|
|
15239
|
-
startDateLte,
|
|
15240
|
-
dateRange,
|
|
15241
|
-
pageNumber,
|
|
15242
|
-
take,
|
|
15243
|
-
skip,
|
|
15244
|
-
limitListRequests,
|
|
15245
|
-
tenantId,
|
|
15246
|
-
modifiedById,
|
|
15247
|
-
modifiedByIds,
|
|
15248
|
-
dateCreatedGte,
|
|
15249
|
-
dateCreatedLte,
|
|
15250
|
-
isLive,
|
|
15251
|
-
sortOrderDirection
|
|
15177
|
+
patchWithReferences({
|
|
15178
|
+
requestBody
|
|
15252
15179
|
}) {
|
|
15253
15180
|
return this.httpRequest.request({
|
|
15254
|
-
method: "
|
|
15255
|
-
url: "/api/order-items-report/
|
|
15256
|
-
|
|
15257
|
-
|
|
15258
|
-
UserId: userId,
|
|
15259
|
-
ProgrammeId: programmeId,
|
|
15260
|
-
StartDateGTE: startDateGte,
|
|
15261
|
-
StartDateLTE: startDateLte,
|
|
15262
|
-
DateRange: dateRange,
|
|
15263
|
-
PageNumber: pageNumber,
|
|
15264
|
-
Take: take,
|
|
15265
|
-
Skip: skip,
|
|
15266
|
-
LimitListRequests: limitListRequests,
|
|
15267
|
-
TenantId: tenantId,
|
|
15268
|
-
ModifiedById: modifiedById,
|
|
15269
|
-
ModifiedByIds: modifiedByIds,
|
|
15270
|
-
DateCreatedGTE: dateCreatedGte,
|
|
15271
|
-
DateCreatedLTE: dateCreatedLte,
|
|
15272
|
-
IsLive: isLive,
|
|
15273
|
-
SortOrderDirection: sortOrderDirection
|
|
15274
|
-
},
|
|
15181
|
+
method: "PATCH",
|
|
15182
|
+
url: "/api/order-items-report/v2-temporary-route/with-references",
|
|
15183
|
+
body: requestBody,
|
|
15184
|
+
mediaType: "application/json",
|
|
15275
15185
|
errors: {
|
|
15276
15186
|
400: `Bad Request`,
|
|
15277
15187
|
422: `Unprocessable Content`,
|
|
@@ -15280,51 +15190,18 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
15280
15190
|
});
|
|
15281
15191
|
}
|
|
15282
15192
|
/**
|
|
15283
|
-
*
|
|
15284
|
-
* @returns
|
|
15193
|
+
* Deletes the resource.
|
|
15194
|
+
* @returns any OK
|
|
15285
15195
|
* @throws ApiError
|
|
15286
15196
|
*/
|
|
15287
|
-
|
|
15288
|
-
|
|
15289
|
-
userId,
|
|
15290
|
-
programmeId,
|
|
15291
|
-
startDateGte,
|
|
15292
|
-
startDateLte,
|
|
15293
|
-
dateRange,
|
|
15294
|
-
pageNumber,
|
|
15295
|
-
take,
|
|
15296
|
-
skip,
|
|
15297
|
-
limitListRequests,
|
|
15298
|
-
tenantId,
|
|
15299
|
-
modifiedById,
|
|
15300
|
-
modifiedByIds,
|
|
15301
|
-
dateCreatedGte,
|
|
15302
|
-
dateCreatedLte,
|
|
15303
|
-
isLive,
|
|
15304
|
-
sortOrderDirection
|
|
15197
|
+
deleteByObject({
|
|
15198
|
+
requestBody
|
|
15305
15199
|
}) {
|
|
15306
15200
|
return this.httpRequest.request({
|
|
15307
|
-
method: "
|
|
15308
|
-
url: "/api/order-items-report
|
|
15309
|
-
|
|
15310
|
-
|
|
15311
|
-
UserId: userId,
|
|
15312
|
-
ProgrammeId: programmeId,
|
|
15313
|
-
StartDateGTE: startDateGte,
|
|
15314
|
-
StartDateLTE: startDateLte,
|
|
15315
|
-
DateRange: dateRange,
|
|
15316
|
-
PageNumber: pageNumber,
|
|
15317
|
-
Take: take,
|
|
15318
|
-
Skip: skip,
|
|
15319
|
-
LimitListRequests: limitListRequests,
|
|
15320
|
-
TenantId: tenantId,
|
|
15321
|
-
ModifiedById: modifiedById,
|
|
15322
|
-
ModifiedByIds: modifiedByIds,
|
|
15323
|
-
DateCreatedGTE: dateCreatedGte,
|
|
15324
|
-
DateCreatedLTE: dateCreatedLte,
|
|
15325
|
-
IsLive: isLive,
|
|
15326
|
-
SortOrderDirection: sortOrderDirection
|
|
15327
|
-
},
|
|
15201
|
+
method: "DELETE",
|
|
15202
|
+
url: "/api/order-items-report",
|
|
15203
|
+
body: requestBody,
|
|
15204
|
+
mediaType: "application/json",
|
|
15328
15205
|
errors: {
|
|
15329
15206
|
400: `Bad Request`,
|
|
15330
15207
|
422: `Unprocessable Content`,
|
|
@@ -15333,11 +15210,11 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
15333
15210
|
});
|
|
15334
15211
|
}
|
|
15335
15212
|
/**
|
|
15336
|
-
* Gets a list of resources
|
|
15337
|
-
* @returns
|
|
15213
|
+
* Gets a list of resources.
|
|
15214
|
+
* @returns OrderItemReportPage OK
|
|
15338
15215
|
* @throws ApiError
|
|
15339
15216
|
*/
|
|
15340
|
-
|
|
15217
|
+
getPage({
|
|
15341
15218
|
venueId,
|
|
15342
15219
|
userId,
|
|
15343
15220
|
programmeId,
|
|
@@ -15358,7 +15235,229 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
15358
15235
|
}) {
|
|
15359
15236
|
return this.httpRequest.request({
|
|
15360
15237
|
method: "GET",
|
|
15361
|
-
url: "/api/order-items-report
|
|
15238
|
+
url: "/api/order-items-report",
|
|
15239
|
+
query: {
|
|
15240
|
+
VenueId: venueId,
|
|
15241
|
+
UserId: userId,
|
|
15242
|
+
ProgrammeId: programmeId,
|
|
15243
|
+
StartDateGTE: startDateGte,
|
|
15244
|
+
StartDateLTE: startDateLte,
|
|
15245
|
+
DateRange: dateRange,
|
|
15246
|
+
PageNumber: pageNumber,
|
|
15247
|
+
Take: take,
|
|
15248
|
+
Skip: skip,
|
|
15249
|
+
LimitListRequests: limitListRequests,
|
|
15250
|
+
TenantId: tenantId,
|
|
15251
|
+
ModifiedById: modifiedById,
|
|
15252
|
+
ModifiedByIds: modifiedByIds,
|
|
15253
|
+
DateCreatedGTE: dateCreatedGte,
|
|
15254
|
+
DateCreatedLTE: dateCreatedLte,
|
|
15255
|
+
IsLive: isLive,
|
|
15256
|
+
SortOrderDirection: sortOrderDirection
|
|
15257
|
+
},
|
|
15258
|
+
errors: {
|
|
15259
|
+
400: `Bad Request`,
|
|
15260
|
+
422: `Unprocessable Content`,
|
|
15261
|
+
500: `Internal Server Error`
|
|
15262
|
+
}
|
|
15263
|
+
});
|
|
15264
|
+
}
|
|
15265
|
+
/**
|
|
15266
|
+
* Deletes the resource.
|
|
15267
|
+
* @returns any OK
|
|
15268
|
+
* @throws ApiError
|
|
15269
|
+
*/
|
|
15270
|
+
deleteById({
|
|
15271
|
+
id
|
|
15272
|
+
}) {
|
|
15273
|
+
return this.httpRequest.request({
|
|
15274
|
+
method: "DELETE",
|
|
15275
|
+
url: "/api/order-items-report/{id}",
|
|
15276
|
+
path: {
|
|
15277
|
+
id
|
|
15278
|
+
},
|
|
15279
|
+
errors: {
|
|
15280
|
+
400: `Bad Request`,
|
|
15281
|
+
422: `Unprocessable Content`,
|
|
15282
|
+
500: `Internal Server Error`
|
|
15283
|
+
}
|
|
15284
|
+
});
|
|
15285
|
+
}
|
|
15286
|
+
/**
|
|
15287
|
+
* Gets the resource by its Id.
|
|
15288
|
+
* @returns OrderItemReport OK
|
|
15289
|
+
* @throws ApiError
|
|
15290
|
+
*/
|
|
15291
|
+
getObject({
|
|
15292
|
+
id
|
|
15293
|
+
}) {
|
|
15294
|
+
return this.httpRequest.request({
|
|
15295
|
+
method: "GET",
|
|
15296
|
+
url: "/api/order-items-report/{id}",
|
|
15297
|
+
path: {
|
|
15298
|
+
id
|
|
15299
|
+
},
|
|
15300
|
+
errors: {
|
|
15301
|
+
400: `Bad Request`,
|
|
15302
|
+
422: `Unprocessable Content`,
|
|
15303
|
+
500: `Internal Server Error`
|
|
15304
|
+
}
|
|
15305
|
+
});
|
|
15306
|
+
}
|
|
15307
|
+
/**
|
|
15308
|
+
* Returns a value indicating whether the resource is deletable.
|
|
15309
|
+
* @returns boolean OK
|
|
15310
|
+
* @throws ApiError
|
|
15311
|
+
*/
|
|
15312
|
+
canDelete({
|
|
15313
|
+
id
|
|
15314
|
+
}) {
|
|
15315
|
+
return this.httpRequest.request({
|
|
15316
|
+
method: "GET",
|
|
15317
|
+
url: "/api/order-items-report/{id}/deletable",
|
|
15318
|
+
path: {
|
|
15319
|
+
id
|
|
15320
|
+
},
|
|
15321
|
+
errors: {
|
|
15322
|
+
400: `Bad Request`,
|
|
15323
|
+
422: `Unprocessable Content`,
|
|
15324
|
+
500: `Internal Server Error`
|
|
15325
|
+
}
|
|
15326
|
+
});
|
|
15327
|
+
}
|
|
15328
|
+
/**
|
|
15329
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
15330
|
+
* @returns boolean OK
|
|
15331
|
+
* @throws ApiError
|
|
15332
|
+
*/
|
|
15333
|
+
exists({
|
|
15334
|
+
venueId,
|
|
15335
|
+
userId,
|
|
15336
|
+
programmeId,
|
|
15337
|
+
startDateGte,
|
|
15338
|
+
startDateLte,
|
|
15339
|
+
dateRange,
|
|
15340
|
+
pageNumber,
|
|
15341
|
+
take,
|
|
15342
|
+
skip,
|
|
15343
|
+
limitListRequests,
|
|
15344
|
+
tenantId,
|
|
15345
|
+
modifiedById,
|
|
15346
|
+
modifiedByIds,
|
|
15347
|
+
dateCreatedGte,
|
|
15348
|
+
dateCreatedLte,
|
|
15349
|
+
isLive,
|
|
15350
|
+
sortOrderDirection
|
|
15351
|
+
}) {
|
|
15352
|
+
return this.httpRequest.request({
|
|
15353
|
+
method: "GET",
|
|
15354
|
+
url: "/api/order-items-report/exists",
|
|
15355
|
+
query: {
|
|
15356
|
+
VenueId: venueId,
|
|
15357
|
+
UserId: userId,
|
|
15358
|
+
ProgrammeId: programmeId,
|
|
15359
|
+
StartDateGTE: startDateGte,
|
|
15360
|
+
StartDateLTE: startDateLte,
|
|
15361
|
+
DateRange: dateRange,
|
|
15362
|
+
PageNumber: pageNumber,
|
|
15363
|
+
Take: take,
|
|
15364
|
+
Skip: skip,
|
|
15365
|
+
LimitListRequests: limitListRequests,
|
|
15366
|
+
TenantId: tenantId,
|
|
15367
|
+
ModifiedById: modifiedById,
|
|
15368
|
+
ModifiedByIds: modifiedByIds,
|
|
15369
|
+
DateCreatedGTE: dateCreatedGte,
|
|
15370
|
+
DateCreatedLTE: dateCreatedLte,
|
|
15371
|
+
IsLive: isLive,
|
|
15372
|
+
SortOrderDirection: sortOrderDirection
|
|
15373
|
+
},
|
|
15374
|
+
errors: {
|
|
15375
|
+
400: `Bad Request`,
|
|
15376
|
+
422: `Unprocessable Content`,
|
|
15377
|
+
500: `Internal Server Error`
|
|
15378
|
+
}
|
|
15379
|
+
});
|
|
15380
|
+
}
|
|
15381
|
+
/**
|
|
15382
|
+
* Returns the number of results in the database given the provided search params.
|
|
15383
|
+
* @returns number OK
|
|
15384
|
+
* @throws ApiError
|
|
15385
|
+
*/
|
|
15386
|
+
count({
|
|
15387
|
+
venueId,
|
|
15388
|
+
userId,
|
|
15389
|
+
programmeId,
|
|
15390
|
+
startDateGte,
|
|
15391
|
+
startDateLte,
|
|
15392
|
+
dateRange,
|
|
15393
|
+
pageNumber,
|
|
15394
|
+
take,
|
|
15395
|
+
skip,
|
|
15396
|
+
limitListRequests,
|
|
15397
|
+
tenantId,
|
|
15398
|
+
modifiedById,
|
|
15399
|
+
modifiedByIds,
|
|
15400
|
+
dateCreatedGte,
|
|
15401
|
+
dateCreatedLte,
|
|
15402
|
+
isLive,
|
|
15403
|
+
sortOrderDirection
|
|
15404
|
+
}) {
|
|
15405
|
+
return this.httpRequest.request({
|
|
15406
|
+
method: "GET",
|
|
15407
|
+
url: "/api/order-items-report/count",
|
|
15408
|
+
query: {
|
|
15409
|
+
VenueId: venueId,
|
|
15410
|
+
UserId: userId,
|
|
15411
|
+
ProgrammeId: programmeId,
|
|
15412
|
+
StartDateGTE: startDateGte,
|
|
15413
|
+
StartDateLTE: startDateLte,
|
|
15414
|
+
DateRange: dateRange,
|
|
15415
|
+
PageNumber: pageNumber,
|
|
15416
|
+
Take: take,
|
|
15417
|
+
Skip: skip,
|
|
15418
|
+
LimitListRequests: limitListRequests,
|
|
15419
|
+
TenantId: tenantId,
|
|
15420
|
+
ModifiedById: modifiedById,
|
|
15421
|
+
ModifiedByIds: modifiedByIds,
|
|
15422
|
+
DateCreatedGTE: dateCreatedGte,
|
|
15423
|
+
DateCreatedLTE: dateCreatedLte,
|
|
15424
|
+
IsLive: isLive,
|
|
15425
|
+
SortOrderDirection: sortOrderDirection
|
|
15426
|
+
},
|
|
15427
|
+
errors: {
|
|
15428
|
+
400: `Bad Request`,
|
|
15429
|
+
422: `Unprocessable Content`,
|
|
15430
|
+
500: `Internal Server Error`
|
|
15431
|
+
}
|
|
15432
|
+
});
|
|
15433
|
+
}
|
|
15434
|
+
/**
|
|
15435
|
+
* Gets a list of resources unpaged and without references.
|
|
15436
|
+
* @returns OrderItemReport OK
|
|
15437
|
+
* @throws ApiError
|
|
15438
|
+
*/
|
|
15439
|
+
getListWithoutReferences({
|
|
15440
|
+
venueId,
|
|
15441
|
+
userId,
|
|
15442
|
+
programmeId,
|
|
15443
|
+
startDateGte,
|
|
15444
|
+
startDateLte,
|
|
15445
|
+
dateRange,
|
|
15446
|
+
pageNumber,
|
|
15447
|
+
take,
|
|
15448
|
+
skip,
|
|
15449
|
+
limitListRequests,
|
|
15450
|
+
tenantId,
|
|
15451
|
+
modifiedById,
|
|
15452
|
+
modifiedByIds,
|
|
15453
|
+
dateCreatedGte,
|
|
15454
|
+
dateCreatedLte,
|
|
15455
|
+
isLive,
|
|
15456
|
+
sortOrderDirection
|
|
15457
|
+
}) {
|
|
15458
|
+
return this.httpRequest.request({
|
|
15459
|
+
method: "GET",
|
|
15460
|
+
url: "/api/order-items-report/without-references",
|
|
15362
15461
|
query: {
|
|
15363
15462
|
VenueId: venueId,
|
|
15364
15463
|
UserId: userId,
|
|
@@ -15580,6 +15679,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
15580
15679
|
scheduledSessionId,
|
|
15581
15680
|
slotId,
|
|
15582
15681
|
courseId,
|
|
15682
|
+
offerId,
|
|
15583
15683
|
status,
|
|
15584
15684
|
statuses,
|
|
15585
15685
|
parentOrderItemId,
|
|
@@ -15607,6 +15707,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
15607
15707
|
ScheduledSessionId: scheduledSessionId,
|
|
15608
15708
|
SlotId: slotId,
|
|
15609
15709
|
CourseId: courseId,
|
|
15710
|
+
OfferId: offerId,
|
|
15610
15711
|
Status: status,
|
|
15611
15712
|
Statuses: statuses,
|
|
15612
15713
|
ParentOrderItemId: parentOrderItemId,
|
|
@@ -15706,6 +15807,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
15706
15807
|
scheduledSessionId,
|
|
15707
15808
|
slotId,
|
|
15708
15809
|
courseId,
|
|
15810
|
+
offerId,
|
|
15709
15811
|
status,
|
|
15710
15812
|
statuses,
|
|
15711
15813
|
parentOrderItemId,
|
|
@@ -15733,6 +15835,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
15733
15835
|
ScheduledSessionId: scheduledSessionId,
|
|
15734
15836
|
SlotId: slotId,
|
|
15735
15837
|
CourseId: courseId,
|
|
15838
|
+
OfferId: offerId,
|
|
15736
15839
|
Status: status,
|
|
15737
15840
|
Statuses: statuses,
|
|
15738
15841
|
ParentOrderItemId: parentOrderItemId,
|
|
@@ -15769,6 +15872,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
15769
15872
|
scheduledSessionId,
|
|
15770
15873
|
slotId,
|
|
15771
15874
|
courseId,
|
|
15875
|
+
offerId,
|
|
15772
15876
|
status,
|
|
15773
15877
|
statuses,
|
|
15774
15878
|
parentOrderItemId,
|
|
@@ -15796,6 +15900,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
15796
15900
|
ScheduledSessionId: scheduledSessionId,
|
|
15797
15901
|
SlotId: slotId,
|
|
15798
15902
|
CourseId: courseId,
|
|
15903
|
+
OfferId: offerId,
|
|
15799
15904
|
Status: status,
|
|
15800
15905
|
Statuses: statuses,
|
|
15801
15906
|
ParentOrderItemId: parentOrderItemId,
|
|
@@ -15832,6 +15937,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
15832
15937
|
scheduledSessionId,
|
|
15833
15938
|
slotId,
|
|
15834
15939
|
courseId,
|
|
15940
|
+
offerId,
|
|
15835
15941
|
status,
|
|
15836
15942
|
statuses,
|
|
15837
15943
|
parentOrderItemId,
|
|
@@ -15859,6 +15965,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
15859
15965
|
ScheduledSessionId: scheduledSessionId,
|
|
15860
15966
|
SlotId: slotId,
|
|
15861
15967
|
CourseId: courseId,
|
|
15968
|
+
OfferId: offerId,
|
|
15862
15969
|
Status: status,
|
|
15863
15970
|
Statuses: statuses,
|
|
15864
15971
|
ParentOrderItemId: parentOrderItemId,
|
|
@@ -15895,6 +16002,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
15895
16002
|
scheduledSessionId,
|
|
15896
16003
|
slotId,
|
|
15897
16004
|
courseId,
|
|
16005
|
+
offerId,
|
|
15898
16006
|
status,
|
|
15899
16007
|
statuses,
|
|
15900
16008
|
parentOrderItemId,
|
|
@@ -15922,6 +16030,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
15922
16030
|
ScheduledSessionId: scheduledSessionId,
|
|
15923
16031
|
SlotId: slotId,
|
|
15924
16032
|
CourseId: courseId,
|
|
16033
|
+
OfferId: offerId,
|
|
15925
16034
|
Status: status,
|
|
15926
16035
|
Statuses: statuses,
|
|
15927
16036
|
ParentOrderItemId: parentOrderItemId,
|
|
@@ -18513,6 +18622,37 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18513
18622
|
}
|
|
18514
18623
|
});
|
|
18515
18624
|
}
|
|
18625
|
+
/**
|
|
18626
|
+
* GetPrediction.
|
|
18627
|
+
* @returns any OK
|
|
18628
|
+
* @throws ApiError
|
|
18629
|
+
*/
|
|
18630
|
+
getStaticMap({
|
|
18631
|
+
lat,
|
|
18632
|
+
lng,
|
|
18633
|
+
zoom = 14,
|
|
18634
|
+
width = 400,
|
|
18635
|
+
height = 287,
|
|
18636
|
+
type = "roadmap"
|
|
18637
|
+
}) {
|
|
18638
|
+
return this.httpRequest.request({
|
|
18639
|
+
method: "GET",
|
|
18640
|
+
url: "/api/external/places/static-map",
|
|
18641
|
+
query: {
|
|
18642
|
+
lat,
|
|
18643
|
+
lng,
|
|
18644
|
+
zoom,
|
|
18645
|
+
width,
|
|
18646
|
+
height,
|
|
18647
|
+
type
|
|
18648
|
+
},
|
|
18649
|
+
errors: {
|
|
18650
|
+
400: `Bad Request`,
|
|
18651
|
+
422: `Unprocessable Content`,
|
|
18652
|
+
500: `Internal Server Error`
|
|
18653
|
+
}
|
|
18654
|
+
});
|
|
18655
|
+
}
|
|
18516
18656
|
}class PlatformPayoutsService {
|
|
18517
18657
|
constructor(httpRequest) {
|
|
18518
18658
|
this.httpRequest = httpRequest;
|
|
@@ -21552,6 +21692,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21552
21692
|
periodsOfWeek,
|
|
21553
21693
|
additionalSupport,
|
|
21554
21694
|
amenity,
|
|
21695
|
+
venueTypeIds,
|
|
21555
21696
|
programmeIds,
|
|
21556
21697
|
pageNumber,
|
|
21557
21698
|
take,
|
|
@@ -21605,6 +21746,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21605
21746
|
PeriodsOfWeek: periodsOfWeek,
|
|
21606
21747
|
AdditionalSupport: additionalSupport,
|
|
21607
21748
|
Amenity: amenity,
|
|
21749
|
+
VenueTypeIds: venueTypeIds,
|
|
21608
21750
|
ProgrammeIds: programmeIds,
|
|
21609
21751
|
PageNumber: pageNumber,
|
|
21610
21752
|
Take: take,
|
|
@@ -21664,6 +21806,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21664
21806
|
periodsOfWeek,
|
|
21665
21807
|
additionalSupport,
|
|
21666
21808
|
amenity,
|
|
21809
|
+
venueTypeIds,
|
|
21667
21810
|
programmeIds,
|
|
21668
21811
|
pageNumber,
|
|
21669
21812
|
take,
|
|
@@ -21714,6 +21857,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21714
21857
|
PeriodsOfWeek: periodsOfWeek,
|
|
21715
21858
|
AdditionalSupport: additionalSupport,
|
|
21716
21859
|
Amenity: amenity,
|
|
21860
|
+
VenueTypeIds: venueTypeIds,
|
|
21717
21861
|
ProgrammeIds: programmeIds,
|
|
21718
21862
|
PageNumber: pageNumber,
|
|
21719
21863
|
Take: take,
|
|
@@ -21774,6 +21918,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21774
21918
|
periodsOfWeek,
|
|
21775
21919
|
additionalSupport,
|
|
21776
21920
|
amenity,
|
|
21921
|
+
venueTypeIds,
|
|
21777
21922
|
programmeIds,
|
|
21778
21923
|
pageNumber,
|
|
21779
21924
|
take,
|
|
@@ -21827,6 +21972,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21827
21972
|
PeriodsOfWeek: periodsOfWeek,
|
|
21828
21973
|
AdditionalSupport: additionalSupport,
|
|
21829
21974
|
Amenity: amenity,
|
|
21975
|
+
VenueTypeIds: venueTypeIds,
|
|
21830
21976
|
ProgrammeIds: programmeIds,
|
|
21831
21977
|
PageNumber: pageNumber,
|
|
21832
21978
|
Take: take,
|
|
@@ -21914,6 +22060,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21914
22060
|
periodsOfWeek,
|
|
21915
22061
|
additionalSupport,
|
|
21916
22062
|
amenity,
|
|
22063
|
+
venueTypeIds,
|
|
21917
22064
|
programmeIds,
|
|
21918
22065
|
pageNumber,
|
|
21919
22066
|
take,
|
|
@@ -21967,6 +22114,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21967
22114
|
PeriodsOfWeek: periodsOfWeek,
|
|
21968
22115
|
AdditionalSupport: additionalSupport,
|
|
21969
22116
|
Amenity: amenity,
|
|
22117
|
+
VenueTypeIds: venueTypeIds,
|
|
21970
22118
|
ProgrammeIds: programmeIds,
|
|
21971
22119
|
PageNumber: pageNumber,
|
|
21972
22120
|
Take: take,
|
|
@@ -22854,6 +23002,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22854
23002
|
scheduledSessionId,
|
|
22855
23003
|
slotId,
|
|
22856
23004
|
courseId,
|
|
23005
|
+
offerId,
|
|
22857
23006
|
status,
|
|
22858
23007
|
statuses,
|
|
22859
23008
|
parentOrderItemId,
|
|
@@ -22884,6 +23033,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22884
23033
|
ScheduledSessionId: scheduledSessionId,
|
|
22885
23034
|
SlotId: slotId,
|
|
22886
23035
|
CourseId: courseId,
|
|
23036
|
+
OfferId: offerId,
|
|
22887
23037
|
Status: status,
|
|
22888
23038
|
Statuses: statuses,
|
|
22889
23039
|
ParentOrderItemId: parentOrderItemId,
|
|
@@ -23094,6 +23244,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
23094
23244
|
scheduledSessionId,
|
|
23095
23245
|
slotId,
|
|
23096
23246
|
courseId,
|
|
23247
|
+
offerId,
|
|
23097
23248
|
status,
|
|
23098
23249
|
statuses,
|
|
23099
23250
|
parentOrderItemId,
|
|
@@ -23124,6 +23275,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
23124
23275
|
ScheduledSessionId: scheduledSessionId,
|
|
23125
23276
|
SlotId: slotId,
|
|
23126
23277
|
CourseId: courseId,
|
|
23278
|
+
OfferId: offerId,
|
|
23127
23279
|
Status: status,
|
|
23128
23280
|
Statuses: statuses,
|
|
23129
23281
|
ParentOrderItemId: parentOrderItemId,
|
|
@@ -26973,6 +27125,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
26973
27125
|
distance,
|
|
26974
27126
|
dashboardRequest,
|
|
26975
27127
|
programmeIds,
|
|
27128
|
+
venueTypeIds,
|
|
26976
27129
|
pageNumber,
|
|
26977
27130
|
take,
|
|
26978
27131
|
skip,
|
|
@@ -27013,6 +27166,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27013
27166
|
Distance: distance,
|
|
27014
27167
|
DashboardRequest: dashboardRequest,
|
|
27015
27168
|
ProgrammeIds: programmeIds,
|
|
27169
|
+
VenueTypeIds: venueTypeIds,
|
|
27016
27170
|
PageNumber: pageNumber,
|
|
27017
27171
|
Take: take,
|
|
27018
27172
|
Skip: skip,
|
|
@@ -27083,6 +27237,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27083
27237
|
distance,
|
|
27084
27238
|
dashboardRequest,
|
|
27085
27239
|
programmeIds,
|
|
27240
|
+
venueTypeIds,
|
|
27086
27241
|
pageNumber,
|
|
27087
27242
|
take,
|
|
27088
27243
|
skip,
|
|
@@ -27120,6 +27275,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27120
27275
|
Distance: distance,
|
|
27121
27276
|
DashboardRequest: dashboardRequest,
|
|
27122
27277
|
ProgrammeIds: programmeIds,
|
|
27278
|
+
VenueTypeIds: venueTypeIds,
|
|
27123
27279
|
PageNumber: pageNumber,
|
|
27124
27280
|
Take: take,
|
|
27125
27281
|
Skip: skip,
|
|
@@ -27239,6 +27395,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27239
27395
|
distance,
|
|
27240
27396
|
dashboardRequest,
|
|
27241
27397
|
programmeIds,
|
|
27398
|
+
venueTypeIds,
|
|
27242
27399
|
pageNumber,
|
|
27243
27400
|
take,
|
|
27244
27401
|
skip,
|
|
@@ -27279,6 +27436,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27279
27436
|
Distance: distance,
|
|
27280
27437
|
DashboardRequest: dashboardRequest,
|
|
27281
27438
|
ProgrammeIds: programmeIds,
|
|
27439
|
+
VenueTypeIds: venueTypeIds,
|
|
27282
27440
|
PageNumber: pageNumber,
|
|
27283
27441
|
Take: take,
|
|
27284
27442
|
Skip: skip,
|
|
@@ -27298,75 +27456,27 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27298
27456
|
}
|
|
27299
27457
|
});
|
|
27300
27458
|
}
|
|
27301
|
-
}class
|
|
27459
|
+
}class PublicVenueTypesService {
|
|
27302
27460
|
constructor(httpRequest) {
|
|
27303
27461
|
this.httpRequest = httpRequest;
|
|
27304
27462
|
}
|
|
27305
27463
|
/**
|
|
27306
|
-
*
|
|
27307
|
-
* @returns WaitlistActivity OK
|
|
27464
|
+
* @returns VenueType OK
|
|
27308
27465
|
* @throws ApiError
|
|
27309
27466
|
*/
|
|
27310
|
-
|
|
27311
|
-
|
|
27312
|
-
|
|
27313
|
-
}) {
|
|
27314
|
-
return this.httpRequest.request({
|
|
27315
|
-
method: "POST",
|
|
27316
|
-
url: "/api/public/waitlist-activity/v2-temporary-route",
|
|
27317
|
-
headers: {
|
|
27318
|
-
x_tenant_subdomain: xTenantSubdomain
|
|
27319
|
-
},
|
|
27320
|
-
body: requestBody,
|
|
27321
|
-
mediaType: "application/json",
|
|
27322
|
-
errors: {
|
|
27323
|
-
400: `Bad Request`,
|
|
27324
|
-
422: `Unprocessable Content`,
|
|
27325
|
-
500: `Internal Server Error`
|
|
27326
|
-
}
|
|
27327
|
-
});
|
|
27328
|
-
}
|
|
27329
|
-
/**
|
|
27330
|
-
* Patches the resource.
|
|
27331
|
-
* @returns WaitlistActivity OK
|
|
27332
|
-
* @throws ApiError
|
|
27333
|
-
*/
|
|
27334
|
-
patch({
|
|
27335
|
-
xTenantSubdomain,
|
|
27336
|
-
requestBody
|
|
27467
|
+
getObject({
|
|
27468
|
+
id,
|
|
27469
|
+
xTenantSubdomain
|
|
27337
27470
|
}) {
|
|
27338
27471
|
return this.httpRequest.request({
|
|
27339
|
-
method: "
|
|
27340
|
-
url: "/api/public/
|
|
27341
|
-
|
|
27342
|
-
|
|
27472
|
+
method: "GET",
|
|
27473
|
+
url: "/api/public/venue-types/{id}",
|
|
27474
|
+
path: {
|
|
27475
|
+
id
|
|
27343
27476
|
},
|
|
27344
|
-
body: requestBody,
|
|
27345
|
-
mediaType: "application/json",
|
|
27346
|
-
errors: {
|
|
27347
|
-
400: `Bad Request`,
|
|
27348
|
-
422: `Unprocessable Content`,
|
|
27349
|
-
500: `Internal Server Error`
|
|
27350
|
-
}
|
|
27351
|
-
});
|
|
27352
|
-
}
|
|
27353
|
-
/**
|
|
27354
|
-
* Inserts a list of resources.
|
|
27355
|
-
* @returns WaitlistActivity OK
|
|
27356
|
-
* @throws ApiError
|
|
27357
|
-
*/
|
|
27358
|
-
postList({
|
|
27359
|
-
xTenantSubdomain,
|
|
27360
|
-
requestBody
|
|
27361
|
-
}) {
|
|
27362
|
-
return this.httpRequest.request({
|
|
27363
|
-
method: "POST",
|
|
27364
|
-
url: "/api/public/waitlist-activity/v2-temporary-route/list",
|
|
27365
27477
|
headers: {
|
|
27366
27478
|
x_tenant_subdomain: xTenantSubdomain
|
|
27367
27479
|
},
|
|
27368
|
-
body: requestBody,
|
|
27369
|
-
mediaType: "application/json",
|
|
27370
27480
|
errors: {
|
|
27371
27481
|
400: `Bad Request`,
|
|
27372
27482
|
422: `Unprocessable Content`,
|
|
@@ -27379,18 +27489,19 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27379
27489
|
* @returns any OK
|
|
27380
27490
|
* @throws ApiError
|
|
27381
27491
|
*/
|
|
27382
|
-
|
|
27383
|
-
|
|
27384
|
-
|
|
27492
|
+
deleteById({
|
|
27493
|
+
id,
|
|
27494
|
+
xTenantSubdomain
|
|
27385
27495
|
}) {
|
|
27386
27496
|
return this.httpRequest.request({
|
|
27387
27497
|
method: "DELETE",
|
|
27388
|
-
url: "/api/public/
|
|
27498
|
+
url: "/api/public/venue-types/{id}",
|
|
27499
|
+
path: {
|
|
27500
|
+
id
|
|
27501
|
+
},
|
|
27389
27502
|
headers: {
|
|
27390
27503
|
x_tenant_subdomain: xTenantSubdomain
|
|
27391
27504
|
},
|
|
27392
|
-
body: requestBody,
|
|
27393
|
-
mediaType: "application/json",
|
|
27394
27505
|
errors: {
|
|
27395
27506
|
400: `Bad Request`,
|
|
27396
27507
|
422: `Unprocessable Content`,
|
|
@@ -27399,18 +27510,11 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27399
27510
|
});
|
|
27400
27511
|
}
|
|
27401
27512
|
/**
|
|
27402
|
-
*
|
|
27403
|
-
* @returns WaitlistActivityPage OK
|
|
27513
|
+
* @returns VenueTypePage OK
|
|
27404
27514
|
* @throws ApiError
|
|
27405
27515
|
*/
|
|
27406
27516
|
getPage({
|
|
27407
27517
|
xTenantSubdomain,
|
|
27408
|
-
userId,
|
|
27409
|
-
sessionId,
|
|
27410
|
-
sessionIds,
|
|
27411
|
-
courseId,
|
|
27412
|
-
courseIds,
|
|
27413
|
-
email,
|
|
27414
27518
|
pageNumber,
|
|
27415
27519
|
take,
|
|
27416
27520
|
skip,
|
|
@@ -27425,17 +27529,11 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27425
27529
|
}) {
|
|
27426
27530
|
return this.httpRequest.request({
|
|
27427
27531
|
method: "GET",
|
|
27428
|
-
url: "/api/public/
|
|
27532
|
+
url: "/api/public/venue-types",
|
|
27429
27533
|
headers: {
|
|
27430
27534
|
x_tenant_subdomain: xTenantSubdomain
|
|
27431
27535
|
},
|
|
27432
27536
|
query: {
|
|
27433
|
-
UserId: userId,
|
|
27434
|
-
SessionId: sessionId,
|
|
27435
|
-
SessionIds: sessionIds,
|
|
27436
|
-
CourseId: courseId,
|
|
27437
|
-
CourseIds: courseIds,
|
|
27438
|
-
Email: email,
|
|
27439
27537
|
PageNumber: pageNumber,
|
|
27440
27538
|
Take: take,
|
|
27441
27539
|
Skip: skip,
|
|
@@ -27460,19 +27558,42 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27460
27558
|
* @returns any OK
|
|
27461
27559
|
* @throws ApiError
|
|
27462
27560
|
*/
|
|
27463
|
-
|
|
27464
|
-
|
|
27465
|
-
|
|
27561
|
+
deleteByObject({
|
|
27562
|
+
xTenantSubdomain,
|
|
27563
|
+
requestBody
|
|
27466
27564
|
}) {
|
|
27467
27565
|
return this.httpRequest.request({
|
|
27468
27566
|
method: "DELETE",
|
|
27469
|
-
url: "/api/public/
|
|
27470
|
-
|
|
27471
|
-
|
|
27567
|
+
url: "/api/public/venue-types",
|
|
27568
|
+
headers: {
|
|
27569
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
27472
27570
|
},
|
|
27571
|
+
body: requestBody,
|
|
27572
|
+
mediaType: "application/json",
|
|
27573
|
+
errors: {
|
|
27574
|
+
400: `Bad Request`,
|
|
27575
|
+
422: `Unprocessable Content`,
|
|
27576
|
+
500: `Internal Server Error`
|
|
27577
|
+
}
|
|
27578
|
+
});
|
|
27579
|
+
}
|
|
27580
|
+
/**
|
|
27581
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
27582
|
+
* @returns VenueType OK
|
|
27583
|
+
* @throws ApiError
|
|
27584
|
+
*/
|
|
27585
|
+
post({
|
|
27586
|
+
xTenantSubdomain,
|
|
27587
|
+
requestBody
|
|
27588
|
+
}) {
|
|
27589
|
+
return this.httpRequest.request({
|
|
27590
|
+
method: "POST",
|
|
27591
|
+
url: "/api/public/venue-types/v2-temporary-route",
|
|
27473
27592
|
headers: {
|
|
27474
27593
|
x_tenant_subdomain: xTenantSubdomain
|
|
27475
27594
|
},
|
|
27595
|
+
body: requestBody,
|
|
27596
|
+
mediaType: "application/json",
|
|
27476
27597
|
errors: {
|
|
27477
27598
|
400: `Bad Request`,
|
|
27478
27599
|
422: `Unprocessable Content`,
|
|
@@ -27481,23 +27602,46 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27481
27602
|
});
|
|
27482
27603
|
}
|
|
27483
27604
|
/**
|
|
27484
|
-
*
|
|
27485
|
-
* @returns
|
|
27605
|
+
* Patches the resource.
|
|
27606
|
+
* @returns VenueType OK
|
|
27486
27607
|
* @throws ApiError
|
|
27487
27608
|
*/
|
|
27488
|
-
|
|
27489
|
-
|
|
27490
|
-
|
|
27609
|
+
patch({
|
|
27610
|
+
xTenantSubdomain,
|
|
27611
|
+
requestBody
|
|
27491
27612
|
}) {
|
|
27492
27613
|
return this.httpRequest.request({
|
|
27493
|
-
method: "
|
|
27494
|
-
url: "/api/public/
|
|
27495
|
-
|
|
27496
|
-
|
|
27614
|
+
method: "PATCH",
|
|
27615
|
+
url: "/api/public/venue-types/v2-temporary-route",
|
|
27616
|
+
headers: {
|
|
27617
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
27497
27618
|
},
|
|
27619
|
+
body: requestBody,
|
|
27620
|
+
mediaType: "application/json",
|
|
27621
|
+
errors: {
|
|
27622
|
+
400: `Bad Request`,
|
|
27623
|
+
422: `Unprocessable Content`,
|
|
27624
|
+
500: `Internal Server Error`
|
|
27625
|
+
}
|
|
27626
|
+
});
|
|
27627
|
+
}
|
|
27628
|
+
/**
|
|
27629
|
+
* Inserts a list of resources.
|
|
27630
|
+
* @returns VenueType OK
|
|
27631
|
+
* @throws ApiError
|
|
27632
|
+
*/
|
|
27633
|
+
postList({
|
|
27634
|
+
xTenantSubdomain,
|
|
27635
|
+
requestBody
|
|
27636
|
+
}) {
|
|
27637
|
+
return this.httpRequest.request({
|
|
27638
|
+
method: "POST",
|
|
27639
|
+
url: "/api/public/venue-types/v2-temporary-route/list",
|
|
27498
27640
|
headers: {
|
|
27499
27641
|
x_tenant_subdomain: xTenantSubdomain
|
|
27500
27642
|
},
|
|
27643
|
+
body: requestBody,
|
|
27644
|
+
mediaType: "application/json",
|
|
27501
27645
|
errors: {
|
|
27502
27646
|
400: `Bad Request`,
|
|
27503
27647
|
422: `Unprocessable Content`,
|
|
@@ -27512,12 +27656,6 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27512
27656
|
*/
|
|
27513
27657
|
exists({
|
|
27514
27658
|
xTenantSubdomain,
|
|
27515
|
-
userId,
|
|
27516
|
-
sessionId,
|
|
27517
|
-
sessionIds,
|
|
27518
|
-
courseId,
|
|
27519
|
-
courseIds,
|
|
27520
|
-
email,
|
|
27521
27659
|
pageNumber,
|
|
27522
27660
|
take,
|
|
27523
27661
|
skip,
|
|
@@ -27532,17 +27670,11 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27532
27670
|
}) {
|
|
27533
27671
|
return this.httpRequest.request({
|
|
27534
27672
|
method: "GET",
|
|
27535
|
-
url: "/api/public/
|
|
27673
|
+
url: "/api/public/venue-types/exists",
|
|
27536
27674
|
headers: {
|
|
27537
27675
|
x_tenant_subdomain: xTenantSubdomain
|
|
27538
27676
|
},
|
|
27539
27677
|
query: {
|
|
27540
|
-
UserId: userId,
|
|
27541
|
-
SessionId: sessionId,
|
|
27542
|
-
SessionIds: sessionIds,
|
|
27543
|
-
CourseId: courseId,
|
|
27544
|
-
CourseIds: courseIds,
|
|
27545
|
-
Email: email,
|
|
27546
27678
|
PageNumber: pageNumber,
|
|
27547
27679
|
Take: take,
|
|
27548
27680
|
Skip: skip,
|
|
@@ -27562,13 +27694,13 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27562
27694
|
}
|
|
27563
27695
|
});
|
|
27564
27696
|
}
|
|
27565
|
-
}class
|
|
27697
|
+
}class PublicWaitlistActivityService {
|
|
27566
27698
|
constructor(httpRequest) {
|
|
27567
27699
|
this.httpRequest = httpRequest;
|
|
27568
27700
|
}
|
|
27569
27701
|
/**
|
|
27570
27702
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
27571
|
-
* @returns
|
|
27703
|
+
* @returns WaitlistActivity OK
|
|
27572
27704
|
* @throws ApiError
|
|
27573
27705
|
*/
|
|
27574
27706
|
post({
|
|
@@ -27577,7 +27709,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27577
27709
|
}) {
|
|
27578
27710
|
return this.httpRequest.request({
|
|
27579
27711
|
method: "POST",
|
|
27580
|
-
url: "/api/public/waitlist-
|
|
27712
|
+
url: "/api/public/waitlist-activity/v2-temporary-route",
|
|
27581
27713
|
headers: {
|
|
27582
27714
|
x_tenant_subdomain: xTenantSubdomain
|
|
27583
27715
|
},
|
|
@@ -27592,7 +27724,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27592
27724
|
}
|
|
27593
27725
|
/**
|
|
27594
27726
|
* Patches the resource.
|
|
27595
|
-
* @returns
|
|
27727
|
+
* @returns WaitlistActivity OK
|
|
27596
27728
|
* @throws ApiError
|
|
27597
27729
|
*/
|
|
27598
27730
|
patch({
|
|
@@ -27601,7 +27733,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27601
27733
|
}) {
|
|
27602
27734
|
return this.httpRequest.request({
|
|
27603
27735
|
method: "PATCH",
|
|
27604
|
-
url: "/api/public/waitlist-
|
|
27736
|
+
url: "/api/public/waitlist-activity/v2-temporary-route",
|
|
27605
27737
|
headers: {
|
|
27606
27738
|
x_tenant_subdomain: xTenantSubdomain
|
|
27607
27739
|
},
|
|
@@ -27616,7 +27748,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27616
27748
|
}
|
|
27617
27749
|
/**
|
|
27618
27750
|
* Inserts a list of resources.
|
|
27619
|
-
* @returns
|
|
27751
|
+
* @returns WaitlistActivity OK
|
|
27620
27752
|
* @throws ApiError
|
|
27621
27753
|
*/
|
|
27622
27754
|
postList({
|
|
@@ -27625,7 +27757,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27625
27757
|
}) {
|
|
27626
27758
|
return this.httpRequest.request({
|
|
27627
27759
|
method: "POST",
|
|
27628
|
-
url: "/api/public/waitlist-
|
|
27760
|
+
url: "/api/public/waitlist-activity/v2-temporary-route/list",
|
|
27629
27761
|
headers: {
|
|
27630
27762
|
x_tenant_subdomain: xTenantSubdomain
|
|
27631
27763
|
},
|
|
@@ -27649,7 +27781,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27649
27781
|
}) {
|
|
27650
27782
|
return this.httpRequest.request({
|
|
27651
27783
|
method: "DELETE",
|
|
27652
|
-
url: "/api/public/waitlist-
|
|
27784
|
+
url: "/api/public/waitlist-activity",
|
|
27653
27785
|
headers: {
|
|
27654
27786
|
x_tenant_subdomain: xTenantSubdomain
|
|
27655
27787
|
},
|
|
@@ -27664,18 +27796,17 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27664
27796
|
}
|
|
27665
27797
|
/**
|
|
27666
27798
|
* Gets a list of resources.
|
|
27667
|
-
* @returns
|
|
27799
|
+
* @returns WaitlistActivityPage OK
|
|
27668
27800
|
* @throws ApiError
|
|
27669
27801
|
*/
|
|
27670
27802
|
getPage({
|
|
27671
27803
|
xTenantSubdomain,
|
|
27672
27804
|
userId,
|
|
27673
|
-
|
|
27674
|
-
|
|
27805
|
+
sessionId,
|
|
27806
|
+
sessionIds,
|
|
27675
27807
|
courseId,
|
|
27808
|
+
courseIds,
|
|
27676
27809
|
email,
|
|
27677
|
-
futureOnly,
|
|
27678
|
-
converted,
|
|
27679
27810
|
pageNumber,
|
|
27680
27811
|
take,
|
|
27681
27812
|
skip,
|
|
@@ -27690,18 +27821,17 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27690
27821
|
}) {
|
|
27691
27822
|
return this.httpRequest.request({
|
|
27692
27823
|
method: "GET",
|
|
27693
|
-
url: "/api/public/waitlist-
|
|
27824
|
+
url: "/api/public/waitlist-activity",
|
|
27694
27825
|
headers: {
|
|
27695
27826
|
x_tenant_subdomain: xTenantSubdomain
|
|
27696
27827
|
},
|
|
27697
27828
|
query: {
|
|
27698
27829
|
UserId: userId,
|
|
27699
|
-
|
|
27700
|
-
|
|
27830
|
+
SessionId: sessionId,
|
|
27831
|
+
SessionIds: sessionIds,
|
|
27701
27832
|
CourseId: courseId,
|
|
27833
|
+
CourseIds: courseIds,
|
|
27702
27834
|
Email: email,
|
|
27703
|
-
FutureOnly: futureOnly,
|
|
27704
|
-
Converted: converted,
|
|
27705
27835
|
PageNumber: pageNumber,
|
|
27706
27836
|
Take: take,
|
|
27707
27837
|
Skip: skip,
|
|
@@ -27732,7 +27862,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27732
27862
|
}) {
|
|
27733
27863
|
return this.httpRequest.request({
|
|
27734
27864
|
method: "DELETE",
|
|
27735
|
-
url: "/api/public/waitlist-
|
|
27865
|
+
url: "/api/public/waitlist-activity/{id}",
|
|
27736
27866
|
path: {
|
|
27737
27867
|
id
|
|
27738
27868
|
},
|
|
@@ -27748,7 +27878,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27748
27878
|
}
|
|
27749
27879
|
/**
|
|
27750
27880
|
* Gets the resource by its Id.
|
|
27751
|
-
* @returns
|
|
27881
|
+
* @returns WaitlistActivity OK
|
|
27752
27882
|
* @throws ApiError
|
|
27753
27883
|
*/
|
|
27754
27884
|
getObject({
|
|
@@ -27757,7 +27887,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27757
27887
|
}) {
|
|
27758
27888
|
return this.httpRequest.request({
|
|
27759
27889
|
method: "GET",
|
|
27760
|
-
url: "/api/public/waitlist-
|
|
27890
|
+
url: "/api/public/waitlist-activity/{id}",
|
|
27761
27891
|
path: {
|
|
27762
27892
|
id
|
|
27763
27893
|
},
|
|
@@ -27779,12 +27909,11 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27779
27909
|
exists({
|
|
27780
27910
|
xTenantSubdomain,
|
|
27781
27911
|
userId,
|
|
27782
|
-
|
|
27783
|
-
|
|
27912
|
+
sessionId,
|
|
27913
|
+
sessionIds,
|
|
27784
27914
|
courseId,
|
|
27915
|
+
courseIds,
|
|
27785
27916
|
email,
|
|
27786
|
-
futureOnly,
|
|
27787
|
-
converted,
|
|
27788
27917
|
pageNumber,
|
|
27789
27918
|
take,
|
|
27790
27919
|
skip,
|
|
@@ -27799,18 +27928,17 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27799
27928
|
}) {
|
|
27800
27929
|
return this.httpRequest.request({
|
|
27801
27930
|
method: "GET",
|
|
27802
|
-
url: "/api/public/waitlist-
|
|
27931
|
+
url: "/api/public/waitlist-activity/exists",
|
|
27803
27932
|
headers: {
|
|
27804
27933
|
x_tenant_subdomain: xTenantSubdomain
|
|
27805
27934
|
},
|
|
27806
27935
|
query: {
|
|
27807
27936
|
UserId: userId,
|
|
27808
|
-
|
|
27809
|
-
|
|
27937
|
+
SessionId: sessionId,
|
|
27938
|
+
SessionIds: sessionIds,
|
|
27810
27939
|
CourseId: courseId,
|
|
27940
|
+
CourseIds: courseIds,
|
|
27811
27941
|
Email: email,
|
|
27812
|
-
FutureOnly: futureOnly,
|
|
27813
|
-
Converted: converted,
|
|
27814
27942
|
PageNumber: pageNumber,
|
|
27815
27943
|
Take: take,
|
|
27816
27944
|
Skip: skip,
|
|
@@ -27830,66 +27958,25 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27830
27958
|
}
|
|
27831
27959
|
});
|
|
27832
27960
|
}
|
|
27833
|
-
}class
|
|
27961
|
+
}class PublicWaitlistOpportunityService {
|
|
27834
27962
|
constructor(httpRequest) {
|
|
27835
27963
|
this.httpRequest = httpRequest;
|
|
27836
27964
|
}
|
|
27837
|
-
/**
|
|
27838
|
-
* Exports the venues list to a csv format.
|
|
27839
|
-
* Endpoint has AllowAnonymous attr, however the jwt is validated in the method body (in support of authenticated file downloads.
|
|
27840
|
-
* @returns any OK
|
|
27841
|
-
* @throws ApiError
|
|
27842
|
-
*/
|
|
27843
|
-
exportToCsv({
|
|
27844
|
-
pageNumber,
|
|
27845
|
-
take,
|
|
27846
|
-
skip,
|
|
27847
|
-
limitListRequests,
|
|
27848
|
-
tenantId,
|
|
27849
|
-
modifiedById,
|
|
27850
|
-
modifiedByIds,
|
|
27851
|
-
dateCreatedGte,
|
|
27852
|
-
dateCreatedLte,
|
|
27853
|
-
isLive,
|
|
27854
|
-
sortOrderDirection,
|
|
27855
|
-
formData
|
|
27856
|
-
}) {
|
|
27857
|
-
return this.httpRequest.request({
|
|
27858
|
-
method: "POST",
|
|
27859
|
-
url: "/api/reports/recent-order-activity/export/csv",
|
|
27860
|
-
query: {
|
|
27861
|
-
PageNumber: pageNumber,
|
|
27862
|
-
Take: take,
|
|
27863
|
-
Skip: skip,
|
|
27864
|
-
LimitListRequests: limitListRequests,
|
|
27865
|
-
TenantId: tenantId,
|
|
27866
|
-
ModifiedById: modifiedById,
|
|
27867
|
-
ModifiedByIds: modifiedByIds,
|
|
27868
|
-
DateCreatedGTE: dateCreatedGte,
|
|
27869
|
-
DateCreatedLTE: dateCreatedLte,
|
|
27870
|
-
IsLive: isLive,
|
|
27871
|
-
SortOrderDirection: sortOrderDirection
|
|
27872
|
-
},
|
|
27873
|
-
formData,
|
|
27874
|
-
mediaType: "multipart/form-data",
|
|
27875
|
-
errors: {
|
|
27876
|
-
400: `Bad Request`,
|
|
27877
|
-
422: `Unprocessable Content`,
|
|
27878
|
-
500: `Internal Server Error`
|
|
27879
|
-
}
|
|
27880
|
-
});
|
|
27881
|
-
}
|
|
27882
27965
|
/**
|
|
27883
27966
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
27884
|
-
* @returns
|
|
27967
|
+
* @returns WaitlistOpportunity OK
|
|
27885
27968
|
* @throws ApiError
|
|
27886
27969
|
*/
|
|
27887
27970
|
post({
|
|
27971
|
+
xTenantSubdomain,
|
|
27888
27972
|
requestBody
|
|
27889
27973
|
}) {
|
|
27890
27974
|
return this.httpRequest.request({
|
|
27891
27975
|
method: "POST",
|
|
27892
|
-
url: "/api/
|
|
27976
|
+
url: "/api/public/waitlist-opportunity/v2-temporary-route",
|
|
27977
|
+
headers: {
|
|
27978
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
27979
|
+
},
|
|
27893
27980
|
body: requestBody,
|
|
27894
27981
|
mediaType: "application/json",
|
|
27895
27982
|
errors: {
|
|
@@ -27901,15 +27988,19 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27901
27988
|
}
|
|
27902
27989
|
/**
|
|
27903
27990
|
* Patches the resource.
|
|
27904
|
-
* @returns
|
|
27991
|
+
* @returns WaitlistOpportunity OK
|
|
27905
27992
|
* @throws ApiError
|
|
27906
27993
|
*/
|
|
27907
27994
|
patch({
|
|
27995
|
+
xTenantSubdomain,
|
|
27908
27996
|
requestBody
|
|
27909
27997
|
}) {
|
|
27910
27998
|
return this.httpRequest.request({
|
|
27911
27999
|
method: "PATCH",
|
|
27912
|
-
url: "/api/
|
|
28000
|
+
url: "/api/public/waitlist-opportunity/v2-temporary-route",
|
|
28001
|
+
headers: {
|
|
28002
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
28003
|
+
},
|
|
27913
28004
|
body: requestBody,
|
|
27914
28005
|
mediaType: "application/json",
|
|
27915
28006
|
errors: {
|
|
@@ -27921,35 +28012,19 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27921
28012
|
}
|
|
27922
28013
|
/**
|
|
27923
28014
|
* Inserts a list of resources.
|
|
27924
|
-
* @returns
|
|
28015
|
+
* @returns WaitlistOpportunity OK
|
|
27925
28016
|
* @throws ApiError
|
|
27926
28017
|
*/
|
|
27927
28018
|
postList({
|
|
28019
|
+
xTenantSubdomain,
|
|
27928
28020
|
requestBody
|
|
27929
28021
|
}) {
|
|
27930
28022
|
return this.httpRequest.request({
|
|
27931
28023
|
method: "POST",
|
|
27932
|
-
url: "/api/
|
|
27933
|
-
|
|
27934
|
-
|
|
27935
|
-
|
|
27936
|
-
400: `Bad Request`,
|
|
27937
|
-
422: `Unprocessable Content`,
|
|
27938
|
-
500: `Internal Server Error`
|
|
27939
|
-
}
|
|
27940
|
-
});
|
|
27941
|
-
}
|
|
27942
|
-
/**
|
|
27943
|
-
* Patches the resource.
|
|
27944
|
-
* @returns RecentOrderActivityReport OK
|
|
27945
|
-
* @throws ApiError
|
|
27946
|
-
*/
|
|
27947
|
-
patchWithReferences({
|
|
27948
|
-
requestBody
|
|
27949
|
-
}) {
|
|
27950
|
-
return this.httpRequest.request({
|
|
27951
|
-
method: "PATCH",
|
|
27952
|
-
url: "/api/reports/recent-order-activity/v2-temporary-route/with-references",
|
|
28024
|
+
url: "/api/public/waitlist-opportunity/v2-temporary-route/list",
|
|
28025
|
+
headers: {
|
|
28026
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
28027
|
+
},
|
|
27953
28028
|
body: requestBody,
|
|
27954
28029
|
mediaType: "application/json",
|
|
27955
28030
|
errors: {
|
|
@@ -27965,11 +28040,15 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27965
28040
|
* @throws ApiError
|
|
27966
28041
|
*/
|
|
27967
28042
|
deleteByObject({
|
|
28043
|
+
xTenantSubdomain,
|
|
27968
28044
|
requestBody
|
|
27969
28045
|
}) {
|
|
27970
28046
|
return this.httpRequest.request({
|
|
27971
28047
|
method: "DELETE",
|
|
27972
|
-
url: "/api/
|
|
28048
|
+
url: "/api/public/waitlist-opportunity",
|
|
28049
|
+
headers: {
|
|
28050
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
28051
|
+
},
|
|
27973
28052
|
body: requestBody,
|
|
27974
28053
|
mediaType: "application/json",
|
|
27975
28054
|
errors: {
|
|
@@ -27981,10 +28060,18 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27981
28060
|
}
|
|
27982
28061
|
/**
|
|
27983
28062
|
* Gets a list of resources.
|
|
27984
|
-
* @returns
|
|
28063
|
+
* @returns WaitlistOpportunityPage OK
|
|
27985
28064
|
* @throws ApiError
|
|
27986
28065
|
*/
|
|
27987
28066
|
getPage({
|
|
28067
|
+
xTenantSubdomain,
|
|
28068
|
+
userId,
|
|
28069
|
+
slotId,
|
|
28070
|
+
scheduledSessionId,
|
|
28071
|
+
courseId,
|
|
28072
|
+
email,
|
|
28073
|
+
futureOnly,
|
|
28074
|
+
converted,
|
|
27988
28075
|
pageNumber,
|
|
27989
28076
|
take,
|
|
27990
28077
|
skip,
|
|
@@ -27999,7 +28086,316 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27999
28086
|
}) {
|
|
28000
28087
|
return this.httpRequest.request({
|
|
28001
28088
|
method: "GET",
|
|
28002
|
-
url: "/api/
|
|
28089
|
+
url: "/api/public/waitlist-opportunity",
|
|
28090
|
+
headers: {
|
|
28091
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
28092
|
+
},
|
|
28093
|
+
query: {
|
|
28094
|
+
UserId: userId,
|
|
28095
|
+
SlotId: slotId,
|
|
28096
|
+
ScheduledSessionId: scheduledSessionId,
|
|
28097
|
+
CourseId: courseId,
|
|
28098
|
+
Email: email,
|
|
28099
|
+
FutureOnly: futureOnly,
|
|
28100
|
+
Converted: converted,
|
|
28101
|
+
PageNumber: pageNumber,
|
|
28102
|
+
Take: take,
|
|
28103
|
+
Skip: skip,
|
|
28104
|
+
LimitListRequests: limitListRequests,
|
|
28105
|
+
TenantId: tenantId,
|
|
28106
|
+
ModifiedById: modifiedById,
|
|
28107
|
+
ModifiedByIds: modifiedByIds,
|
|
28108
|
+
DateCreatedGTE: dateCreatedGte,
|
|
28109
|
+
DateCreatedLTE: dateCreatedLte,
|
|
28110
|
+
IsLive: isLive,
|
|
28111
|
+
SortOrderDirection: sortOrderDirection
|
|
28112
|
+
},
|
|
28113
|
+
errors: {
|
|
28114
|
+
400: `Bad Request`,
|
|
28115
|
+
422: `Unprocessable Content`,
|
|
28116
|
+
500: `Internal Server Error`
|
|
28117
|
+
}
|
|
28118
|
+
});
|
|
28119
|
+
}
|
|
28120
|
+
/**
|
|
28121
|
+
* Deletes the resource.
|
|
28122
|
+
* @returns any OK
|
|
28123
|
+
* @throws ApiError
|
|
28124
|
+
*/
|
|
28125
|
+
deleteById({
|
|
28126
|
+
id,
|
|
28127
|
+
xTenantSubdomain
|
|
28128
|
+
}) {
|
|
28129
|
+
return this.httpRequest.request({
|
|
28130
|
+
method: "DELETE",
|
|
28131
|
+
url: "/api/public/waitlist-opportunity/{id}",
|
|
28132
|
+
path: {
|
|
28133
|
+
id
|
|
28134
|
+
},
|
|
28135
|
+
headers: {
|
|
28136
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
28137
|
+
},
|
|
28138
|
+
errors: {
|
|
28139
|
+
400: `Bad Request`,
|
|
28140
|
+
422: `Unprocessable Content`,
|
|
28141
|
+
500: `Internal Server Error`
|
|
28142
|
+
}
|
|
28143
|
+
});
|
|
28144
|
+
}
|
|
28145
|
+
/**
|
|
28146
|
+
* Gets the resource by its Id.
|
|
28147
|
+
* @returns WaitlistOpportunity OK
|
|
28148
|
+
* @throws ApiError
|
|
28149
|
+
*/
|
|
28150
|
+
getObject({
|
|
28151
|
+
id,
|
|
28152
|
+
xTenantSubdomain
|
|
28153
|
+
}) {
|
|
28154
|
+
return this.httpRequest.request({
|
|
28155
|
+
method: "GET",
|
|
28156
|
+
url: "/api/public/waitlist-opportunity/{id}",
|
|
28157
|
+
path: {
|
|
28158
|
+
id
|
|
28159
|
+
},
|
|
28160
|
+
headers: {
|
|
28161
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
28162
|
+
},
|
|
28163
|
+
errors: {
|
|
28164
|
+
400: `Bad Request`,
|
|
28165
|
+
422: `Unprocessable Content`,
|
|
28166
|
+
500: `Internal Server Error`
|
|
28167
|
+
}
|
|
28168
|
+
});
|
|
28169
|
+
}
|
|
28170
|
+
/**
|
|
28171
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
28172
|
+
* @returns boolean OK
|
|
28173
|
+
* @throws ApiError
|
|
28174
|
+
*/
|
|
28175
|
+
exists({
|
|
28176
|
+
xTenantSubdomain,
|
|
28177
|
+
userId,
|
|
28178
|
+
slotId,
|
|
28179
|
+
scheduledSessionId,
|
|
28180
|
+
courseId,
|
|
28181
|
+
email,
|
|
28182
|
+
futureOnly,
|
|
28183
|
+
converted,
|
|
28184
|
+
pageNumber,
|
|
28185
|
+
take,
|
|
28186
|
+
skip,
|
|
28187
|
+
limitListRequests,
|
|
28188
|
+
tenantId,
|
|
28189
|
+
modifiedById,
|
|
28190
|
+
modifiedByIds,
|
|
28191
|
+
dateCreatedGte,
|
|
28192
|
+
dateCreatedLte,
|
|
28193
|
+
isLive,
|
|
28194
|
+
sortOrderDirection
|
|
28195
|
+
}) {
|
|
28196
|
+
return this.httpRequest.request({
|
|
28197
|
+
method: "GET",
|
|
28198
|
+
url: "/api/public/waitlist-opportunity/exists",
|
|
28199
|
+
headers: {
|
|
28200
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
28201
|
+
},
|
|
28202
|
+
query: {
|
|
28203
|
+
UserId: userId,
|
|
28204
|
+
SlotId: slotId,
|
|
28205
|
+
ScheduledSessionId: scheduledSessionId,
|
|
28206
|
+
CourseId: courseId,
|
|
28207
|
+
Email: email,
|
|
28208
|
+
FutureOnly: futureOnly,
|
|
28209
|
+
Converted: converted,
|
|
28210
|
+
PageNumber: pageNumber,
|
|
28211
|
+
Take: take,
|
|
28212
|
+
Skip: skip,
|
|
28213
|
+
LimitListRequests: limitListRequests,
|
|
28214
|
+
TenantId: tenantId,
|
|
28215
|
+
ModifiedById: modifiedById,
|
|
28216
|
+
ModifiedByIds: modifiedByIds,
|
|
28217
|
+
DateCreatedGTE: dateCreatedGte,
|
|
28218
|
+
DateCreatedLTE: dateCreatedLte,
|
|
28219
|
+
IsLive: isLive,
|
|
28220
|
+
SortOrderDirection: sortOrderDirection
|
|
28221
|
+
},
|
|
28222
|
+
errors: {
|
|
28223
|
+
400: `Bad Request`,
|
|
28224
|
+
422: `Unprocessable Content`,
|
|
28225
|
+
500: `Internal Server Error`
|
|
28226
|
+
}
|
|
28227
|
+
});
|
|
28228
|
+
}
|
|
28229
|
+
}class RecentOrderActivityReportService {
|
|
28230
|
+
constructor(httpRequest) {
|
|
28231
|
+
this.httpRequest = httpRequest;
|
|
28232
|
+
}
|
|
28233
|
+
/**
|
|
28234
|
+
* Exports the venues list to a csv format.
|
|
28235
|
+
* Endpoint has AllowAnonymous attr, however the jwt is validated in the method body (in support of authenticated file downloads.
|
|
28236
|
+
* @returns any OK
|
|
28237
|
+
* @throws ApiError
|
|
28238
|
+
*/
|
|
28239
|
+
exportToCsv({
|
|
28240
|
+
pageNumber,
|
|
28241
|
+
take,
|
|
28242
|
+
skip,
|
|
28243
|
+
limitListRequests,
|
|
28244
|
+
tenantId,
|
|
28245
|
+
modifiedById,
|
|
28246
|
+
modifiedByIds,
|
|
28247
|
+
dateCreatedGte,
|
|
28248
|
+
dateCreatedLte,
|
|
28249
|
+
isLive,
|
|
28250
|
+
sortOrderDirection,
|
|
28251
|
+
formData
|
|
28252
|
+
}) {
|
|
28253
|
+
return this.httpRequest.request({
|
|
28254
|
+
method: "POST",
|
|
28255
|
+
url: "/api/reports/recent-order-activity/export/csv",
|
|
28256
|
+
query: {
|
|
28257
|
+
PageNumber: pageNumber,
|
|
28258
|
+
Take: take,
|
|
28259
|
+
Skip: skip,
|
|
28260
|
+
LimitListRequests: limitListRequests,
|
|
28261
|
+
TenantId: tenantId,
|
|
28262
|
+
ModifiedById: modifiedById,
|
|
28263
|
+
ModifiedByIds: modifiedByIds,
|
|
28264
|
+
DateCreatedGTE: dateCreatedGte,
|
|
28265
|
+
DateCreatedLTE: dateCreatedLte,
|
|
28266
|
+
IsLive: isLive,
|
|
28267
|
+
SortOrderDirection: sortOrderDirection
|
|
28268
|
+
},
|
|
28269
|
+
formData,
|
|
28270
|
+
mediaType: "multipart/form-data",
|
|
28271
|
+
errors: {
|
|
28272
|
+
400: `Bad Request`,
|
|
28273
|
+
422: `Unprocessable Content`,
|
|
28274
|
+
500: `Internal Server Error`
|
|
28275
|
+
}
|
|
28276
|
+
});
|
|
28277
|
+
}
|
|
28278
|
+
/**
|
|
28279
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
28280
|
+
* @returns RecentOrderActivityReport OK
|
|
28281
|
+
* @throws ApiError
|
|
28282
|
+
*/
|
|
28283
|
+
post({
|
|
28284
|
+
requestBody
|
|
28285
|
+
}) {
|
|
28286
|
+
return this.httpRequest.request({
|
|
28287
|
+
method: "POST",
|
|
28288
|
+
url: "/api/reports/recent-order-activity/v2-temporary-route",
|
|
28289
|
+
body: requestBody,
|
|
28290
|
+
mediaType: "application/json",
|
|
28291
|
+
errors: {
|
|
28292
|
+
400: `Bad Request`,
|
|
28293
|
+
422: `Unprocessable Content`,
|
|
28294
|
+
500: `Internal Server Error`
|
|
28295
|
+
}
|
|
28296
|
+
});
|
|
28297
|
+
}
|
|
28298
|
+
/**
|
|
28299
|
+
* Patches the resource.
|
|
28300
|
+
* @returns RecentOrderActivityReport OK
|
|
28301
|
+
* @throws ApiError
|
|
28302
|
+
*/
|
|
28303
|
+
patch({
|
|
28304
|
+
requestBody
|
|
28305
|
+
}) {
|
|
28306
|
+
return this.httpRequest.request({
|
|
28307
|
+
method: "PATCH",
|
|
28308
|
+
url: "/api/reports/recent-order-activity/v2-temporary-route",
|
|
28309
|
+
body: requestBody,
|
|
28310
|
+
mediaType: "application/json",
|
|
28311
|
+
errors: {
|
|
28312
|
+
400: `Bad Request`,
|
|
28313
|
+
422: `Unprocessable Content`,
|
|
28314
|
+
500: `Internal Server Error`
|
|
28315
|
+
}
|
|
28316
|
+
});
|
|
28317
|
+
}
|
|
28318
|
+
/**
|
|
28319
|
+
* Inserts a list of resources.
|
|
28320
|
+
* @returns RecentOrderActivityReport OK
|
|
28321
|
+
* @throws ApiError
|
|
28322
|
+
*/
|
|
28323
|
+
postList({
|
|
28324
|
+
requestBody
|
|
28325
|
+
}) {
|
|
28326
|
+
return this.httpRequest.request({
|
|
28327
|
+
method: "POST",
|
|
28328
|
+
url: "/api/reports/recent-order-activity/v2-temporary-route/list",
|
|
28329
|
+
body: requestBody,
|
|
28330
|
+
mediaType: "application/json",
|
|
28331
|
+
errors: {
|
|
28332
|
+
400: `Bad Request`,
|
|
28333
|
+
422: `Unprocessable Content`,
|
|
28334
|
+
500: `Internal Server Error`
|
|
28335
|
+
}
|
|
28336
|
+
});
|
|
28337
|
+
}
|
|
28338
|
+
/**
|
|
28339
|
+
* Patches the resource.
|
|
28340
|
+
* @returns RecentOrderActivityReport OK
|
|
28341
|
+
* @throws ApiError
|
|
28342
|
+
*/
|
|
28343
|
+
patchWithReferences({
|
|
28344
|
+
requestBody
|
|
28345
|
+
}) {
|
|
28346
|
+
return this.httpRequest.request({
|
|
28347
|
+
method: "PATCH",
|
|
28348
|
+
url: "/api/reports/recent-order-activity/v2-temporary-route/with-references",
|
|
28349
|
+
body: requestBody,
|
|
28350
|
+
mediaType: "application/json",
|
|
28351
|
+
errors: {
|
|
28352
|
+
400: `Bad Request`,
|
|
28353
|
+
422: `Unprocessable Content`,
|
|
28354
|
+
500: `Internal Server Error`
|
|
28355
|
+
}
|
|
28356
|
+
});
|
|
28357
|
+
}
|
|
28358
|
+
/**
|
|
28359
|
+
* Deletes the resource.
|
|
28360
|
+
* @returns any OK
|
|
28361
|
+
* @throws ApiError
|
|
28362
|
+
*/
|
|
28363
|
+
deleteByObject({
|
|
28364
|
+
requestBody
|
|
28365
|
+
}) {
|
|
28366
|
+
return this.httpRequest.request({
|
|
28367
|
+
method: "DELETE",
|
|
28368
|
+
url: "/api/reports/recent-order-activity",
|
|
28369
|
+
body: requestBody,
|
|
28370
|
+
mediaType: "application/json",
|
|
28371
|
+
errors: {
|
|
28372
|
+
400: `Bad Request`,
|
|
28373
|
+
422: `Unprocessable Content`,
|
|
28374
|
+
500: `Internal Server Error`
|
|
28375
|
+
}
|
|
28376
|
+
});
|
|
28377
|
+
}
|
|
28378
|
+
/**
|
|
28379
|
+
* Gets a list of resources.
|
|
28380
|
+
* @returns RecentOrderActivityReportPage OK
|
|
28381
|
+
* @throws ApiError
|
|
28382
|
+
*/
|
|
28383
|
+
getPage({
|
|
28384
|
+
pageNumber,
|
|
28385
|
+
take,
|
|
28386
|
+
skip,
|
|
28387
|
+
limitListRequests,
|
|
28388
|
+
tenantId,
|
|
28389
|
+
modifiedById,
|
|
28390
|
+
modifiedByIds,
|
|
28391
|
+
dateCreatedGte,
|
|
28392
|
+
dateCreatedLte,
|
|
28393
|
+
isLive,
|
|
28394
|
+
sortOrderDirection
|
|
28395
|
+
}) {
|
|
28396
|
+
return this.httpRequest.request({
|
|
28397
|
+
method: "GET",
|
|
28398
|
+
url: "/api/reports/recent-order-activity",
|
|
28003
28399
|
query: {
|
|
28004
28400
|
PageNumber: pageNumber,
|
|
28005
28401
|
Take: take,
|
|
@@ -29305,6 +29701,30 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
29305
29701
|
}
|
|
29306
29702
|
});
|
|
29307
29703
|
}
|
|
29704
|
+
/**
|
|
29705
|
+
* Emails all on waitlist onto the opportunity />.
|
|
29706
|
+
* @returns ScheduledSession OK
|
|
29707
|
+
* @throws ApiError
|
|
29708
|
+
*/
|
|
29709
|
+
contactWaitlist({
|
|
29710
|
+
scheduledSessionId,
|
|
29711
|
+
requestBody
|
|
29712
|
+
}) {
|
|
29713
|
+
return this.httpRequest.request({
|
|
29714
|
+
method: "PATCH",
|
|
29715
|
+
url: "/api/scheduled-sessions/{scheduledSessionId}/email-waitlist",
|
|
29716
|
+
path: {
|
|
29717
|
+
scheduledSessionId
|
|
29718
|
+
},
|
|
29719
|
+
body: requestBody,
|
|
29720
|
+
mediaType: "application/json",
|
|
29721
|
+
errors: {
|
|
29722
|
+
400: `Bad Request`,
|
|
29723
|
+
422: `Unprocessable Content`,
|
|
29724
|
+
500: `Internal Server Error`
|
|
29725
|
+
}
|
|
29726
|
+
});
|
|
29727
|
+
}
|
|
29308
29728
|
/**
|
|
29309
29729
|
* Cleans table of leased and conflicted scheduled sessions.
|
|
29310
29730
|
* @returns number OK
|
|
@@ -42525,6 +42945,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
42525
42945
|
distance,
|
|
42526
42946
|
dashboardRequest,
|
|
42527
42947
|
programmeIds,
|
|
42948
|
+
venueTypeIds,
|
|
42528
42949
|
pageNumber,
|
|
42529
42950
|
take,
|
|
42530
42951
|
skip,
|
|
@@ -42562,6 +42983,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
42562
42983
|
Distance: distance,
|
|
42563
42984
|
DashboardRequest: dashboardRequest,
|
|
42564
42985
|
ProgrammeIds: programmeIds,
|
|
42986
|
+
VenueTypeIds: venueTypeIds,
|
|
42565
42987
|
PageNumber: pageNumber,
|
|
42566
42988
|
Take: take,
|
|
42567
42989
|
Skip: skip,
|
|
@@ -42671,6 +43093,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
42671
43093
|
distance,
|
|
42672
43094
|
dashboardRequest,
|
|
42673
43095
|
programmeIds,
|
|
43096
|
+
venueTypeIds,
|
|
42674
43097
|
pageNumber,
|
|
42675
43098
|
take,
|
|
42676
43099
|
skip,
|
|
@@ -42708,6 +43131,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
42708
43131
|
Distance: distance,
|
|
42709
43132
|
DashboardRequest: dashboardRequest,
|
|
42710
43133
|
ProgrammeIds: programmeIds,
|
|
43134
|
+
VenueTypeIds: venueTypeIds,
|
|
42711
43135
|
PageNumber: pageNumber,
|
|
42712
43136
|
Take: take,
|
|
42713
43137
|
Skip: skip,
|
|
@@ -42754,6 +43178,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
42754
43178
|
distance,
|
|
42755
43179
|
dashboardRequest,
|
|
42756
43180
|
programmeIds,
|
|
43181
|
+
venueTypeIds,
|
|
42757
43182
|
pageNumber,
|
|
42758
43183
|
take,
|
|
42759
43184
|
skip,
|
|
@@ -42791,6 +43216,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
42791
43216
|
Distance: distance,
|
|
42792
43217
|
DashboardRequest: dashboardRequest,
|
|
42793
43218
|
ProgrammeIds: programmeIds,
|
|
43219
|
+
VenueTypeIds: venueTypeIds,
|
|
42794
43220
|
PageNumber: pageNumber,
|
|
42795
43221
|
Take: take,
|
|
42796
43222
|
Skip: skip,
|
|
@@ -42837,6 +43263,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
42837
43263
|
distance,
|
|
42838
43264
|
dashboardRequest,
|
|
42839
43265
|
programmeIds,
|
|
43266
|
+
venueTypeIds,
|
|
42840
43267
|
pageNumber,
|
|
42841
43268
|
take,
|
|
42842
43269
|
skip,
|
|
@@ -42874,6 +43301,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
42874
43301
|
Distance: distance,
|
|
42875
43302
|
DashboardRequest: dashboardRequest,
|
|
42876
43303
|
ProgrammeIds: programmeIds,
|
|
43304
|
+
VenueTypeIds: venueTypeIds,
|
|
42877
43305
|
PageNumber: pageNumber,
|
|
42878
43306
|
Take: take,
|
|
42879
43307
|
Skip: skip,
|
|
@@ -42920,6 +43348,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
42920
43348
|
distance,
|
|
42921
43349
|
dashboardRequest,
|
|
42922
43350
|
programmeIds,
|
|
43351
|
+
venueTypeIds,
|
|
42923
43352
|
pageNumber,
|
|
42924
43353
|
take,
|
|
42925
43354
|
skip,
|
|
@@ -42957,6 +43386,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
42957
43386
|
Distance: distance,
|
|
42958
43387
|
DashboardRequest: dashboardRequest,
|
|
42959
43388
|
ProgrammeIds: programmeIds,
|
|
43389
|
+
VenueTypeIds: venueTypeIds,
|
|
42960
43390
|
PageNumber: pageNumber,
|
|
42961
43391
|
Take: take,
|
|
42962
43392
|
Skip: skip,
|
|
@@ -43452,6 +43882,378 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
43452
43882
|
}
|
|
43453
43883
|
});
|
|
43454
43884
|
}
|
|
43885
|
+
}class VenueTypeService {
|
|
43886
|
+
constructor(httpRequest) {
|
|
43887
|
+
this.httpRequest = httpRequest;
|
|
43888
|
+
}
|
|
43889
|
+
/**
|
|
43890
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
43891
|
+
* @returns VenueType OK
|
|
43892
|
+
* @throws ApiError
|
|
43893
|
+
*/
|
|
43894
|
+
post({
|
|
43895
|
+
requestBody
|
|
43896
|
+
}) {
|
|
43897
|
+
return this.httpRequest.request({
|
|
43898
|
+
method: "POST",
|
|
43899
|
+
url: "/api/venue-types/v2-temporary-route",
|
|
43900
|
+
body: requestBody,
|
|
43901
|
+
mediaType: "application/json",
|
|
43902
|
+
errors: {
|
|
43903
|
+
400: `Bad Request`,
|
|
43904
|
+
422: `Unprocessable Content`,
|
|
43905
|
+
500: `Internal Server Error`
|
|
43906
|
+
}
|
|
43907
|
+
});
|
|
43908
|
+
}
|
|
43909
|
+
/**
|
|
43910
|
+
* Patches the resource.
|
|
43911
|
+
* @returns VenueType OK
|
|
43912
|
+
* @throws ApiError
|
|
43913
|
+
*/
|
|
43914
|
+
patch({
|
|
43915
|
+
requestBody
|
|
43916
|
+
}) {
|
|
43917
|
+
return this.httpRequest.request({
|
|
43918
|
+
method: "PATCH",
|
|
43919
|
+
url: "/api/venue-types/v2-temporary-route",
|
|
43920
|
+
body: requestBody,
|
|
43921
|
+
mediaType: "application/json",
|
|
43922
|
+
errors: {
|
|
43923
|
+
400: `Bad Request`,
|
|
43924
|
+
422: `Unprocessable Content`,
|
|
43925
|
+
500: `Internal Server Error`
|
|
43926
|
+
}
|
|
43927
|
+
});
|
|
43928
|
+
}
|
|
43929
|
+
/**
|
|
43930
|
+
* Inserts a list of resources.
|
|
43931
|
+
* @returns VenueType OK
|
|
43932
|
+
* @throws ApiError
|
|
43933
|
+
*/
|
|
43934
|
+
postList({
|
|
43935
|
+
requestBody
|
|
43936
|
+
}) {
|
|
43937
|
+
return this.httpRequest.request({
|
|
43938
|
+
method: "POST",
|
|
43939
|
+
url: "/api/venue-types/v2-temporary-route/list",
|
|
43940
|
+
body: requestBody,
|
|
43941
|
+
mediaType: "application/json",
|
|
43942
|
+
errors: {
|
|
43943
|
+
400: `Bad Request`,
|
|
43944
|
+
422: `Unprocessable Content`,
|
|
43945
|
+
500: `Internal Server Error`
|
|
43946
|
+
}
|
|
43947
|
+
});
|
|
43948
|
+
}
|
|
43949
|
+
/**
|
|
43950
|
+
* Patches the resource.
|
|
43951
|
+
* @returns VenueType OK
|
|
43952
|
+
* @throws ApiError
|
|
43953
|
+
*/
|
|
43954
|
+
patchWithReferences({
|
|
43955
|
+
requestBody
|
|
43956
|
+
}) {
|
|
43957
|
+
return this.httpRequest.request({
|
|
43958
|
+
method: "PATCH",
|
|
43959
|
+
url: "/api/venue-types/v2-temporary-route/with-references",
|
|
43960
|
+
body: requestBody,
|
|
43961
|
+
mediaType: "application/json",
|
|
43962
|
+
errors: {
|
|
43963
|
+
400: `Bad Request`,
|
|
43964
|
+
422: `Unprocessable Content`,
|
|
43965
|
+
500: `Internal Server Error`
|
|
43966
|
+
}
|
|
43967
|
+
});
|
|
43968
|
+
}
|
|
43969
|
+
/**
|
|
43970
|
+
* Deletes the resource.
|
|
43971
|
+
* @returns any OK
|
|
43972
|
+
* @throws ApiError
|
|
43973
|
+
*/
|
|
43974
|
+
deleteByObject({
|
|
43975
|
+
requestBody
|
|
43976
|
+
}) {
|
|
43977
|
+
return this.httpRequest.request({
|
|
43978
|
+
method: "DELETE",
|
|
43979
|
+
url: "/api/venue-types",
|
|
43980
|
+
body: requestBody,
|
|
43981
|
+
mediaType: "application/json",
|
|
43982
|
+
errors: {
|
|
43983
|
+
400: `Bad Request`,
|
|
43984
|
+
422: `Unprocessable Content`,
|
|
43985
|
+
500: `Internal Server Error`
|
|
43986
|
+
}
|
|
43987
|
+
});
|
|
43988
|
+
}
|
|
43989
|
+
/**
|
|
43990
|
+
* Gets a list of resources.
|
|
43991
|
+
* @returns VenueTypePage OK
|
|
43992
|
+
* @throws ApiError
|
|
43993
|
+
*/
|
|
43994
|
+
getPage({
|
|
43995
|
+
pageNumber,
|
|
43996
|
+
take,
|
|
43997
|
+
skip,
|
|
43998
|
+
limitListRequests,
|
|
43999
|
+
tenantId,
|
|
44000
|
+
modifiedById,
|
|
44001
|
+
modifiedByIds,
|
|
44002
|
+
dateCreatedGte,
|
|
44003
|
+
dateCreatedLte,
|
|
44004
|
+
isLive,
|
|
44005
|
+
sortOrderDirection
|
|
44006
|
+
}) {
|
|
44007
|
+
return this.httpRequest.request({
|
|
44008
|
+
method: "GET",
|
|
44009
|
+
url: "/api/venue-types",
|
|
44010
|
+
query: {
|
|
44011
|
+
PageNumber: pageNumber,
|
|
44012
|
+
Take: take,
|
|
44013
|
+
Skip: skip,
|
|
44014
|
+
LimitListRequests: limitListRequests,
|
|
44015
|
+
TenantId: tenantId,
|
|
44016
|
+
ModifiedById: modifiedById,
|
|
44017
|
+
ModifiedByIds: modifiedByIds,
|
|
44018
|
+
DateCreatedGTE: dateCreatedGte,
|
|
44019
|
+
DateCreatedLTE: dateCreatedLte,
|
|
44020
|
+
IsLive: isLive,
|
|
44021
|
+
SortOrderDirection: sortOrderDirection
|
|
44022
|
+
},
|
|
44023
|
+
errors: {
|
|
44024
|
+
400: `Bad Request`,
|
|
44025
|
+
422: `Unprocessable Content`,
|
|
44026
|
+
500: `Internal Server Error`
|
|
44027
|
+
}
|
|
44028
|
+
});
|
|
44029
|
+
}
|
|
44030
|
+
/**
|
|
44031
|
+
* Deletes the resource.
|
|
44032
|
+
* @returns any OK
|
|
44033
|
+
* @throws ApiError
|
|
44034
|
+
*/
|
|
44035
|
+
deleteById({
|
|
44036
|
+
id
|
|
44037
|
+
}) {
|
|
44038
|
+
return this.httpRequest.request({
|
|
44039
|
+
method: "DELETE",
|
|
44040
|
+
url: "/api/venue-types/{id}",
|
|
44041
|
+
path: {
|
|
44042
|
+
id
|
|
44043
|
+
},
|
|
44044
|
+
errors: {
|
|
44045
|
+
400: `Bad Request`,
|
|
44046
|
+
422: `Unprocessable Content`,
|
|
44047
|
+
500: `Internal Server Error`
|
|
44048
|
+
}
|
|
44049
|
+
});
|
|
44050
|
+
}
|
|
44051
|
+
/**
|
|
44052
|
+
* Gets the resource by its Id.
|
|
44053
|
+
* @returns VenueType OK
|
|
44054
|
+
* @throws ApiError
|
|
44055
|
+
*/
|
|
44056
|
+
getObject({
|
|
44057
|
+
id
|
|
44058
|
+
}) {
|
|
44059
|
+
return this.httpRequest.request({
|
|
44060
|
+
method: "GET",
|
|
44061
|
+
url: "/api/venue-types/{id}",
|
|
44062
|
+
path: {
|
|
44063
|
+
id
|
|
44064
|
+
},
|
|
44065
|
+
errors: {
|
|
44066
|
+
400: `Bad Request`,
|
|
44067
|
+
422: `Unprocessable Content`,
|
|
44068
|
+
500: `Internal Server Error`
|
|
44069
|
+
}
|
|
44070
|
+
});
|
|
44071
|
+
}
|
|
44072
|
+
/**
|
|
44073
|
+
* Returns a value indicating whether the resource is deletable.
|
|
44074
|
+
* @returns boolean OK
|
|
44075
|
+
* @throws ApiError
|
|
44076
|
+
*/
|
|
44077
|
+
canDelete({
|
|
44078
|
+
id
|
|
44079
|
+
}) {
|
|
44080
|
+
return this.httpRequest.request({
|
|
44081
|
+
method: "GET",
|
|
44082
|
+
url: "/api/venue-types/{id}/deletable",
|
|
44083
|
+
path: {
|
|
44084
|
+
id
|
|
44085
|
+
},
|
|
44086
|
+
errors: {
|
|
44087
|
+
400: `Bad Request`,
|
|
44088
|
+
422: `Unprocessable Content`,
|
|
44089
|
+
500: `Internal Server Error`
|
|
44090
|
+
}
|
|
44091
|
+
});
|
|
44092
|
+
}
|
|
44093
|
+
/**
|
|
44094
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
44095
|
+
* @returns boolean OK
|
|
44096
|
+
* @throws ApiError
|
|
44097
|
+
*/
|
|
44098
|
+
exists({
|
|
44099
|
+
pageNumber,
|
|
44100
|
+
take,
|
|
44101
|
+
skip,
|
|
44102
|
+
limitListRequests,
|
|
44103
|
+
tenantId,
|
|
44104
|
+
modifiedById,
|
|
44105
|
+
modifiedByIds,
|
|
44106
|
+
dateCreatedGte,
|
|
44107
|
+
dateCreatedLte,
|
|
44108
|
+
isLive,
|
|
44109
|
+
sortOrderDirection
|
|
44110
|
+
}) {
|
|
44111
|
+
return this.httpRequest.request({
|
|
44112
|
+
method: "GET",
|
|
44113
|
+
url: "/api/venue-types/exists",
|
|
44114
|
+
query: {
|
|
44115
|
+
PageNumber: pageNumber,
|
|
44116
|
+
Take: take,
|
|
44117
|
+
Skip: skip,
|
|
44118
|
+
LimitListRequests: limitListRequests,
|
|
44119
|
+
TenantId: tenantId,
|
|
44120
|
+
ModifiedById: modifiedById,
|
|
44121
|
+
ModifiedByIds: modifiedByIds,
|
|
44122
|
+
DateCreatedGTE: dateCreatedGte,
|
|
44123
|
+
DateCreatedLTE: dateCreatedLte,
|
|
44124
|
+
IsLive: isLive,
|
|
44125
|
+
SortOrderDirection: sortOrderDirection
|
|
44126
|
+
},
|
|
44127
|
+
errors: {
|
|
44128
|
+
400: `Bad Request`,
|
|
44129
|
+
422: `Unprocessable Content`,
|
|
44130
|
+
500: `Internal Server Error`
|
|
44131
|
+
}
|
|
44132
|
+
});
|
|
44133
|
+
}
|
|
44134
|
+
/**
|
|
44135
|
+
* Returns the number of results in the database given the provided search params.
|
|
44136
|
+
* @returns number OK
|
|
44137
|
+
* @throws ApiError
|
|
44138
|
+
*/
|
|
44139
|
+
count({
|
|
44140
|
+
pageNumber,
|
|
44141
|
+
take,
|
|
44142
|
+
skip,
|
|
44143
|
+
limitListRequests,
|
|
44144
|
+
tenantId,
|
|
44145
|
+
modifiedById,
|
|
44146
|
+
modifiedByIds,
|
|
44147
|
+
dateCreatedGte,
|
|
44148
|
+
dateCreatedLte,
|
|
44149
|
+
isLive,
|
|
44150
|
+
sortOrderDirection
|
|
44151
|
+
}) {
|
|
44152
|
+
return this.httpRequest.request({
|
|
44153
|
+
method: "GET",
|
|
44154
|
+
url: "/api/venue-types/count",
|
|
44155
|
+
query: {
|
|
44156
|
+
PageNumber: pageNumber,
|
|
44157
|
+
Take: take,
|
|
44158
|
+
Skip: skip,
|
|
44159
|
+
LimitListRequests: limitListRequests,
|
|
44160
|
+
TenantId: tenantId,
|
|
44161
|
+
ModifiedById: modifiedById,
|
|
44162
|
+
ModifiedByIds: modifiedByIds,
|
|
44163
|
+
DateCreatedGTE: dateCreatedGte,
|
|
44164
|
+
DateCreatedLTE: dateCreatedLte,
|
|
44165
|
+
IsLive: isLive,
|
|
44166
|
+
SortOrderDirection: sortOrderDirection
|
|
44167
|
+
},
|
|
44168
|
+
errors: {
|
|
44169
|
+
400: `Bad Request`,
|
|
44170
|
+
422: `Unprocessable Content`,
|
|
44171
|
+
500: `Internal Server Error`
|
|
44172
|
+
}
|
|
44173
|
+
});
|
|
44174
|
+
}
|
|
44175
|
+
/**
|
|
44176
|
+
* Gets a list of resources unpaged and without references.
|
|
44177
|
+
* @returns VenueType OK
|
|
44178
|
+
* @throws ApiError
|
|
44179
|
+
*/
|
|
44180
|
+
getListWithoutReferences({
|
|
44181
|
+
pageNumber,
|
|
44182
|
+
take,
|
|
44183
|
+
skip,
|
|
44184
|
+
limitListRequests,
|
|
44185
|
+
tenantId,
|
|
44186
|
+
modifiedById,
|
|
44187
|
+
modifiedByIds,
|
|
44188
|
+
dateCreatedGte,
|
|
44189
|
+
dateCreatedLte,
|
|
44190
|
+
isLive,
|
|
44191
|
+
sortOrderDirection
|
|
44192
|
+
}) {
|
|
44193
|
+
return this.httpRequest.request({
|
|
44194
|
+
method: "GET",
|
|
44195
|
+
url: "/api/venue-types/without-references",
|
|
44196
|
+
query: {
|
|
44197
|
+
PageNumber: pageNumber,
|
|
44198
|
+
Take: take,
|
|
44199
|
+
Skip: skip,
|
|
44200
|
+
LimitListRequests: limitListRequests,
|
|
44201
|
+
TenantId: tenantId,
|
|
44202
|
+
ModifiedById: modifiedById,
|
|
44203
|
+
ModifiedByIds: modifiedByIds,
|
|
44204
|
+
DateCreatedGTE: dateCreatedGte,
|
|
44205
|
+
DateCreatedLTE: dateCreatedLte,
|
|
44206
|
+
IsLive: isLive,
|
|
44207
|
+
SortOrderDirection: sortOrderDirection
|
|
44208
|
+
},
|
|
44209
|
+
errors: {
|
|
44210
|
+
400: `Bad Request`,
|
|
44211
|
+
422: `Unprocessable Content`,
|
|
44212
|
+
500: `Internal Server Error`
|
|
44213
|
+
}
|
|
44214
|
+
});
|
|
44215
|
+
}
|
|
44216
|
+
/**
|
|
44217
|
+
* Gets a list of resources.
|
|
44218
|
+
* @returns VenueType OK
|
|
44219
|
+
* @throws ApiError
|
|
44220
|
+
*/
|
|
44221
|
+
getListIdName({
|
|
44222
|
+
pageNumber,
|
|
44223
|
+
take,
|
|
44224
|
+
skip,
|
|
44225
|
+
limitListRequests,
|
|
44226
|
+
tenantId,
|
|
44227
|
+
modifiedById,
|
|
44228
|
+
modifiedByIds,
|
|
44229
|
+
dateCreatedGte,
|
|
44230
|
+
dateCreatedLte,
|
|
44231
|
+
isLive,
|
|
44232
|
+
sortOrderDirection
|
|
44233
|
+
}) {
|
|
44234
|
+
return this.httpRequest.request({
|
|
44235
|
+
method: "GET",
|
|
44236
|
+
url: "/api/venue-types/id-name",
|
|
44237
|
+
query: {
|
|
44238
|
+
PageNumber: pageNumber,
|
|
44239
|
+
Take: take,
|
|
44240
|
+
Skip: skip,
|
|
44241
|
+
LimitListRequests: limitListRequests,
|
|
44242
|
+
TenantId: tenantId,
|
|
44243
|
+
ModifiedById: modifiedById,
|
|
44244
|
+
ModifiedByIds: modifiedByIds,
|
|
44245
|
+
DateCreatedGTE: dateCreatedGte,
|
|
44246
|
+
DateCreatedLTE: dateCreatedLte,
|
|
44247
|
+
IsLive: isLive,
|
|
44248
|
+
SortOrderDirection: sortOrderDirection
|
|
44249
|
+
},
|
|
44250
|
+
errors: {
|
|
44251
|
+
400: `Bad Request`,
|
|
44252
|
+
422: `Unprocessable Content`,
|
|
44253
|
+
500: `Internal Server Error`
|
|
44254
|
+
}
|
|
44255
|
+
});
|
|
44256
|
+
}
|
|
43455
44257
|
}class WaitlistActivityService {
|
|
43456
44258
|
constructor(httpRequest) {
|
|
43457
44259
|
this.httpRequest = httpRequest;
|
|
@@ -45410,6 +46212,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45410
46212
|
publicSurveys;
|
|
45411
46213
|
publicTenants;
|
|
45412
46214
|
publicVenues;
|
|
46215
|
+
publicVenueTypes;
|
|
45413
46216
|
publicWaitlistActivity;
|
|
45414
46217
|
publicWaitlistOpportunity;
|
|
45415
46218
|
recentOrderActivityReport;
|
|
@@ -45446,6 +46249,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45446
46249
|
venuePerformance;
|
|
45447
46250
|
venues;
|
|
45448
46251
|
venuesReport;
|
|
46252
|
+
venueType;
|
|
45449
46253
|
waitlistActivity;
|
|
45450
46254
|
waitlistActivityReport;
|
|
45451
46255
|
waitlistOpportunity;
|
|
@@ -45540,6 +46344,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45540
46344
|
this.publicSurveys = new PublicSurveysService(this.request);
|
|
45541
46345
|
this.publicTenants = new PublicTenantsService(this.request);
|
|
45542
46346
|
this.publicVenues = new PublicVenuesService(this.request);
|
|
46347
|
+
this.publicVenueTypes = new PublicVenueTypesService(this.request);
|
|
45543
46348
|
this.publicWaitlistActivity = new PublicWaitlistActivityService(this.request);
|
|
45544
46349
|
this.publicWaitlistOpportunity = new PublicWaitlistOpportunityService(this.request);
|
|
45545
46350
|
this.recentOrderActivityReport = new RecentOrderActivityReportService(this.request);
|
|
@@ -45576,6 +46381,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45576
46381
|
this.venuePerformance = new VenuePerformanceService(this.request);
|
|
45577
46382
|
this.venues = new VenuesService(this.request);
|
|
45578
46383
|
this.venuesReport = new VenuesReportService(this.request);
|
|
46384
|
+
this.venueType = new VenueTypeService(this.request);
|
|
45579
46385
|
this.waitlistActivity = new WaitlistActivityService(this.request);
|
|
45580
46386
|
this.waitlistActivityReport = new WaitlistActivityReportService(this.request);
|
|
45581
46387
|
this.waitlistOpportunity = new WaitlistOpportunityService(this.request);
|
|
@@ -45980,4 +46786,4 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45980
46786
|
UpcomingLayout2["GRID"] = "Grid";
|
|
45981
46787
|
UpcomingLayout2["CALENDAR"] = "Calendar";
|
|
45982
46788
|
return UpcomingLayout2;
|
|
45983
|
-
})(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,TenantStatus,TenantTier,TenantWebsiteSettingsService,TenantsService,TimezoneService,TotalRevenueReportService,UnsplashService,UpcomingLayout,UserPermissionsService,UserProgrammesService,UserProvidersService,UsersService,VenueManagersService,VenuePerformanceService,VenuesReportService,VenuesService,WaitlistActivityReportService,WaitlistActivityService,WaitlistOpportunityReportService,WaitlistOpportunityService};
|
|
46789
|
+
})(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,PublicVenueTypesService,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,TenantStatus,TenantTier,TenantWebsiteSettingsService,TenantsService,TimezoneService,TotalRevenueReportService,UnsplashService,UpcomingLayout,UserPermissionsService,UserProgrammesService,UserProvidersService,UsersService,VenueManagersService,VenuePerformanceService,VenueTypeService,VenuesReportService,VenuesService,WaitlistActivityReportService,WaitlistActivityService,WaitlistOpportunityReportService,WaitlistOpportunityService};
|