reach-api-sdk 1.0.202 → 1.0.204
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 +1702 -480
- package/dist/reach-sdk.js +1127 -212
- package/package.json +1 -1
- package/src/apiClient.ts +6 -0
- package/src/definition/swagger.yaml +5022 -2064
- package/src/index.ts +8 -0
- package/src/models/CourseEmailWaitlistPatch.ts +22 -0
- package/src/models/CreateOffer.ts +8 -0
- package/src/models/CreateQuestion.ts +4 -0
- package/src/models/Offer.ts +8 -0
- package/src/models/OfferPatch.ts +8 -0
- package/src/models/OfferPost.ts +8 -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/SurveyCompletionLog.ts +4 -0
- package/src/models/SurveyQuestionType.ts +5 -0
- package/src/models/TemplateOffer.ts +24 -0
- package/src/models/UpdateOffer.ts +8 -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/PublicGenericActivityService.ts +323 -0
- package/src/services/PublicSurveyCompletionLogsService.ts +12 -0
- package/src/services/PublicVenueTypesService.ts +401 -0
- package/src/services/PublicVenuesService.ts +237 -0
- package/src/services/ScheduledSessionsService.ts +35 -0
- package/src/services/SurveyCompletionLogService.ts +30 -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,
|
|
@@ -21656,6 +21692,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21656
21692
|
periodsOfWeek,
|
|
21657
21693
|
additionalSupport,
|
|
21658
21694
|
amenity,
|
|
21695
|
+
venueTypeIds,
|
|
21659
21696
|
programmeIds,
|
|
21660
21697
|
pageNumber,
|
|
21661
21698
|
take,
|
|
@@ -21709,6 +21746,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21709
21746
|
PeriodsOfWeek: periodsOfWeek,
|
|
21710
21747
|
AdditionalSupport: additionalSupport,
|
|
21711
21748
|
Amenity: amenity,
|
|
21749
|
+
VenueTypeIds: venueTypeIds,
|
|
21712
21750
|
ProgrammeIds: programmeIds,
|
|
21713
21751
|
PageNumber: pageNumber,
|
|
21714
21752
|
Take: take,
|
|
@@ -21768,6 +21806,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21768
21806
|
periodsOfWeek,
|
|
21769
21807
|
additionalSupport,
|
|
21770
21808
|
amenity,
|
|
21809
|
+
venueTypeIds,
|
|
21771
21810
|
programmeIds,
|
|
21772
21811
|
pageNumber,
|
|
21773
21812
|
take,
|
|
@@ -21818,6 +21857,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21818
21857
|
PeriodsOfWeek: periodsOfWeek,
|
|
21819
21858
|
AdditionalSupport: additionalSupport,
|
|
21820
21859
|
Amenity: amenity,
|
|
21860
|
+
VenueTypeIds: venueTypeIds,
|
|
21821
21861
|
ProgrammeIds: programmeIds,
|
|
21822
21862
|
PageNumber: pageNumber,
|
|
21823
21863
|
Take: take,
|
|
@@ -21878,6 +21918,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21878
21918
|
periodsOfWeek,
|
|
21879
21919
|
additionalSupport,
|
|
21880
21920
|
amenity,
|
|
21921
|
+
venueTypeIds,
|
|
21881
21922
|
programmeIds,
|
|
21882
21923
|
pageNumber,
|
|
21883
21924
|
take,
|
|
@@ -21931,6 +21972,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21931
21972
|
PeriodsOfWeek: periodsOfWeek,
|
|
21932
21973
|
AdditionalSupport: additionalSupport,
|
|
21933
21974
|
Amenity: amenity,
|
|
21975
|
+
VenueTypeIds: venueTypeIds,
|
|
21934
21976
|
ProgrammeIds: programmeIds,
|
|
21935
21977
|
PageNumber: pageNumber,
|
|
21936
21978
|
Take: take,
|
|
@@ -21978,6 +22020,119 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21978
22020
|
}
|
|
21979
22021
|
});
|
|
21980
22022
|
}
|
|
22023
|
+
/**
|
|
22024
|
+
* Retrieves a paged list of activities using optimized raw SQL queries.
|
|
22025
|
+
* This endpoint loads all related data (images, offers, sessions) in a single query using JSON aggregation,
|
|
22026
|
+
* eliminating the overhead of OnPagedItemsLoaded method. Returns only minimal required fields.
|
|
22027
|
+
* @returns GenericActivityPage OK
|
|
22028
|
+
* @throws ApiError
|
|
22029
|
+
*/
|
|
22030
|
+
getPageOptimized({
|
|
22031
|
+
wildcard,
|
|
22032
|
+
venueId,
|
|
22033
|
+
providerId,
|
|
22034
|
+
programmeId,
|
|
22035
|
+
online,
|
|
22036
|
+
archived,
|
|
22037
|
+
deleted,
|
|
22038
|
+
activityType,
|
|
22039
|
+
includeNextOpportunity,
|
|
22040
|
+
featured,
|
|
22041
|
+
_private,
|
|
22042
|
+
searchGeoCenter,
|
|
22043
|
+
openactiveActivityId,
|
|
22044
|
+
activityId,
|
|
22045
|
+
activityIds,
|
|
22046
|
+
networkId,
|
|
22047
|
+
tenantStatus,
|
|
22048
|
+
lat,
|
|
22049
|
+
lng,
|
|
22050
|
+
distance,
|
|
22051
|
+
minAgeLte,
|
|
22052
|
+
minAgeGte,
|
|
22053
|
+
maxAgeLte,
|
|
22054
|
+
maxAgeGte,
|
|
22055
|
+
priceTotalGte,
|
|
22056
|
+
priceTotalLte,
|
|
22057
|
+
timeOfDay,
|
|
22058
|
+
startDateTimeGte,
|
|
22059
|
+
endDateTimeLte,
|
|
22060
|
+
gender,
|
|
22061
|
+
periodsOfWeek,
|
|
22062
|
+
additionalSupport,
|
|
22063
|
+
amenity,
|
|
22064
|
+
venueTypeIds,
|
|
22065
|
+
programmeIds,
|
|
22066
|
+
pageNumber,
|
|
22067
|
+
take,
|
|
22068
|
+
skip,
|
|
22069
|
+
limitListRequests,
|
|
22070
|
+
tenantId,
|
|
22071
|
+
modifiedById,
|
|
22072
|
+
modifiedByIds,
|
|
22073
|
+
dateCreatedGte,
|
|
22074
|
+
dateCreatedLte,
|
|
22075
|
+
isLive,
|
|
22076
|
+
sortOrderDirection
|
|
22077
|
+
}) {
|
|
22078
|
+
return this.httpRequest.request({
|
|
22079
|
+
method: "GET",
|
|
22080
|
+
url: "/api/public/all-activities/network/optimized",
|
|
22081
|
+
query: {
|
|
22082
|
+
Wildcard: wildcard,
|
|
22083
|
+
VenueId: venueId,
|
|
22084
|
+
ProviderId: providerId,
|
|
22085
|
+
ProgrammeId: programmeId,
|
|
22086
|
+
Online: online,
|
|
22087
|
+
Archived: archived,
|
|
22088
|
+
Deleted: deleted,
|
|
22089
|
+
ActivityType: activityType,
|
|
22090
|
+
IncludeNextOpportunity: includeNextOpportunity,
|
|
22091
|
+
Featured: featured,
|
|
22092
|
+
Private: _private,
|
|
22093
|
+
SearchGeoCenter: searchGeoCenter,
|
|
22094
|
+
OpenactiveActivityId: openactiveActivityId,
|
|
22095
|
+
ActivityId: activityId,
|
|
22096
|
+
ActivityIds: activityIds,
|
|
22097
|
+
NetworkId: networkId,
|
|
22098
|
+
TenantStatus: tenantStatus,
|
|
22099
|
+
Lat: lat,
|
|
22100
|
+
Lng: lng,
|
|
22101
|
+
Distance: distance,
|
|
22102
|
+
MinAgeLTE: minAgeLte,
|
|
22103
|
+
MinAgeGTE: minAgeGte,
|
|
22104
|
+
MaxAgeLTE: maxAgeLte,
|
|
22105
|
+
MaxAgeGTE: maxAgeGte,
|
|
22106
|
+
PriceTotalGTE: priceTotalGte,
|
|
22107
|
+
PriceTotalLTE: priceTotalLte,
|
|
22108
|
+
TimeOfDay: timeOfDay,
|
|
22109
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
22110
|
+
EndDateTimeLTE: endDateTimeLte,
|
|
22111
|
+
Gender: gender,
|
|
22112
|
+
PeriodsOfWeek: periodsOfWeek,
|
|
22113
|
+
AdditionalSupport: additionalSupport,
|
|
22114
|
+
Amenity: amenity,
|
|
22115
|
+
VenueTypeIds: venueTypeIds,
|
|
22116
|
+
ProgrammeIds: programmeIds,
|
|
22117
|
+
PageNumber: pageNumber,
|
|
22118
|
+
Take: take,
|
|
22119
|
+
Skip: skip,
|
|
22120
|
+
LimitListRequests: limitListRequests,
|
|
22121
|
+
TenantId: tenantId,
|
|
22122
|
+
ModifiedById: modifiedById,
|
|
22123
|
+
ModifiedByIds: modifiedByIds,
|
|
22124
|
+
DateCreatedGTE: dateCreatedGte,
|
|
22125
|
+
DateCreatedLTE: dateCreatedLte,
|
|
22126
|
+
IsLive: isLive,
|
|
22127
|
+
SortOrderDirection: sortOrderDirection
|
|
22128
|
+
},
|
|
22129
|
+
errors: {
|
|
22130
|
+
400: `Bad Request`,
|
|
22131
|
+
422: `Unprocessable Content`,
|
|
22132
|
+
500: `Internal Server Error`
|
|
22133
|
+
}
|
|
22134
|
+
});
|
|
22135
|
+
}
|
|
21981
22136
|
/**
|
|
21982
22137
|
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
21983
22138
|
* @returns boolean OK
|
|
@@ -22018,6 +22173,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22018
22173
|
periodsOfWeek,
|
|
22019
22174
|
additionalSupport,
|
|
22020
22175
|
amenity,
|
|
22176
|
+
venueTypeIds,
|
|
22021
22177
|
programmeIds,
|
|
22022
22178
|
pageNumber,
|
|
22023
22179
|
take,
|
|
@@ -22071,6 +22227,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22071
22227
|
PeriodsOfWeek: periodsOfWeek,
|
|
22072
22228
|
AdditionalSupport: additionalSupport,
|
|
22073
22229
|
Amenity: amenity,
|
|
22230
|
+
VenueTypeIds: venueTypeIds,
|
|
22074
22231
|
ProgrammeIds: programmeIds,
|
|
22075
22232
|
PageNumber: pageNumber,
|
|
22076
22233
|
Take: take,
|
|
@@ -25945,6 +26102,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
25945
26102
|
orderItemId,
|
|
25946
26103
|
sessionId,
|
|
25947
26104
|
courseId,
|
|
26105
|
+
offerId,
|
|
25948
26106
|
pageNumber,
|
|
25949
26107
|
take,
|
|
25950
26108
|
skip,
|
|
@@ -25970,6 +26128,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
25970
26128
|
OrderItemId: orderItemId,
|
|
25971
26129
|
SessionId: sessionId,
|
|
25972
26130
|
CourseId: courseId,
|
|
26131
|
+
OfferId: offerId,
|
|
25973
26132
|
PageNumber: pageNumber,
|
|
25974
26133
|
Take: take,
|
|
25975
26134
|
Skip: skip,
|
|
@@ -26098,6 +26257,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
26098
26257
|
orderItemId,
|
|
26099
26258
|
sessionId,
|
|
26100
26259
|
courseId,
|
|
26260
|
+
offerId,
|
|
26101
26261
|
pageNumber,
|
|
26102
26262
|
take,
|
|
26103
26263
|
skip,
|
|
@@ -26123,6 +26283,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
26123
26283
|
OrderItemId: orderItemId,
|
|
26124
26284
|
SessionId: sessionId,
|
|
26125
26285
|
CourseId: courseId,
|
|
26286
|
+
OfferId: offerId,
|
|
26126
26287
|
PageNumber: pageNumber,
|
|
26127
26288
|
Take: take,
|
|
26128
26289
|
Skip: skip,
|
|
@@ -27081,6 +27242,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27081
27242
|
distance,
|
|
27082
27243
|
dashboardRequest,
|
|
27083
27244
|
programmeIds,
|
|
27245
|
+
venueTypeIds,
|
|
27084
27246
|
pageNumber,
|
|
27085
27247
|
take,
|
|
27086
27248
|
skip,
|
|
@@ -27121,6 +27283,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27121
27283
|
Distance: distance,
|
|
27122
27284
|
DashboardRequest: dashboardRequest,
|
|
27123
27285
|
ProgrammeIds: programmeIds,
|
|
27286
|
+
VenueTypeIds: venueTypeIds,
|
|
27124
27287
|
PageNumber: pageNumber,
|
|
27125
27288
|
Take: take,
|
|
27126
27289
|
Skip: skip,
|
|
@@ -27191,6 +27354,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27191
27354
|
distance,
|
|
27192
27355
|
dashboardRequest,
|
|
27193
27356
|
programmeIds,
|
|
27357
|
+
venueTypeIds,
|
|
27194
27358
|
pageNumber,
|
|
27195
27359
|
take,
|
|
27196
27360
|
skip,
|
|
@@ -27228,6 +27392,92 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27228
27392
|
Distance: distance,
|
|
27229
27393
|
DashboardRequest: dashboardRequest,
|
|
27230
27394
|
ProgrammeIds: programmeIds,
|
|
27395
|
+
VenueTypeIds: venueTypeIds,
|
|
27396
|
+
PageNumber: pageNumber,
|
|
27397
|
+
Take: take,
|
|
27398
|
+
Skip: skip,
|
|
27399
|
+
LimitListRequests: limitListRequests,
|
|
27400
|
+
TenantId: tenantId,
|
|
27401
|
+
ModifiedById: modifiedById,
|
|
27402
|
+
ModifiedByIds: modifiedByIds,
|
|
27403
|
+
DateCreatedGTE: dateCreatedGte,
|
|
27404
|
+
DateCreatedLTE: dateCreatedLte,
|
|
27405
|
+
IsLive: isLive,
|
|
27406
|
+
SortOrderDirection: sortOrderDirection
|
|
27407
|
+
},
|
|
27408
|
+
errors: {
|
|
27409
|
+
400: `Bad Request`,
|
|
27410
|
+
422: `Unprocessable Content`,
|
|
27411
|
+
500: `Internal Server Error`
|
|
27412
|
+
}
|
|
27413
|
+
});
|
|
27414
|
+
}
|
|
27415
|
+
/**
|
|
27416
|
+
* Get Venues for a network using optimized query.
|
|
27417
|
+
* @returns VenuePage OK
|
|
27418
|
+
* @throws ApiError
|
|
27419
|
+
*/
|
|
27420
|
+
getNetworkPageOptimized({
|
|
27421
|
+
ids,
|
|
27422
|
+
wildcard,
|
|
27423
|
+
name,
|
|
27424
|
+
streetAddress,
|
|
27425
|
+
addressPostalcode,
|
|
27426
|
+
nameLike,
|
|
27427
|
+
slug,
|
|
27428
|
+
assignedTo,
|
|
27429
|
+
stripeAccountId,
|
|
27430
|
+
searchGeoCenter,
|
|
27431
|
+
publishedOnWeb,
|
|
27432
|
+
archived,
|
|
27433
|
+
networkId,
|
|
27434
|
+
tenantStatus,
|
|
27435
|
+
programmeId,
|
|
27436
|
+
includeOpportunityImages,
|
|
27437
|
+
includeOpportunityOffers,
|
|
27438
|
+
includeNextOpportunity,
|
|
27439
|
+
distance,
|
|
27440
|
+
dashboardRequest,
|
|
27441
|
+
programmeIds,
|
|
27442
|
+
venueTypeIds,
|
|
27443
|
+
pageNumber,
|
|
27444
|
+
take,
|
|
27445
|
+
skip,
|
|
27446
|
+
limitListRequests,
|
|
27447
|
+
tenantId,
|
|
27448
|
+
modifiedById,
|
|
27449
|
+
modifiedByIds,
|
|
27450
|
+
dateCreatedGte,
|
|
27451
|
+
dateCreatedLte,
|
|
27452
|
+
isLive,
|
|
27453
|
+
sortOrderDirection
|
|
27454
|
+
}) {
|
|
27455
|
+
return this.httpRequest.request({
|
|
27456
|
+
method: "GET",
|
|
27457
|
+
url: "/api/public/venues/network/optimized",
|
|
27458
|
+
query: {
|
|
27459
|
+
Ids: ids,
|
|
27460
|
+
Wildcard: wildcard,
|
|
27461
|
+
Name: name,
|
|
27462
|
+
StreetAddress: streetAddress,
|
|
27463
|
+
AddressPostalcode: addressPostalcode,
|
|
27464
|
+
NameLike: nameLike,
|
|
27465
|
+
Slug: slug,
|
|
27466
|
+
AssignedTo: assignedTo,
|
|
27467
|
+
StripeAccountId: stripeAccountId,
|
|
27468
|
+
SearchGeoCenter: searchGeoCenter,
|
|
27469
|
+
PublishedOnWeb: publishedOnWeb,
|
|
27470
|
+
Archived: archived,
|
|
27471
|
+
NetworkId: networkId,
|
|
27472
|
+
TenantStatus: tenantStatus,
|
|
27473
|
+
ProgrammeId: programmeId,
|
|
27474
|
+
IncludeOpportunityImages: includeOpportunityImages,
|
|
27475
|
+
IncludeOpportunityOffers: includeOpportunityOffers,
|
|
27476
|
+
IncludeNextOpportunity: includeNextOpportunity,
|
|
27477
|
+
Distance: distance,
|
|
27478
|
+
DashboardRequest: dashboardRequest,
|
|
27479
|
+
ProgrammeIds: programmeIds,
|
|
27480
|
+
VenueTypeIds: venueTypeIds,
|
|
27231
27481
|
PageNumber: pageNumber,
|
|
27232
27482
|
Take: take,
|
|
27233
27483
|
Skip: skip,
|
|
@@ -27347,6 +27597,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27347
27597
|
distance,
|
|
27348
27598
|
dashboardRequest,
|
|
27349
27599
|
programmeIds,
|
|
27600
|
+
venueTypeIds,
|
|
27350
27601
|
pageNumber,
|
|
27351
27602
|
take,
|
|
27352
27603
|
skip,
|
|
@@ -27387,6 +27638,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27387
27638
|
Distance: distance,
|
|
27388
27639
|
DashboardRequest: dashboardRequest,
|
|
27389
27640
|
ProgrammeIds: programmeIds,
|
|
27641
|
+
VenueTypeIds: venueTypeIds,
|
|
27390
27642
|
PageNumber: pageNumber,
|
|
27391
27643
|
Take: take,
|
|
27392
27644
|
Skip: skip,
|
|
@@ -27406,75 +27658,27 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27406
27658
|
}
|
|
27407
27659
|
});
|
|
27408
27660
|
}
|
|
27409
|
-
}class
|
|
27661
|
+
}class PublicVenueTypesService {
|
|
27410
27662
|
constructor(httpRequest) {
|
|
27411
27663
|
this.httpRequest = httpRequest;
|
|
27412
27664
|
}
|
|
27413
27665
|
/**
|
|
27414
|
-
*
|
|
27415
|
-
* @returns WaitlistActivity OK
|
|
27416
|
-
* @throws ApiError
|
|
27417
|
-
*/
|
|
27418
|
-
post({
|
|
27419
|
-
xTenantSubdomain,
|
|
27420
|
-
requestBody
|
|
27421
|
-
}) {
|
|
27422
|
-
return this.httpRequest.request({
|
|
27423
|
-
method: "POST",
|
|
27424
|
-
url: "/api/public/waitlist-activity/v2-temporary-route",
|
|
27425
|
-
headers: {
|
|
27426
|
-
x_tenant_subdomain: xTenantSubdomain
|
|
27427
|
-
},
|
|
27428
|
-
body: requestBody,
|
|
27429
|
-
mediaType: "application/json",
|
|
27430
|
-
errors: {
|
|
27431
|
-
400: `Bad Request`,
|
|
27432
|
-
422: `Unprocessable Content`,
|
|
27433
|
-
500: `Internal Server Error`
|
|
27434
|
-
}
|
|
27435
|
-
});
|
|
27436
|
-
}
|
|
27437
|
-
/**
|
|
27438
|
-
* Patches the resource.
|
|
27439
|
-
* @returns WaitlistActivity OK
|
|
27666
|
+
* @returns VenueType OK
|
|
27440
27667
|
* @throws ApiError
|
|
27441
27668
|
*/
|
|
27442
|
-
|
|
27443
|
-
|
|
27444
|
-
|
|
27669
|
+
getObject({
|
|
27670
|
+
id,
|
|
27671
|
+
xTenantSubdomain
|
|
27445
27672
|
}) {
|
|
27446
27673
|
return this.httpRequest.request({
|
|
27447
|
-
method: "
|
|
27448
|
-
url: "/api/public/
|
|
27449
|
-
|
|
27450
|
-
|
|
27674
|
+
method: "GET",
|
|
27675
|
+
url: "/api/public/venue-types/{id}",
|
|
27676
|
+
path: {
|
|
27677
|
+
id
|
|
27451
27678
|
},
|
|
27452
|
-
body: requestBody,
|
|
27453
|
-
mediaType: "application/json",
|
|
27454
|
-
errors: {
|
|
27455
|
-
400: `Bad Request`,
|
|
27456
|
-
422: `Unprocessable Content`,
|
|
27457
|
-
500: `Internal Server Error`
|
|
27458
|
-
}
|
|
27459
|
-
});
|
|
27460
|
-
}
|
|
27461
|
-
/**
|
|
27462
|
-
* Inserts a list of resources.
|
|
27463
|
-
* @returns WaitlistActivity OK
|
|
27464
|
-
* @throws ApiError
|
|
27465
|
-
*/
|
|
27466
|
-
postList({
|
|
27467
|
-
xTenantSubdomain,
|
|
27468
|
-
requestBody
|
|
27469
|
-
}) {
|
|
27470
|
-
return this.httpRequest.request({
|
|
27471
|
-
method: "POST",
|
|
27472
|
-
url: "/api/public/waitlist-activity/v2-temporary-route/list",
|
|
27473
27679
|
headers: {
|
|
27474
27680
|
x_tenant_subdomain: xTenantSubdomain
|
|
27475
27681
|
},
|
|
27476
|
-
body: requestBody,
|
|
27477
|
-
mediaType: "application/json",
|
|
27478
27682
|
errors: {
|
|
27479
27683
|
400: `Bad Request`,
|
|
27480
27684
|
422: `Unprocessable Content`,
|
|
@@ -27487,18 +27691,19 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27487
27691
|
* @returns any OK
|
|
27488
27692
|
* @throws ApiError
|
|
27489
27693
|
*/
|
|
27490
|
-
|
|
27491
|
-
|
|
27492
|
-
|
|
27694
|
+
deleteById({
|
|
27695
|
+
id,
|
|
27696
|
+
xTenantSubdomain
|
|
27493
27697
|
}) {
|
|
27494
27698
|
return this.httpRequest.request({
|
|
27495
27699
|
method: "DELETE",
|
|
27496
|
-
url: "/api/public/
|
|
27700
|
+
url: "/api/public/venue-types/{id}",
|
|
27701
|
+
path: {
|
|
27702
|
+
id
|
|
27703
|
+
},
|
|
27497
27704
|
headers: {
|
|
27498
27705
|
x_tenant_subdomain: xTenantSubdomain
|
|
27499
27706
|
},
|
|
27500
|
-
body: requestBody,
|
|
27501
|
-
mediaType: "application/json",
|
|
27502
27707
|
errors: {
|
|
27503
27708
|
400: `Bad Request`,
|
|
27504
27709
|
422: `Unprocessable Content`,
|
|
@@ -27507,18 +27712,11 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27507
27712
|
});
|
|
27508
27713
|
}
|
|
27509
27714
|
/**
|
|
27510
|
-
*
|
|
27511
|
-
* @returns WaitlistActivityPage OK
|
|
27715
|
+
* @returns VenueTypePage OK
|
|
27512
27716
|
* @throws ApiError
|
|
27513
27717
|
*/
|
|
27514
27718
|
getPage({
|
|
27515
27719
|
xTenantSubdomain,
|
|
27516
|
-
userId,
|
|
27517
|
-
sessionId,
|
|
27518
|
-
sessionIds,
|
|
27519
|
-
courseId,
|
|
27520
|
-
courseIds,
|
|
27521
|
-
email,
|
|
27522
27720
|
pageNumber,
|
|
27523
27721
|
take,
|
|
27524
27722
|
skip,
|
|
@@ -27533,17 +27731,11 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27533
27731
|
}) {
|
|
27534
27732
|
return this.httpRequest.request({
|
|
27535
27733
|
method: "GET",
|
|
27536
|
-
url: "/api/public/
|
|
27734
|
+
url: "/api/public/venue-types",
|
|
27537
27735
|
headers: {
|
|
27538
27736
|
x_tenant_subdomain: xTenantSubdomain
|
|
27539
27737
|
},
|
|
27540
27738
|
query: {
|
|
27541
|
-
UserId: userId,
|
|
27542
|
-
SessionId: sessionId,
|
|
27543
|
-
SessionIds: sessionIds,
|
|
27544
|
-
CourseId: courseId,
|
|
27545
|
-
CourseIds: courseIds,
|
|
27546
|
-
Email: email,
|
|
27547
27739
|
PageNumber: pageNumber,
|
|
27548
27740
|
Take: take,
|
|
27549
27741
|
Skip: skip,
|
|
@@ -27568,19 +27760,42 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27568
27760
|
* @returns any OK
|
|
27569
27761
|
* @throws ApiError
|
|
27570
27762
|
*/
|
|
27571
|
-
|
|
27572
|
-
|
|
27573
|
-
|
|
27763
|
+
deleteByObject({
|
|
27764
|
+
xTenantSubdomain,
|
|
27765
|
+
requestBody
|
|
27574
27766
|
}) {
|
|
27575
27767
|
return this.httpRequest.request({
|
|
27576
27768
|
method: "DELETE",
|
|
27577
|
-
url: "/api/public/
|
|
27578
|
-
|
|
27579
|
-
|
|
27769
|
+
url: "/api/public/venue-types",
|
|
27770
|
+
headers: {
|
|
27771
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
27580
27772
|
},
|
|
27773
|
+
body: requestBody,
|
|
27774
|
+
mediaType: "application/json",
|
|
27775
|
+
errors: {
|
|
27776
|
+
400: `Bad Request`,
|
|
27777
|
+
422: `Unprocessable Content`,
|
|
27778
|
+
500: `Internal Server Error`
|
|
27779
|
+
}
|
|
27780
|
+
});
|
|
27781
|
+
}
|
|
27782
|
+
/**
|
|
27783
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
27784
|
+
* @returns VenueType OK
|
|
27785
|
+
* @throws ApiError
|
|
27786
|
+
*/
|
|
27787
|
+
post({
|
|
27788
|
+
xTenantSubdomain,
|
|
27789
|
+
requestBody
|
|
27790
|
+
}) {
|
|
27791
|
+
return this.httpRequest.request({
|
|
27792
|
+
method: "POST",
|
|
27793
|
+
url: "/api/public/venue-types/v2-temporary-route",
|
|
27581
27794
|
headers: {
|
|
27582
27795
|
x_tenant_subdomain: xTenantSubdomain
|
|
27583
27796
|
},
|
|
27797
|
+
body: requestBody,
|
|
27798
|
+
mediaType: "application/json",
|
|
27584
27799
|
errors: {
|
|
27585
27800
|
400: `Bad Request`,
|
|
27586
27801
|
422: `Unprocessable Content`,
|
|
@@ -27589,23 +27804,46 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27589
27804
|
});
|
|
27590
27805
|
}
|
|
27591
27806
|
/**
|
|
27592
|
-
*
|
|
27593
|
-
* @returns
|
|
27807
|
+
* Patches the resource.
|
|
27808
|
+
* @returns VenueType OK
|
|
27594
27809
|
* @throws ApiError
|
|
27595
27810
|
*/
|
|
27596
|
-
|
|
27597
|
-
|
|
27598
|
-
|
|
27811
|
+
patch({
|
|
27812
|
+
xTenantSubdomain,
|
|
27813
|
+
requestBody
|
|
27599
27814
|
}) {
|
|
27600
27815
|
return this.httpRequest.request({
|
|
27601
|
-
method: "
|
|
27602
|
-
url: "/api/public/
|
|
27603
|
-
|
|
27604
|
-
|
|
27816
|
+
method: "PATCH",
|
|
27817
|
+
url: "/api/public/venue-types/v2-temporary-route",
|
|
27818
|
+
headers: {
|
|
27819
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
27605
27820
|
},
|
|
27821
|
+
body: requestBody,
|
|
27822
|
+
mediaType: "application/json",
|
|
27823
|
+
errors: {
|
|
27824
|
+
400: `Bad Request`,
|
|
27825
|
+
422: `Unprocessable Content`,
|
|
27826
|
+
500: `Internal Server Error`
|
|
27827
|
+
}
|
|
27828
|
+
});
|
|
27829
|
+
}
|
|
27830
|
+
/**
|
|
27831
|
+
* Inserts a list of resources.
|
|
27832
|
+
* @returns VenueType OK
|
|
27833
|
+
* @throws ApiError
|
|
27834
|
+
*/
|
|
27835
|
+
postList({
|
|
27836
|
+
xTenantSubdomain,
|
|
27837
|
+
requestBody
|
|
27838
|
+
}) {
|
|
27839
|
+
return this.httpRequest.request({
|
|
27840
|
+
method: "POST",
|
|
27841
|
+
url: "/api/public/venue-types/v2-temporary-route/list",
|
|
27606
27842
|
headers: {
|
|
27607
27843
|
x_tenant_subdomain: xTenantSubdomain
|
|
27608
27844
|
},
|
|
27845
|
+
body: requestBody,
|
|
27846
|
+
mediaType: "application/json",
|
|
27609
27847
|
errors: {
|
|
27610
27848
|
400: `Bad Request`,
|
|
27611
27849
|
422: `Unprocessable Content`,
|
|
@@ -27620,12 +27858,6 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27620
27858
|
*/
|
|
27621
27859
|
exists({
|
|
27622
27860
|
xTenantSubdomain,
|
|
27623
|
-
userId,
|
|
27624
|
-
sessionId,
|
|
27625
|
-
sessionIds,
|
|
27626
|
-
courseId,
|
|
27627
|
-
courseIds,
|
|
27628
|
-
email,
|
|
27629
27861
|
pageNumber,
|
|
27630
27862
|
take,
|
|
27631
27863
|
skip,
|
|
@@ -27640,17 +27872,11 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27640
27872
|
}) {
|
|
27641
27873
|
return this.httpRequest.request({
|
|
27642
27874
|
method: "GET",
|
|
27643
|
-
url: "/api/public/
|
|
27875
|
+
url: "/api/public/venue-types/exists",
|
|
27644
27876
|
headers: {
|
|
27645
27877
|
x_tenant_subdomain: xTenantSubdomain
|
|
27646
27878
|
},
|
|
27647
27879
|
query: {
|
|
27648
|
-
UserId: userId,
|
|
27649
|
-
SessionId: sessionId,
|
|
27650
|
-
SessionIds: sessionIds,
|
|
27651
|
-
CourseId: courseId,
|
|
27652
|
-
CourseIds: courseIds,
|
|
27653
|
-
Email: email,
|
|
27654
27880
|
PageNumber: pageNumber,
|
|
27655
27881
|
Take: take,
|
|
27656
27882
|
Skip: skip,
|
|
@@ -27670,13 +27896,13 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27670
27896
|
}
|
|
27671
27897
|
});
|
|
27672
27898
|
}
|
|
27673
|
-
}class
|
|
27899
|
+
}class PublicWaitlistActivityService {
|
|
27674
27900
|
constructor(httpRequest) {
|
|
27675
27901
|
this.httpRequest = httpRequest;
|
|
27676
27902
|
}
|
|
27677
27903
|
/**
|
|
27678
27904
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
27679
|
-
* @returns
|
|
27905
|
+
* @returns WaitlistActivity OK
|
|
27680
27906
|
* @throws ApiError
|
|
27681
27907
|
*/
|
|
27682
27908
|
post({
|
|
@@ -27685,7 +27911,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27685
27911
|
}) {
|
|
27686
27912
|
return this.httpRequest.request({
|
|
27687
27913
|
method: "POST",
|
|
27688
|
-
url: "/api/public/waitlist-
|
|
27914
|
+
url: "/api/public/waitlist-activity/v2-temporary-route",
|
|
27689
27915
|
headers: {
|
|
27690
27916
|
x_tenant_subdomain: xTenantSubdomain
|
|
27691
27917
|
},
|
|
@@ -27700,7 +27926,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27700
27926
|
}
|
|
27701
27927
|
/**
|
|
27702
27928
|
* Patches the resource.
|
|
27703
|
-
* @returns
|
|
27929
|
+
* @returns WaitlistActivity OK
|
|
27704
27930
|
* @throws ApiError
|
|
27705
27931
|
*/
|
|
27706
27932
|
patch({
|
|
@@ -27709,7 +27935,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27709
27935
|
}) {
|
|
27710
27936
|
return this.httpRequest.request({
|
|
27711
27937
|
method: "PATCH",
|
|
27712
|
-
url: "/api/public/waitlist-
|
|
27938
|
+
url: "/api/public/waitlist-activity/v2-temporary-route",
|
|
27713
27939
|
headers: {
|
|
27714
27940
|
x_tenant_subdomain: xTenantSubdomain
|
|
27715
27941
|
},
|
|
@@ -27724,7 +27950,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27724
27950
|
}
|
|
27725
27951
|
/**
|
|
27726
27952
|
* Inserts a list of resources.
|
|
27727
|
-
* @returns
|
|
27953
|
+
* @returns WaitlistActivity OK
|
|
27728
27954
|
* @throws ApiError
|
|
27729
27955
|
*/
|
|
27730
27956
|
postList({
|
|
@@ -27733,7 +27959,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27733
27959
|
}) {
|
|
27734
27960
|
return this.httpRequest.request({
|
|
27735
27961
|
method: "POST",
|
|
27736
|
-
url: "/api/public/waitlist-
|
|
27962
|
+
url: "/api/public/waitlist-activity/v2-temporary-route/list",
|
|
27737
27963
|
headers: {
|
|
27738
27964
|
x_tenant_subdomain: xTenantSubdomain
|
|
27739
27965
|
},
|
|
@@ -27757,7 +27983,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27757
27983
|
}) {
|
|
27758
27984
|
return this.httpRequest.request({
|
|
27759
27985
|
method: "DELETE",
|
|
27760
|
-
url: "/api/public/waitlist-
|
|
27986
|
+
url: "/api/public/waitlist-activity",
|
|
27761
27987
|
headers: {
|
|
27762
27988
|
x_tenant_subdomain: xTenantSubdomain
|
|
27763
27989
|
},
|
|
@@ -27772,18 +27998,17 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27772
27998
|
}
|
|
27773
27999
|
/**
|
|
27774
28000
|
* Gets a list of resources.
|
|
27775
|
-
* @returns
|
|
28001
|
+
* @returns WaitlistActivityPage OK
|
|
27776
28002
|
* @throws ApiError
|
|
27777
28003
|
*/
|
|
27778
28004
|
getPage({
|
|
27779
28005
|
xTenantSubdomain,
|
|
27780
28006
|
userId,
|
|
27781
|
-
|
|
27782
|
-
|
|
28007
|
+
sessionId,
|
|
28008
|
+
sessionIds,
|
|
27783
28009
|
courseId,
|
|
28010
|
+
courseIds,
|
|
27784
28011
|
email,
|
|
27785
|
-
futureOnly,
|
|
27786
|
-
converted,
|
|
27787
28012
|
pageNumber,
|
|
27788
28013
|
take,
|
|
27789
28014
|
skip,
|
|
@@ -27798,18 +28023,17 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27798
28023
|
}) {
|
|
27799
28024
|
return this.httpRequest.request({
|
|
27800
28025
|
method: "GET",
|
|
27801
|
-
url: "/api/public/waitlist-
|
|
28026
|
+
url: "/api/public/waitlist-activity",
|
|
27802
28027
|
headers: {
|
|
27803
28028
|
x_tenant_subdomain: xTenantSubdomain
|
|
27804
28029
|
},
|
|
27805
28030
|
query: {
|
|
27806
28031
|
UserId: userId,
|
|
27807
|
-
|
|
27808
|
-
|
|
28032
|
+
SessionId: sessionId,
|
|
28033
|
+
SessionIds: sessionIds,
|
|
27809
28034
|
CourseId: courseId,
|
|
28035
|
+
CourseIds: courseIds,
|
|
27810
28036
|
Email: email,
|
|
27811
|
-
FutureOnly: futureOnly,
|
|
27812
|
-
Converted: converted,
|
|
27813
28037
|
PageNumber: pageNumber,
|
|
27814
28038
|
Take: take,
|
|
27815
28039
|
Skip: skip,
|
|
@@ -27840,7 +28064,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27840
28064
|
}) {
|
|
27841
28065
|
return this.httpRequest.request({
|
|
27842
28066
|
method: "DELETE",
|
|
27843
|
-
url: "/api/public/waitlist-
|
|
28067
|
+
url: "/api/public/waitlist-activity/{id}",
|
|
27844
28068
|
path: {
|
|
27845
28069
|
id
|
|
27846
28070
|
},
|
|
@@ -27856,7 +28080,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27856
28080
|
}
|
|
27857
28081
|
/**
|
|
27858
28082
|
* Gets the resource by its Id.
|
|
27859
|
-
* @returns
|
|
28083
|
+
* @returns WaitlistActivity OK
|
|
27860
28084
|
* @throws ApiError
|
|
27861
28085
|
*/
|
|
27862
28086
|
getObject({
|
|
@@ -27865,7 +28089,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27865
28089
|
}) {
|
|
27866
28090
|
return this.httpRequest.request({
|
|
27867
28091
|
method: "GET",
|
|
27868
|
-
url: "/api/public/waitlist-
|
|
28092
|
+
url: "/api/public/waitlist-activity/{id}",
|
|
27869
28093
|
path: {
|
|
27870
28094
|
id
|
|
27871
28095
|
},
|
|
@@ -27887,12 +28111,11 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27887
28111
|
exists({
|
|
27888
28112
|
xTenantSubdomain,
|
|
27889
28113
|
userId,
|
|
27890
|
-
|
|
27891
|
-
|
|
28114
|
+
sessionId,
|
|
28115
|
+
sessionIds,
|
|
27892
28116
|
courseId,
|
|
28117
|
+
courseIds,
|
|
27893
28118
|
email,
|
|
27894
|
-
futureOnly,
|
|
27895
|
-
converted,
|
|
27896
28119
|
pageNumber,
|
|
27897
28120
|
take,
|
|
27898
28121
|
skip,
|
|
@@ -27907,18 +28130,17 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27907
28130
|
}) {
|
|
27908
28131
|
return this.httpRequest.request({
|
|
27909
28132
|
method: "GET",
|
|
27910
|
-
url: "/api/public/waitlist-
|
|
28133
|
+
url: "/api/public/waitlist-activity/exists",
|
|
27911
28134
|
headers: {
|
|
27912
28135
|
x_tenant_subdomain: xTenantSubdomain
|
|
27913
28136
|
},
|
|
27914
28137
|
query: {
|
|
27915
28138
|
UserId: userId,
|
|
27916
|
-
|
|
27917
|
-
|
|
28139
|
+
SessionId: sessionId,
|
|
28140
|
+
SessionIds: sessionIds,
|
|
27918
28141
|
CourseId: courseId,
|
|
28142
|
+
CourseIds: courseIds,
|
|
27919
28143
|
Email: email,
|
|
27920
|
-
FutureOnly: futureOnly,
|
|
27921
|
-
Converted: converted,
|
|
27922
28144
|
PageNumber: pageNumber,
|
|
27923
28145
|
Take: take,
|
|
27924
28146
|
Skip: skip,
|
|
@@ -27938,66 +28160,25 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27938
28160
|
}
|
|
27939
28161
|
});
|
|
27940
28162
|
}
|
|
27941
|
-
}class
|
|
28163
|
+
}class PublicWaitlistOpportunityService {
|
|
27942
28164
|
constructor(httpRequest) {
|
|
27943
28165
|
this.httpRequest = httpRequest;
|
|
27944
28166
|
}
|
|
27945
|
-
/**
|
|
27946
|
-
* Exports the venues list to a csv format.
|
|
27947
|
-
* Endpoint has AllowAnonymous attr, however the jwt is validated in the method body (in support of authenticated file downloads.
|
|
27948
|
-
* @returns any OK
|
|
27949
|
-
* @throws ApiError
|
|
27950
|
-
*/
|
|
27951
|
-
exportToCsv({
|
|
27952
|
-
pageNumber,
|
|
27953
|
-
take,
|
|
27954
|
-
skip,
|
|
27955
|
-
limitListRequests,
|
|
27956
|
-
tenantId,
|
|
27957
|
-
modifiedById,
|
|
27958
|
-
modifiedByIds,
|
|
27959
|
-
dateCreatedGte,
|
|
27960
|
-
dateCreatedLte,
|
|
27961
|
-
isLive,
|
|
27962
|
-
sortOrderDirection,
|
|
27963
|
-
formData
|
|
27964
|
-
}) {
|
|
27965
|
-
return this.httpRequest.request({
|
|
27966
|
-
method: "POST",
|
|
27967
|
-
url: "/api/reports/recent-order-activity/export/csv",
|
|
27968
|
-
query: {
|
|
27969
|
-
PageNumber: pageNumber,
|
|
27970
|
-
Take: take,
|
|
27971
|
-
Skip: skip,
|
|
27972
|
-
LimitListRequests: limitListRequests,
|
|
27973
|
-
TenantId: tenantId,
|
|
27974
|
-
ModifiedById: modifiedById,
|
|
27975
|
-
ModifiedByIds: modifiedByIds,
|
|
27976
|
-
DateCreatedGTE: dateCreatedGte,
|
|
27977
|
-
DateCreatedLTE: dateCreatedLte,
|
|
27978
|
-
IsLive: isLive,
|
|
27979
|
-
SortOrderDirection: sortOrderDirection
|
|
27980
|
-
},
|
|
27981
|
-
formData,
|
|
27982
|
-
mediaType: "multipart/form-data",
|
|
27983
|
-
errors: {
|
|
27984
|
-
400: `Bad Request`,
|
|
27985
|
-
422: `Unprocessable Content`,
|
|
27986
|
-
500: `Internal Server Error`
|
|
27987
|
-
}
|
|
27988
|
-
});
|
|
27989
|
-
}
|
|
27990
28167
|
/**
|
|
27991
28168
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
27992
|
-
* @returns
|
|
28169
|
+
* @returns WaitlistOpportunity OK
|
|
27993
28170
|
* @throws ApiError
|
|
27994
28171
|
*/
|
|
27995
28172
|
post({
|
|
28173
|
+
xTenantSubdomain,
|
|
27996
28174
|
requestBody
|
|
27997
28175
|
}) {
|
|
27998
28176
|
return this.httpRequest.request({
|
|
27999
28177
|
method: "POST",
|
|
28000
|
-
url: "/api/
|
|
28178
|
+
url: "/api/public/waitlist-opportunity/v2-temporary-route",
|
|
28179
|
+
headers: {
|
|
28180
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
28181
|
+
},
|
|
28001
28182
|
body: requestBody,
|
|
28002
28183
|
mediaType: "application/json",
|
|
28003
28184
|
errors: {
|
|
@@ -28009,15 +28190,19 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28009
28190
|
}
|
|
28010
28191
|
/**
|
|
28011
28192
|
* Patches the resource.
|
|
28012
|
-
* @returns
|
|
28193
|
+
* @returns WaitlistOpportunity OK
|
|
28013
28194
|
* @throws ApiError
|
|
28014
28195
|
*/
|
|
28015
28196
|
patch({
|
|
28197
|
+
xTenantSubdomain,
|
|
28016
28198
|
requestBody
|
|
28017
28199
|
}) {
|
|
28018
28200
|
return this.httpRequest.request({
|
|
28019
28201
|
method: "PATCH",
|
|
28020
|
-
url: "/api/
|
|
28202
|
+
url: "/api/public/waitlist-opportunity/v2-temporary-route",
|
|
28203
|
+
headers: {
|
|
28204
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
28205
|
+
},
|
|
28021
28206
|
body: requestBody,
|
|
28022
28207
|
mediaType: "application/json",
|
|
28023
28208
|
errors: {
|
|
@@ -28029,35 +28214,19 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28029
28214
|
}
|
|
28030
28215
|
/**
|
|
28031
28216
|
* Inserts a list of resources.
|
|
28032
|
-
* @returns
|
|
28217
|
+
* @returns WaitlistOpportunity OK
|
|
28033
28218
|
* @throws ApiError
|
|
28034
28219
|
*/
|
|
28035
28220
|
postList({
|
|
28221
|
+
xTenantSubdomain,
|
|
28036
28222
|
requestBody
|
|
28037
28223
|
}) {
|
|
28038
28224
|
return this.httpRequest.request({
|
|
28039
28225
|
method: "POST",
|
|
28040
|
-
url: "/api/
|
|
28041
|
-
|
|
28042
|
-
|
|
28043
|
-
|
|
28044
|
-
400: `Bad Request`,
|
|
28045
|
-
422: `Unprocessable Content`,
|
|
28046
|
-
500: `Internal Server Error`
|
|
28047
|
-
}
|
|
28048
|
-
});
|
|
28049
|
-
}
|
|
28050
|
-
/**
|
|
28051
|
-
* Patches the resource.
|
|
28052
|
-
* @returns RecentOrderActivityReport OK
|
|
28053
|
-
* @throws ApiError
|
|
28054
|
-
*/
|
|
28055
|
-
patchWithReferences({
|
|
28056
|
-
requestBody
|
|
28057
|
-
}) {
|
|
28058
|
-
return this.httpRequest.request({
|
|
28059
|
-
method: "PATCH",
|
|
28060
|
-
url: "/api/reports/recent-order-activity/v2-temporary-route/with-references",
|
|
28226
|
+
url: "/api/public/waitlist-opportunity/v2-temporary-route/list",
|
|
28227
|
+
headers: {
|
|
28228
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
28229
|
+
},
|
|
28061
28230
|
body: requestBody,
|
|
28062
28231
|
mediaType: "application/json",
|
|
28063
28232
|
errors: {
|
|
@@ -28073,11 +28242,15 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28073
28242
|
* @throws ApiError
|
|
28074
28243
|
*/
|
|
28075
28244
|
deleteByObject({
|
|
28245
|
+
xTenantSubdomain,
|
|
28076
28246
|
requestBody
|
|
28077
28247
|
}) {
|
|
28078
28248
|
return this.httpRequest.request({
|
|
28079
28249
|
method: "DELETE",
|
|
28080
|
-
url: "/api/
|
|
28250
|
+
url: "/api/public/waitlist-opportunity",
|
|
28251
|
+
headers: {
|
|
28252
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
28253
|
+
},
|
|
28081
28254
|
body: requestBody,
|
|
28082
28255
|
mediaType: "application/json",
|
|
28083
28256
|
errors: {
|
|
@@ -28089,10 +28262,18 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28089
28262
|
}
|
|
28090
28263
|
/**
|
|
28091
28264
|
* Gets a list of resources.
|
|
28092
|
-
* @returns
|
|
28265
|
+
* @returns WaitlistOpportunityPage OK
|
|
28093
28266
|
* @throws ApiError
|
|
28094
28267
|
*/
|
|
28095
28268
|
getPage({
|
|
28269
|
+
xTenantSubdomain,
|
|
28270
|
+
userId,
|
|
28271
|
+
slotId,
|
|
28272
|
+
scheduledSessionId,
|
|
28273
|
+
courseId,
|
|
28274
|
+
email,
|
|
28275
|
+
futureOnly,
|
|
28276
|
+
converted,
|
|
28096
28277
|
pageNumber,
|
|
28097
28278
|
take,
|
|
28098
28279
|
skip,
|
|
@@ -28107,7 +28288,316 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28107
28288
|
}) {
|
|
28108
28289
|
return this.httpRequest.request({
|
|
28109
28290
|
method: "GET",
|
|
28110
|
-
url: "/api/
|
|
28291
|
+
url: "/api/public/waitlist-opportunity",
|
|
28292
|
+
headers: {
|
|
28293
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
28294
|
+
},
|
|
28295
|
+
query: {
|
|
28296
|
+
UserId: userId,
|
|
28297
|
+
SlotId: slotId,
|
|
28298
|
+
ScheduledSessionId: scheduledSessionId,
|
|
28299
|
+
CourseId: courseId,
|
|
28300
|
+
Email: email,
|
|
28301
|
+
FutureOnly: futureOnly,
|
|
28302
|
+
Converted: converted,
|
|
28303
|
+
PageNumber: pageNumber,
|
|
28304
|
+
Take: take,
|
|
28305
|
+
Skip: skip,
|
|
28306
|
+
LimitListRequests: limitListRequests,
|
|
28307
|
+
TenantId: tenantId,
|
|
28308
|
+
ModifiedById: modifiedById,
|
|
28309
|
+
ModifiedByIds: modifiedByIds,
|
|
28310
|
+
DateCreatedGTE: dateCreatedGte,
|
|
28311
|
+
DateCreatedLTE: dateCreatedLte,
|
|
28312
|
+
IsLive: isLive,
|
|
28313
|
+
SortOrderDirection: sortOrderDirection
|
|
28314
|
+
},
|
|
28315
|
+
errors: {
|
|
28316
|
+
400: `Bad Request`,
|
|
28317
|
+
422: `Unprocessable Content`,
|
|
28318
|
+
500: `Internal Server Error`
|
|
28319
|
+
}
|
|
28320
|
+
});
|
|
28321
|
+
}
|
|
28322
|
+
/**
|
|
28323
|
+
* Deletes the resource.
|
|
28324
|
+
* @returns any OK
|
|
28325
|
+
* @throws ApiError
|
|
28326
|
+
*/
|
|
28327
|
+
deleteById({
|
|
28328
|
+
id,
|
|
28329
|
+
xTenantSubdomain
|
|
28330
|
+
}) {
|
|
28331
|
+
return this.httpRequest.request({
|
|
28332
|
+
method: "DELETE",
|
|
28333
|
+
url: "/api/public/waitlist-opportunity/{id}",
|
|
28334
|
+
path: {
|
|
28335
|
+
id
|
|
28336
|
+
},
|
|
28337
|
+
headers: {
|
|
28338
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
28339
|
+
},
|
|
28340
|
+
errors: {
|
|
28341
|
+
400: `Bad Request`,
|
|
28342
|
+
422: `Unprocessable Content`,
|
|
28343
|
+
500: `Internal Server Error`
|
|
28344
|
+
}
|
|
28345
|
+
});
|
|
28346
|
+
}
|
|
28347
|
+
/**
|
|
28348
|
+
* Gets the resource by its Id.
|
|
28349
|
+
* @returns WaitlistOpportunity OK
|
|
28350
|
+
* @throws ApiError
|
|
28351
|
+
*/
|
|
28352
|
+
getObject({
|
|
28353
|
+
id,
|
|
28354
|
+
xTenantSubdomain
|
|
28355
|
+
}) {
|
|
28356
|
+
return this.httpRequest.request({
|
|
28357
|
+
method: "GET",
|
|
28358
|
+
url: "/api/public/waitlist-opportunity/{id}",
|
|
28359
|
+
path: {
|
|
28360
|
+
id
|
|
28361
|
+
},
|
|
28362
|
+
headers: {
|
|
28363
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
28364
|
+
},
|
|
28365
|
+
errors: {
|
|
28366
|
+
400: `Bad Request`,
|
|
28367
|
+
422: `Unprocessable Content`,
|
|
28368
|
+
500: `Internal Server Error`
|
|
28369
|
+
}
|
|
28370
|
+
});
|
|
28371
|
+
}
|
|
28372
|
+
/**
|
|
28373
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
28374
|
+
* @returns boolean OK
|
|
28375
|
+
* @throws ApiError
|
|
28376
|
+
*/
|
|
28377
|
+
exists({
|
|
28378
|
+
xTenantSubdomain,
|
|
28379
|
+
userId,
|
|
28380
|
+
slotId,
|
|
28381
|
+
scheduledSessionId,
|
|
28382
|
+
courseId,
|
|
28383
|
+
email,
|
|
28384
|
+
futureOnly,
|
|
28385
|
+
converted,
|
|
28386
|
+
pageNumber,
|
|
28387
|
+
take,
|
|
28388
|
+
skip,
|
|
28389
|
+
limitListRequests,
|
|
28390
|
+
tenantId,
|
|
28391
|
+
modifiedById,
|
|
28392
|
+
modifiedByIds,
|
|
28393
|
+
dateCreatedGte,
|
|
28394
|
+
dateCreatedLte,
|
|
28395
|
+
isLive,
|
|
28396
|
+
sortOrderDirection
|
|
28397
|
+
}) {
|
|
28398
|
+
return this.httpRequest.request({
|
|
28399
|
+
method: "GET",
|
|
28400
|
+
url: "/api/public/waitlist-opportunity/exists",
|
|
28401
|
+
headers: {
|
|
28402
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
28403
|
+
},
|
|
28404
|
+
query: {
|
|
28405
|
+
UserId: userId,
|
|
28406
|
+
SlotId: slotId,
|
|
28407
|
+
ScheduledSessionId: scheduledSessionId,
|
|
28408
|
+
CourseId: courseId,
|
|
28409
|
+
Email: email,
|
|
28410
|
+
FutureOnly: futureOnly,
|
|
28411
|
+
Converted: converted,
|
|
28412
|
+
PageNumber: pageNumber,
|
|
28413
|
+
Take: take,
|
|
28414
|
+
Skip: skip,
|
|
28415
|
+
LimitListRequests: limitListRequests,
|
|
28416
|
+
TenantId: tenantId,
|
|
28417
|
+
ModifiedById: modifiedById,
|
|
28418
|
+
ModifiedByIds: modifiedByIds,
|
|
28419
|
+
DateCreatedGTE: dateCreatedGte,
|
|
28420
|
+
DateCreatedLTE: dateCreatedLte,
|
|
28421
|
+
IsLive: isLive,
|
|
28422
|
+
SortOrderDirection: sortOrderDirection
|
|
28423
|
+
},
|
|
28424
|
+
errors: {
|
|
28425
|
+
400: `Bad Request`,
|
|
28426
|
+
422: `Unprocessable Content`,
|
|
28427
|
+
500: `Internal Server Error`
|
|
28428
|
+
}
|
|
28429
|
+
});
|
|
28430
|
+
}
|
|
28431
|
+
}class RecentOrderActivityReportService {
|
|
28432
|
+
constructor(httpRequest) {
|
|
28433
|
+
this.httpRequest = httpRequest;
|
|
28434
|
+
}
|
|
28435
|
+
/**
|
|
28436
|
+
* Exports the venues list to a csv format.
|
|
28437
|
+
* Endpoint has AllowAnonymous attr, however the jwt is validated in the method body (in support of authenticated file downloads.
|
|
28438
|
+
* @returns any OK
|
|
28439
|
+
* @throws ApiError
|
|
28440
|
+
*/
|
|
28441
|
+
exportToCsv({
|
|
28442
|
+
pageNumber,
|
|
28443
|
+
take,
|
|
28444
|
+
skip,
|
|
28445
|
+
limitListRequests,
|
|
28446
|
+
tenantId,
|
|
28447
|
+
modifiedById,
|
|
28448
|
+
modifiedByIds,
|
|
28449
|
+
dateCreatedGte,
|
|
28450
|
+
dateCreatedLte,
|
|
28451
|
+
isLive,
|
|
28452
|
+
sortOrderDirection,
|
|
28453
|
+
formData
|
|
28454
|
+
}) {
|
|
28455
|
+
return this.httpRequest.request({
|
|
28456
|
+
method: "POST",
|
|
28457
|
+
url: "/api/reports/recent-order-activity/export/csv",
|
|
28458
|
+
query: {
|
|
28459
|
+
PageNumber: pageNumber,
|
|
28460
|
+
Take: take,
|
|
28461
|
+
Skip: skip,
|
|
28462
|
+
LimitListRequests: limitListRequests,
|
|
28463
|
+
TenantId: tenantId,
|
|
28464
|
+
ModifiedById: modifiedById,
|
|
28465
|
+
ModifiedByIds: modifiedByIds,
|
|
28466
|
+
DateCreatedGTE: dateCreatedGte,
|
|
28467
|
+
DateCreatedLTE: dateCreatedLte,
|
|
28468
|
+
IsLive: isLive,
|
|
28469
|
+
SortOrderDirection: sortOrderDirection
|
|
28470
|
+
},
|
|
28471
|
+
formData,
|
|
28472
|
+
mediaType: "multipart/form-data",
|
|
28473
|
+
errors: {
|
|
28474
|
+
400: `Bad Request`,
|
|
28475
|
+
422: `Unprocessable Content`,
|
|
28476
|
+
500: `Internal Server Error`
|
|
28477
|
+
}
|
|
28478
|
+
});
|
|
28479
|
+
}
|
|
28480
|
+
/**
|
|
28481
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
28482
|
+
* @returns RecentOrderActivityReport OK
|
|
28483
|
+
* @throws ApiError
|
|
28484
|
+
*/
|
|
28485
|
+
post({
|
|
28486
|
+
requestBody
|
|
28487
|
+
}) {
|
|
28488
|
+
return this.httpRequest.request({
|
|
28489
|
+
method: "POST",
|
|
28490
|
+
url: "/api/reports/recent-order-activity/v2-temporary-route",
|
|
28491
|
+
body: requestBody,
|
|
28492
|
+
mediaType: "application/json",
|
|
28493
|
+
errors: {
|
|
28494
|
+
400: `Bad Request`,
|
|
28495
|
+
422: `Unprocessable Content`,
|
|
28496
|
+
500: `Internal Server Error`
|
|
28497
|
+
}
|
|
28498
|
+
});
|
|
28499
|
+
}
|
|
28500
|
+
/**
|
|
28501
|
+
* Patches the resource.
|
|
28502
|
+
* @returns RecentOrderActivityReport OK
|
|
28503
|
+
* @throws ApiError
|
|
28504
|
+
*/
|
|
28505
|
+
patch({
|
|
28506
|
+
requestBody
|
|
28507
|
+
}) {
|
|
28508
|
+
return this.httpRequest.request({
|
|
28509
|
+
method: "PATCH",
|
|
28510
|
+
url: "/api/reports/recent-order-activity/v2-temporary-route",
|
|
28511
|
+
body: requestBody,
|
|
28512
|
+
mediaType: "application/json",
|
|
28513
|
+
errors: {
|
|
28514
|
+
400: `Bad Request`,
|
|
28515
|
+
422: `Unprocessable Content`,
|
|
28516
|
+
500: `Internal Server Error`
|
|
28517
|
+
}
|
|
28518
|
+
});
|
|
28519
|
+
}
|
|
28520
|
+
/**
|
|
28521
|
+
* Inserts a list of resources.
|
|
28522
|
+
* @returns RecentOrderActivityReport OK
|
|
28523
|
+
* @throws ApiError
|
|
28524
|
+
*/
|
|
28525
|
+
postList({
|
|
28526
|
+
requestBody
|
|
28527
|
+
}) {
|
|
28528
|
+
return this.httpRequest.request({
|
|
28529
|
+
method: "POST",
|
|
28530
|
+
url: "/api/reports/recent-order-activity/v2-temporary-route/list",
|
|
28531
|
+
body: requestBody,
|
|
28532
|
+
mediaType: "application/json",
|
|
28533
|
+
errors: {
|
|
28534
|
+
400: `Bad Request`,
|
|
28535
|
+
422: `Unprocessable Content`,
|
|
28536
|
+
500: `Internal Server Error`
|
|
28537
|
+
}
|
|
28538
|
+
});
|
|
28539
|
+
}
|
|
28540
|
+
/**
|
|
28541
|
+
* Patches the resource.
|
|
28542
|
+
* @returns RecentOrderActivityReport OK
|
|
28543
|
+
* @throws ApiError
|
|
28544
|
+
*/
|
|
28545
|
+
patchWithReferences({
|
|
28546
|
+
requestBody
|
|
28547
|
+
}) {
|
|
28548
|
+
return this.httpRequest.request({
|
|
28549
|
+
method: "PATCH",
|
|
28550
|
+
url: "/api/reports/recent-order-activity/v2-temporary-route/with-references",
|
|
28551
|
+
body: requestBody,
|
|
28552
|
+
mediaType: "application/json",
|
|
28553
|
+
errors: {
|
|
28554
|
+
400: `Bad Request`,
|
|
28555
|
+
422: `Unprocessable Content`,
|
|
28556
|
+
500: `Internal Server Error`
|
|
28557
|
+
}
|
|
28558
|
+
});
|
|
28559
|
+
}
|
|
28560
|
+
/**
|
|
28561
|
+
* Deletes the resource.
|
|
28562
|
+
* @returns any OK
|
|
28563
|
+
* @throws ApiError
|
|
28564
|
+
*/
|
|
28565
|
+
deleteByObject({
|
|
28566
|
+
requestBody
|
|
28567
|
+
}) {
|
|
28568
|
+
return this.httpRequest.request({
|
|
28569
|
+
method: "DELETE",
|
|
28570
|
+
url: "/api/reports/recent-order-activity",
|
|
28571
|
+
body: requestBody,
|
|
28572
|
+
mediaType: "application/json",
|
|
28573
|
+
errors: {
|
|
28574
|
+
400: `Bad Request`,
|
|
28575
|
+
422: `Unprocessable Content`,
|
|
28576
|
+
500: `Internal Server Error`
|
|
28577
|
+
}
|
|
28578
|
+
});
|
|
28579
|
+
}
|
|
28580
|
+
/**
|
|
28581
|
+
* Gets a list of resources.
|
|
28582
|
+
* @returns RecentOrderActivityReportPage OK
|
|
28583
|
+
* @throws ApiError
|
|
28584
|
+
*/
|
|
28585
|
+
getPage({
|
|
28586
|
+
pageNumber,
|
|
28587
|
+
take,
|
|
28588
|
+
skip,
|
|
28589
|
+
limitListRequests,
|
|
28590
|
+
tenantId,
|
|
28591
|
+
modifiedById,
|
|
28592
|
+
modifiedByIds,
|
|
28593
|
+
dateCreatedGte,
|
|
28594
|
+
dateCreatedLte,
|
|
28595
|
+
isLive,
|
|
28596
|
+
sortOrderDirection
|
|
28597
|
+
}) {
|
|
28598
|
+
return this.httpRequest.request({
|
|
28599
|
+
method: "GET",
|
|
28600
|
+
url: "/api/reports/recent-order-activity",
|
|
28111
28601
|
query: {
|
|
28112
28602
|
PageNumber: pageNumber,
|
|
28113
28603
|
Take: take,
|
|
@@ -29413,6 +29903,30 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
29413
29903
|
}
|
|
29414
29904
|
});
|
|
29415
29905
|
}
|
|
29906
|
+
/**
|
|
29907
|
+
* Emails all on waitlist onto the opportunity />.
|
|
29908
|
+
* @returns ScheduledSession OK
|
|
29909
|
+
* @throws ApiError
|
|
29910
|
+
*/
|
|
29911
|
+
contactWaitlist({
|
|
29912
|
+
scheduledSessionId,
|
|
29913
|
+
requestBody
|
|
29914
|
+
}) {
|
|
29915
|
+
return this.httpRequest.request({
|
|
29916
|
+
method: "PATCH",
|
|
29917
|
+
url: "/api/scheduled-sessions/{scheduledSessionId}/email-waitlist",
|
|
29918
|
+
path: {
|
|
29919
|
+
scheduledSessionId
|
|
29920
|
+
},
|
|
29921
|
+
body: requestBody,
|
|
29922
|
+
mediaType: "application/json",
|
|
29923
|
+
errors: {
|
|
29924
|
+
400: `Bad Request`,
|
|
29925
|
+
422: `Unprocessable Content`,
|
|
29926
|
+
500: `Internal Server Error`
|
|
29927
|
+
}
|
|
29928
|
+
});
|
|
29929
|
+
}
|
|
29416
29930
|
/**
|
|
29417
29931
|
* Cleans table of leased and conflicted scheduled sessions.
|
|
29418
29932
|
* @returns number OK
|
|
@@ -34596,6 +35110,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
34596
35110
|
orderItemId,
|
|
34597
35111
|
sessionId,
|
|
34598
35112
|
courseId,
|
|
35113
|
+
offerId,
|
|
34599
35114
|
pageNumber,
|
|
34600
35115
|
take,
|
|
34601
35116
|
skip,
|
|
@@ -34618,6 +35133,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
34618
35133
|
OrderItemId: orderItemId,
|
|
34619
35134
|
SessionId: sessionId,
|
|
34620
35135
|
CourseId: courseId,
|
|
35136
|
+
OfferId: offerId,
|
|
34621
35137
|
PageNumber: pageNumber,
|
|
34622
35138
|
Take: take,
|
|
34623
35139
|
Skip: skip,
|
|
@@ -34712,6 +35228,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
34712
35228
|
orderItemId,
|
|
34713
35229
|
sessionId,
|
|
34714
35230
|
courseId,
|
|
35231
|
+
offerId,
|
|
34715
35232
|
pageNumber,
|
|
34716
35233
|
take,
|
|
34717
35234
|
skip,
|
|
@@ -34734,6 +35251,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
34734
35251
|
OrderItemId: orderItemId,
|
|
34735
35252
|
SessionId: sessionId,
|
|
34736
35253
|
CourseId: courseId,
|
|
35254
|
+
OfferId: offerId,
|
|
34737
35255
|
PageNumber: pageNumber,
|
|
34738
35256
|
Take: take,
|
|
34739
35257
|
Skip: skip,
|
|
@@ -34765,6 +35283,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
34765
35283
|
orderItemId,
|
|
34766
35284
|
sessionId,
|
|
34767
35285
|
courseId,
|
|
35286
|
+
offerId,
|
|
34768
35287
|
pageNumber,
|
|
34769
35288
|
take,
|
|
34770
35289
|
skip,
|
|
@@ -34787,6 +35306,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
34787
35306
|
OrderItemId: orderItemId,
|
|
34788
35307
|
SessionId: sessionId,
|
|
34789
35308
|
CourseId: courseId,
|
|
35309
|
+
OfferId: offerId,
|
|
34790
35310
|
PageNumber: pageNumber,
|
|
34791
35311
|
Take: take,
|
|
34792
35312
|
Skip: skip,
|
|
@@ -34818,6 +35338,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
34818
35338
|
orderItemId,
|
|
34819
35339
|
sessionId,
|
|
34820
35340
|
courseId,
|
|
35341
|
+
offerId,
|
|
34821
35342
|
pageNumber,
|
|
34822
35343
|
take,
|
|
34823
35344
|
skip,
|
|
@@ -34840,6 +35361,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
34840
35361
|
OrderItemId: orderItemId,
|
|
34841
35362
|
SessionId: sessionId,
|
|
34842
35363
|
CourseId: courseId,
|
|
35364
|
+
OfferId: offerId,
|
|
34843
35365
|
PageNumber: pageNumber,
|
|
34844
35366
|
Take: take,
|
|
34845
35367
|
Skip: skip,
|
|
@@ -34871,6 +35393,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
34871
35393
|
orderItemId,
|
|
34872
35394
|
sessionId,
|
|
34873
35395
|
courseId,
|
|
35396
|
+
offerId,
|
|
34874
35397
|
pageNumber,
|
|
34875
35398
|
take,
|
|
34876
35399
|
skip,
|
|
@@ -34893,6 +35416,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
34893
35416
|
OrderItemId: orderItemId,
|
|
34894
35417
|
SessionId: sessionId,
|
|
34895
35418
|
CourseId: courseId,
|
|
35419
|
+
OfferId: offerId,
|
|
34896
35420
|
PageNumber: pageNumber,
|
|
34897
35421
|
Take: take,
|
|
34898
35422
|
Skip: skip,
|
|
@@ -42633,6 +43157,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
42633
43157
|
distance,
|
|
42634
43158
|
dashboardRequest,
|
|
42635
43159
|
programmeIds,
|
|
43160
|
+
venueTypeIds,
|
|
42636
43161
|
pageNumber,
|
|
42637
43162
|
take,
|
|
42638
43163
|
skip,
|
|
@@ -42670,6 +43195,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
42670
43195
|
Distance: distance,
|
|
42671
43196
|
DashboardRequest: dashboardRequest,
|
|
42672
43197
|
ProgrammeIds: programmeIds,
|
|
43198
|
+
VenueTypeIds: venueTypeIds,
|
|
42673
43199
|
PageNumber: pageNumber,
|
|
42674
43200
|
Take: take,
|
|
42675
43201
|
Skip: skip,
|
|
@@ -42779,6 +43305,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
42779
43305
|
distance,
|
|
42780
43306
|
dashboardRequest,
|
|
42781
43307
|
programmeIds,
|
|
43308
|
+
venueTypeIds,
|
|
42782
43309
|
pageNumber,
|
|
42783
43310
|
take,
|
|
42784
43311
|
skip,
|
|
@@ -42816,6 +43343,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
42816
43343
|
Distance: distance,
|
|
42817
43344
|
DashboardRequest: dashboardRequest,
|
|
42818
43345
|
ProgrammeIds: programmeIds,
|
|
43346
|
+
VenueTypeIds: venueTypeIds,
|
|
42819
43347
|
PageNumber: pageNumber,
|
|
42820
43348
|
Take: take,
|
|
42821
43349
|
Skip: skip,
|
|
@@ -42862,6 +43390,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
42862
43390
|
distance,
|
|
42863
43391
|
dashboardRequest,
|
|
42864
43392
|
programmeIds,
|
|
43393
|
+
venueTypeIds,
|
|
42865
43394
|
pageNumber,
|
|
42866
43395
|
take,
|
|
42867
43396
|
skip,
|
|
@@ -42899,6 +43428,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
42899
43428
|
Distance: distance,
|
|
42900
43429
|
DashboardRequest: dashboardRequest,
|
|
42901
43430
|
ProgrammeIds: programmeIds,
|
|
43431
|
+
VenueTypeIds: venueTypeIds,
|
|
42902
43432
|
PageNumber: pageNumber,
|
|
42903
43433
|
Take: take,
|
|
42904
43434
|
Skip: skip,
|
|
@@ -42945,6 +43475,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
42945
43475
|
distance,
|
|
42946
43476
|
dashboardRequest,
|
|
42947
43477
|
programmeIds,
|
|
43478
|
+
venueTypeIds,
|
|
42948
43479
|
pageNumber,
|
|
42949
43480
|
take,
|
|
42950
43481
|
skip,
|
|
@@ -42982,6 +43513,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
42982
43513
|
Distance: distance,
|
|
42983
43514
|
DashboardRequest: dashboardRequest,
|
|
42984
43515
|
ProgrammeIds: programmeIds,
|
|
43516
|
+
VenueTypeIds: venueTypeIds,
|
|
42985
43517
|
PageNumber: pageNumber,
|
|
42986
43518
|
Take: take,
|
|
42987
43519
|
Skip: skip,
|
|
@@ -43028,6 +43560,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
43028
43560
|
distance,
|
|
43029
43561
|
dashboardRequest,
|
|
43030
43562
|
programmeIds,
|
|
43563
|
+
venueTypeIds,
|
|
43031
43564
|
pageNumber,
|
|
43032
43565
|
take,
|
|
43033
43566
|
skip,
|
|
@@ -43065,6 +43598,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
43065
43598
|
Distance: distance,
|
|
43066
43599
|
DashboardRequest: dashboardRequest,
|
|
43067
43600
|
ProgrammeIds: programmeIds,
|
|
43601
|
+
VenueTypeIds: venueTypeIds,
|
|
43068
43602
|
PageNumber: pageNumber,
|
|
43069
43603
|
Take: take,
|
|
43070
43604
|
Skip: skip,
|
|
@@ -43560,6 +44094,378 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
43560
44094
|
}
|
|
43561
44095
|
});
|
|
43562
44096
|
}
|
|
44097
|
+
}class VenueTypeService {
|
|
44098
|
+
constructor(httpRequest) {
|
|
44099
|
+
this.httpRequest = httpRequest;
|
|
44100
|
+
}
|
|
44101
|
+
/**
|
|
44102
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
44103
|
+
* @returns VenueType OK
|
|
44104
|
+
* @throws ApiError
|
|
44105
|
+
*/
|
|
44106
|
+
post({
|
|
44107
|
+
requestBody
|
|
44108
|
+
}) {
|
|
44109
|
+
return this.httpRequest.request({
|
|
44110
|
+
method: "POST",
|
|
44111
|
+
url: "/api/venue-types/v2-temporary-route",
|
|
44112
|
+
body: requestBody,
|
|
44113
|
+
mediaType: "application/json",
|
|
44114
|
+
errors: {
|
|
44115
|
+
400: `Bad Request`,
|
|
44116
|
+
422: `Unprocessable Content`,
|
|
44117
|
+
500: `Internal Server Error`
|
|
44118
|
+
}
|
|
44119
|
+
});
|
|
44120
|
+
}
|
|
44121
|
+
/**
|
|
44122
|
+
* Patches the resource.
|
|
44123
|
+
* @returns VenueType OK
|
|
44124
|
+
* @throws ApiError
|
|
44125
|
+
*/
|
|
44126
|
+
patch({
|
|
44127
|
+
requestBody
|
|
44128
|
+
}) {
|
|
44129
|
+
return this.httpRequest.request({
|
|
44130
|
+
method: "PATCH",
|
|
44131
|
+
url: "/api/venue-types/v2-temporary-route",
|
|
44132
|
+
body: requestBody,
|
|
44133
|
+
mediaType: "application/json",
|
|
44134
|
+
errors: {
|
|
44135
|
+
400: `Bad Request`,
|
|
44136
|
+
422: `Unprocessable Content`,
|
|
44137
|
+
500: `Internal Server Error`
|
|
44138
|
+
}
|
|
44139
|
+
});
|
|
44140
|
+
}
|
|
44141
|
+
/**
|
|
44142
|
+
* Inserts a list of resources.
|
|
44143
|
+
* @returns VenueType OK
|
|
44144
|
+
* @throws ApiError
|
|
44145
|
+
*/
|
|
44146
|
+
postList({
|
|
44147
|
+
requestBody
|
|
44148
|
+
}) {
|
|
44149
|
+
return this.httpRequest.request({
|
|
44150
|
+
method: "POST",
|
|
44151
|
+
url: "/api/venue-types/v2-temporary-route/list",
|
|
44152
|
+
body: requestBody,
|
|
44153
|
+
mediaType: "application/json",
|
|
44154
|
+
errors: {
|
|
44155
|
+
400: `Bad Request`,
|
|
44156
|
+
422: `Unprocessable Content`,
|
|
44157
|
+
500: `Internal Server Error`
|
|
44158
|
+
}
|
|
44159
|
+
});
|
|
44160
|
+
}
|
|
44161
|
+
/**
|
|
44162
|
+
* Patches the resource.
|
|
44163
|
+
* @returns VenueType OK
|
|
44164
|
+
* @throws ApiError
|
|
44165
|
+
*/
|
|
44166
|
+
patchWithReferences({
|
|
44167
|
+
requestBody
|
|
44168
|
+
}) {
|
|
44169
|
+
return this.httpRequest.request({
|
|
44170
|
+
method: "PATCH",
|
|
44171
|
+
url: "/api/venue-types/v2-temporary-route/with-references",
|
|
44172
|
+
body: requestBody,
|
|
44173
|
+
mediaType: "application/json",
|
|
44174
|
+
errors: {
|
|
44175
|
+
400: `Bad Request`,
|
|
44176
|
+
422: `Unprocessable Content`,
|
|
44177
|
+
500: `Internal Server Error`
|
|
44178
|
+
}
|
|
44179
|
+
});
|
|
44180
|
+
}
|
|
44181
|
+
/**
|
|
44182
|
+
* Deletes the resource.
|
|
44183
|
+
* @returns any OK
|
|
44184
|
+
* @throws ApiError
|
|
44185
|
+
*/
|
|
44186
|
+
deleteByObject({
|
|
44187
|
+
requestBody
|
|
44188
|
+
}) {
|
|
44189
|
+
return this.httpRequest.request({
|
|
44190
|
+
method: "DELETE",
|
|
44191
|
+
url: "/api/venue-types",
|
|
44192
|
+
body: requestBody,
|
|
44193
|
+
mediaType: "application/json",
|
|
44194
|
+
errors: {
|
|
44195
|
+
400: `Bad Request`,
|
|
44196
|
+
422: `Unprocessable Content`,
|
|
44197
|
+
500: `Internal Server Error`
|
|
44198
|
+
}
|
|
44199
|
+
});
|
|
44200
|
+
}
|
|
44201
|
+
/**
|
|
44202
|
+
* Gets a list of resources.
|
|
44203
|
+
* @returns VenueTypePage OK
|
|
44204
|
+
* @throws ApiError
|
|
44205
|
+
*/
|
|
44206
|
+
getPage({
|
|
44207
|
+
pageNumber,
|
|
44208
|
+
take,
|
|
44209
|
+
skip,
|
|
44210
|
+
limitListRequests,
|
|
44211
|
+
tenantId,
|
|
44212
|
+
modifiedById,
|
|
44213
|
+
modifiedByIds,
|
|
44214
|
+
dateCreatedGte,
|
|
44215
|
+
dateCreatedLte,
|
|
44216
|
+
isLive,
|
|
44217
|
+
sortOrderDirection
|
|
44218
|
+
}) {
|
|
44219
|
+
return this.httpRequest.request({
|
|
44220
|
+
method: "GET",
|
|
44221
|
+
url: "/api/venue-types",
|
|
44222
|
+
query: {
|
|
44223
|
+
PageNumber: pageNumber,
|
|
44224
|
+
Take: take,
|
|
44225
|
+
Skip: skip,
|
|
44226
|
+
LimitListRequests: limitListRequests,
|
|
44227
|
+
TenantId: tenantId,
|
|
44228
|
+
ModifiedById: modifiedById,
|
|
44229
|
+
ModifiedByIds: modifiedByIds,
|
|
44230
|
+
DateCreatedGTE: dateCreatedGte,
|
|
44231
|
+
DateCreatedLTE: dateCreatedLte,
|
|
44232
|
+
IsLive: isLive,
|
|
44233
|
+
SortOrderDirection: sortOrderDirection
|
|
44234
|
+
},
|
|
44235
|
+
errors: {
|
|
44236
|
+
400: `Bad Request`,
|
|
44237
|
+
422: `Unprocessable Content`,
|
|
44238
|
+
500: `Internal Server Error`
|
|
44239
|
+
}
|
|
44240
|
+
});
|
|
44241
|
+
}
|
|
44242
|
+
/**
|
|
44243
|
+
* Deletes the resource.
|
|
44244
|
+
* @returns any OK
|
|
44245
|
+
* @throws ApiError
|
|
44246
|
+
*/
|
|
44247
|
+
deleteById({
|
|
44248
|
+
id
|
|
44249
|
+
}) {
|
|
44250
|
+
return this.httpRequest.request({
|
|
44251
|
+
method: "DELETE",
|
|
44252
|
+
url: "/api/venue-types/{id}",
|
|
44253
|
+
path: {
|
|
44254
|
+
id
|
|
44255
|
+
},
|
|
44256
|
+
errors: {
|
|
44257
|
+
400: `Bad Request`,
|
|
44258
|
+
422: `Unprocessable Content`,
|
|
44259
|
+
500: `Internal Server Error`
|
|
44260
|
+
}
|
|
44261
|
+
});
|
|
44262
|
+
}
|
|
44263
|
+
/**
|
|
44264
|
+
* Gets the resource by its Id.
|
|
44265
|
+
* @returns VenueType OK
|
|
44266
|
+
* @throws ApiError
|
|
44267
|
+
*/
|
|
44268
|
+
getObject({
|
|
44269
|
+
id
|
|
44270
|
+
}) {
|
|
44271
|
+
return this.httpRequest.request({
|
|
44272
|
+
method: "GET",
|
|
44273
|
+
url: "/api/venue-types/{id}",
|
|
44274
|
+
path: {
|
|
44275
|
+
id
|
|
44276
|
+
},
|
|
44277
|
+
errors: {
|
|
44278
|
+
400: `Bad Request`,
|
|
44279
|
+
422: `Unprocessable Content`,
|
|
44280
|
+
500: `Internal Server Error`
|
|
44281
|
+
}
|
|
44282
|
+
});
|
|
44283
|
+
}
|
|
44284
|
+
/**
|
|
44285
|
+
* Returns a value indicating whether the resource is deletable.
|
|
44286
|
+
* @returns boolean OK
|
|
44287
|
+
* @throws ApiError
|
|
44288
|
+
*/
|
|
44289
|
+
canDelete({
|
|
44290
|
+
id
|
|
44291
|
+
}) {
|
|
44292
|
+
return this.httpRequest.request({
|
|
44293
|
+
method: "GET",
|
|
44294
|
+
url: "/api/venue-types/{id}/deletable",
|
|
44295
|
+
path: {
|
|
44296
|
+
id
|
|
44297
|
+
},
|
|
44298
|
+
errors: {
|
|
44299
|
+
400: `Bad Request`,
|
|
44300
|
+
422: `Unprocessable Content`,
|
|
44301
|
+
500: `Internal Server Error`
|
|
44302
|
+
}
|
|
44303
|
+
});
|
|
44304
|
+
}
|
|
44305
|
+
/**
|
|
44306
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
44307
|
+
* @returns boolean OK
|
|
44308
|
+
* @throws ApiError
|
|
44309
|
+
*/
|
|
44310
|
+
exists({
|
|
44311
|
+
pageNumber,
|
|
44312
|
+
take,
|
|
44313
|
+
skip,
|
|
44314
|
+
limitListRequests,
|
|
44315
|
+
tenantId,
|
|
44316
|
+
modifiedById,
|
|
44317
|
+
modifiedByIds,
|
|
44318
|
+
dateCreatedGte,
|
|
44319
|
+
dateCreatedLte,
|
|
44320
|
+
isLive,
|
|
44321
|
+
sortOrderDirection
|
|
44322
|
+
}) {
|
|
44323
|
+
return this.httpRequest.request({
|
|
44324
|
+
method: "GET",
|
|
44325
|
+
url: "/api/venue-types/exists",
|
|
44326
|
+
query: {
|
|
44327
|
+
PageNumber: pageNumber,
|
|
44328
|
+
Take: take,
|
|
44329
|
+
Skip: skip,
|
|
44330
|
+
LimitListRequests: limitListRequests,
|
|
44331
|
+
TenantId: tenantId,
|
|
44332
|
+
ModifiedById: modifiedById,
|
|
44333
|
+
ModifiedByIds: modifiedByIds,
|
|
44334
|
+
DateCreatedGTE: dateCreatedGte,
|
|
44335
|
+
DateCreatedLTE: dateCreatedLte,
|
|
44336
|
+
IsLive: isLive,
|
|
44337
|
+
SortOrderDirection: sortOrderDirection
|
|
44338
|
+
},
|
|
44339
|
+
errors: {
|
|
44340
|
+
400: `Bad Request`,
|
|
44341
|
+
422: `Unprocessable Content`,
|
|
44342
|
+
500: `Internal Server Error`
|
|
44343
|
+
}
|
|
44344
|
+
});
|
|
44345
|
+
}
|
|
44346
|
+
/**
|
|
44347
|
+
* Returns the number of results in the database given the provided search params.
|
|
44348
|
+
* @returns number OK
|
|
44349
|
+
* @throws ApiError
|
|
44350
|
+
*/
|
|
44351
|
+
count({
|
|
44352
|
+
pageNumber,
|
|
44353
|
+
take,
|
|
44354
|
+
skip,
|
|
44355
|
+
limitListRequests,
|
|
44356
|
+
tenantId,
|
|
44357
|
+
modifiedById,
|
|
44358
|
+
modifiedByIds,
|
|
44359
|
+
dateCreatedGte,
|
|
44360
|
+
dateCreatedLte,
|
|
44361
|
+
isLive,
|
|
44362
|
+
sortOrderDirection
|
|
44363
|
+
}) {
|
|
44364
|
+
return this.httpRequest.request({
|
|
44365
|
+
method: "GET",
|
|
44366
|
+
url: "/api/venue-types/count",
|
|
44367
|
+
query: {
|
|
44368
|
+
PageNumber: pageNumber,
|
|
44369
|
+
Take: take,
|
|
44370
|
+
Skip: skip,
|
|
44371
|
+
LimitListRequests: limitListRequests,
|
|
44372
|
+
TenantId: tenantId,
|
|
44373
|
+
ModifiedById: modifiedById,
|
|
44374
|
+
ModifiedByIds: modifiedByIds,
|
|
44375
|
+
DateCreatedGTE: dateCreatedGte,
|
|
44376
|
+
DateCreatedLTE: dateCreatedLte,
|
|
44377
|
+
IsLive: isLive,
|
|
44378
|
+
SortOrderDirection: sortOrderDirection
|
|
44379
|
+
},
|
|
44380
|
+
errors: {
|
|
44381
|
+
400: `Bad Request`,
|
|
44382
|
+
422: `Unprocessable Content`,
|
|
44383
|
+
500: `Internal Server Error`
|
|
44384
|
+
}
|
|
44385
|
+
});
|
|
44386
|
+
}
|
|
44387
|
+
/**
|
|
44388
|
+
* Gets a list of resources unpaged and without references.
|
|
44389
|
+
* @returns VenueType OK
|
|
44390
|
+
* @throws ApiError
|
|
44391
|
+
*/
|
|
44392
|
+
getListWithoutReferences({
|
|
44393
|
+
pageNumber,
|
|
44394
|
+
take,
|
|
44395
|
+
skip,
|
|
44396
|
+
limitListRequests,
|
|
44397
|
+
tenantId,
|
|
44398
|
+
modifiedById,
|
|
44399
|
+
modifiedByIds,
|
|
44400
|
+
dateCreatedGte,
|
|
44401
|
+
dateCreatedLte,
|
|
44402
|
+
isLive,
|
|
44403
|
+
sortOrderDirection
|
|
44404
|
+
}) {
|
|
44405
|
+
return this.httpRequest.request({
|
|
44406
|
+
method: "GET",
|
|
44407
|
+
url: "/api/venue-types/without-references",
|
|
44408
|
+
query: {
|
|
44409
|
+
PageNumber: pageNumber,
|
|
44410
|
+
Take: take,
|
|
44411
|
+
Skip: skip,
|
|
44412
|
+
LimitListRequests: limitListRequests,
|
|
44413
|
+
TenantId: tenantId,
|
|
44414
|
+
ModifiedById: modifiedById,
|
|
44415
|
+
ModifiedByIds: modifiedByIds,
|
|
44416
|
+
DateCreatedGTE: dateCreatedGte,
|
|
44417
|
+
DateCreatedLTE: dateCreatedLte,
|
|
44418
|
+
IsLive: isLive,
|
|
44419
|
+
SortOrderDirection: sortOrderDirection
|
|
44420
|
+
},
|
|
44421
|
+
errors: {
|
|
44422
|
+
400: `Bad Request`,
|
|
44423
|
+
422: `Unprocessable Content`,
|
|
44424
|
+
500: `Internal Server Error`
|
|
44425
|
+
}
|
|
44426
|
+
});
|
|
44427
|
+
}
|
|
44428
|
+
/**
|
|
44429
|
+
* Gets a list of resources.
|
|
44430
|
+
* @returns VenueType OK
|
|
44431
|
+
* @throws ApiError
|
|
44432
|
+
*/
|
|
44433
|
+
getListIdName({
|
|
44434
|
+
pageNumber,
|
|
44435
|
+
take,
|
|
44436
|
+
skip,
|
|
44437
|
+
limitListRequests,
|
|
44438
|
+
tenantId,
|
|
44439
|
+
modifiedById,
|
|
44440
|
+
modifiedByIds,
|
|
44441
|
+
dateCreatedGte,
|
|
44442
|
+
dateCreatedLte,
|
|
44443
|
+
isLive,
|
|
44444
|
+
sortOrderDirection
|
|
44445
|
+
}) {
|
|
44446
|
+
return this.httpRequest.request({
|
|
44447
|
+
method: "GET",
|
|
44448
|
+
url: "/api/venue-types/id-name",
|
|
44449
|
+
query: {
|
|
44450
|
+
PageNumber: pageNumber,
|
|
44451
|
+
Take: take,
|
|
44452
|
+
Skip: skip,
|
|
44453
|
+
LimitListRequests: limitListRequests,
|
|
44454
|
+
TenantId: tenantId,
|
|
44455
|
+
ModifiedById: modifiedById,
|
|
44456
|
+
ModifiedByIds: modifiedByIds,
|
|
44457
|
+
DateCreatedGTE: dateCreatedGte,
|
|
44458
|
+
DateCreatedLTE: dateCreatedLte,
|
|
44459
|
+
IsLive: isLive,
|
|
44460
|
+
SortOrderDirection: sortOrderDirection
|
|
44461
|
+
},
|
|
44462
|
+
errors: {
|
|
44463
|
+
400: `Bad Request`,
|
|
44464
|
+
422: `Unprocessable Content`,
|
|
44465
|
+
500: `Internal Server Error`
|
|
44466
|
+
}
|
|
44467
|
+
});
|
|
44468
|
+
}
|
|
43563
44469
|
}class WaitlistActivityService {
|
|
43564
44470
|
constructor(httpRequest) {
|
|
43565
44471
|
this.httpRequest = httpRequest;
|
|
@@ -45518,6 +46424,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45518
46424
|
publicSurveys;
|
|
45519
46425
|
publicTenants;
|
|
45520
46426
|
publicVenues;
|
|
46427
|
+
publicVenueTypes;
|
|
45521
46428
|
publicWaitlistActivity;
|
|
45522
46429
|
publicWaitlistOpportunity;
|
|
45523
46430
|
recentOrderActivityReport;
|
|
@@ -45554,6 +46461,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45554
46461
|
venuePerformance;
|
|
45555
46462
|
venues;
|
|
45556
46463
|
venuesReport;
|
|
46464
|
+
venueType;
|
|
45557
46465
|
waitlistActivity;
|
|
45558
46466
|
waitlistActivityReport;
|
|
45559
46467
|
waitlistOpportunity;
|
|
@@ -45648,6 +46556,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45648
46556
|
this.publicSurveys = new PublicSurveysService(this.request);
|
|
45649
46557
|
this.publicTenants = new PublicTenantsService(this.request);
|
|
45650
46558
|
this.publicVenues = new PublicVenuesService(this.request);
|
|
46559
|
+
this.publicVenueTypes = new PublicVenueTypesService(this.request);
|
|
45651
46560
|
this.publicWaitlistActivity = new PublicWaitlistActivityService(this.request);
|
|
45652
46561
|
this.publicWaitlistOpportunity = new PublicWaitlistOpportunityService(this.request);
|
|
45653
46562
|
this.recentOrderActivityReport = new RecentOrderActivityReportService(this.request);
|
|
@@ -45684,6 +46593,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
45684
46593
|
this.venuePerformance = new VenuePerformanceService(this.request);
|
|
45685
46594
|
this.venues = new VenuesService(this.request);
|
|
45686
46595
|
this.venuesReport = new VenuesReportService(this.request);
|
|
46596
|
+
this.venueType = new VenueTypeService(this.request);
|
|
45687
46597
|
this.waitlistActivity = new WaitlistActivityService(this.request);
|
|
45688
46598
|
this.waitlistActivityReport = new WaitlistActivityReportService(this.request);
|
|
45689
46599
|
this.waitlistOpportunity = new WaitlistOpportunityService(this.request);
|
|
@@ -46067,6 +46977,11 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
46067
46977
|
SurveyQuestionType2["SELECT"] = "Select";
|
|
46068
46978
|
SurveyQuestionType2["CHECKBOX"] = "Checkbox";
|
|
46069
46979
|
SurveyQuestionType2["NUMBER"] = "Number";
|
|
46980
|
+
SurveyQuestionType2["TEXT_LONG"] = "TextLong";
|
|
46981
|
+
SurveyQuestionType2["BOOLEAN"] = "Boolean";
|
|
46982
|
+
SurveyQuestionType2["DATE"] = "Date";
|
|
46983
|
+
SurveyQuestionType2["RATING"] = "Rating";
|
|
46984
|
+
SurveyQuestionType2["FILE_UPLOAD"] = "FileUpload";
|
|
46070
46985
|
return SurveyQuestionType2;
|
|
46071
46986
|
})(SurveyQuestionType || {});var SurveyResponseMode = /* @__PURE__ */ ((SurveyResponseMode2) => {
|
|
46072
46987
|
SurveyResponseMode2["ASK_ONCE"] = "AskOnce";
|
|
@@ -46088,4 +47003,4 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
46088
47003
|
UpcomingLayout2["GRID"] = "Grid";
|
|
46089
47004
|
UpcomingLayout2["CALENDAR"] = "Calendar";
|
|
46090
47005
|
return UpcomingLayout2;
|
|
46091
|
-
})(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};
|
|
47006
|
+
})(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};
|