reach-api-sdk 1.0.81 → 1.0.82
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 +85 -11
- package/dist/reach-sdk.js +70 -0
- package/package.json +1 -1
- package/src/definition/swagger.yaml +197 -0
- package/src/services/CourseSessionsService.ts +24 -0
- package/src/services/PublicScheduledSessionsService.ts +12 -0
- package/src/services/PublicSessionsService.ts +6 -0
- package/src/services/ScheduledSessionsService.ts +24 -0
- package/src/services/VenueManagersService.ts +68 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -6508,7 +6508,7 @@ declare class CourseSessionsService {
|
|
|
6508
6508
|
* @returns boolean Success
|
|
6509
6509
|
* @throws ApiError
|
|
6510
6510
|
*/
|
|
6511
|
-
exists({ ids, venueId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, includeVenue, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
6511
|
+
exists({ ids, venueId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, includeVenue, excludeArchived, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
6512
6512
|
/**
|
|
6513
6513
|
* Gets or sets the queryable scheduled session ids.
|
|
6514
6514
|
*/
|
|
@@ -6561,6 +6561,10 @@ declare class CourseSessionsService {
|
|
|
6561
6561
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
6562
6562
|
*/
|
|
6563
6563
|
includeVenue?: boolean;
|
|
6564
|
+
/**
|
|
6565
|
+
* Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
|
|
6566
|
+
*/
|
|
6567
|
+
excludeArchived?: boolean;
|
|
6564
6568
|
/**
|
|
6565
6569
|
* Gets or sets the page number for paged queries.
|
|
6566
6570
|
*/
|
|
@@ -6607,7 +6611,7 @@ declare class CourseSessionsService {
|
|
|
6607
6611
|
* @returns CourseSessionPage Success
|
|
6608
6612
|
* @throws ApiError
|
|
6609
6613
|
*/
|
|
6610
|
-
getPage({ ids, venueId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, includeVenue, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
6614
|
+
getPage({ ids, venueId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, includeVenue, excludeArchived, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
6611
6615
|
/**
|
|
6612
6616
|
* Gets or sets the queryable scheduled session ids.
|
|
6613
6617
|
*/
|
|
@@ -6660,6 +6664,10 @@ declare class CourseSessionsService {
|
|
|
6660
6664
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
6661
6665
|
*/
|
|
6662
6666
|
includeVenue?: boolean;
|
|
6667
|
+
/**
|
|
6668
|
+
* Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
|
|
6669
|
+
*/
|
|
6670
|
+
excludeArchived?: boolean;
|
|
6663
6671
|
/**
|
|
6664
6672
|
* Gets or sets the page number for paged queries.
|
|
6665
6673
|
*/
|
|
@@ -6717,7 +6725,7 @@ declare class CourseSessionsService {
|
|
|
6717
6725
|
* @returns CourseSession Success
|
|
6718
6726
|
* @throws ApiError
|
|
6719
6727
|
*/
|
|
6720
|
-
getListWithoutReferences({ ids, venueId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, includeVenue, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
6728
|
+
getListWithoutReferences({ ids, venueId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, includeVenue, excludeArchived, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
6721
6729
|
/**
|
|
6722
6730
|
* Gets or sets the queryable scheduled session ids.
|
|
6723
6731
|
*/
|
|
@@ -6770,6 +6778,10 @@ declare class CourseSessionsService {
|
|
|
6770
6778
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
6771
6779
|
*/
|
|
6772
6780
|
includeVenue?: boolean;
|
|
6781
|
+
/**
|
|
6782
|
+
* Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
|
|
6783
|
+
*/
|
|
6784
|
+
excludeArchived?: boolean;
|
|
6773
6785
|
/**
|
|
6774
6786
|
* Gets or sets the page number for paged queries.
|
|
6775
6787
|
*/
|
|
@@ -6816,7 +6828,7 @@ declare class CourseSessionsService {
|
|
|
6816
6828
|
* @returns CourseSession Success
|
|
6817
6829
|
* @throws ApiError
|
|
6818
6830
|
*/
|
|
6819
|
-
getListIdName({ ids, venueId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, includeVenue, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
6831
|
+
getListIdName({ ids, venueId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, includeVenue, excludeArchived, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
6820
6832
|
/**
|
|
6821
6833
|
* Gets or sets the queryable scheduled session ids.
|
|
6822
6834
|
*/
|
|
@@ -6869,6 +6881,10 @@ declare class CourseSessionsService {
|
|
|
6869
6881
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
6870
6882
|
*/
|
|
6871
6883
|
includeVenue?: boolean;
|
|
6884
|
+
/**
|
|
6885
|
+
* Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
|
|
6886
|
+
*/
|
|
6887
|
+
excludeArchived?: boolean;
|
|
6872
6888
|
/**
|
|
6873
6889
|
* Gets or sets the page number for paged queries.
|
|
6874
6890
|
*/
|
|
@@ -20091,7 +20107,7 @@ declare class PublicScheduledSessionsService {
|
|
|
20091
20107
|
* @returns ScheduledSessionPage Success
|
|
20092
20108
|
* @throws ApiError
|
|
20093
20109
|
*/
|
|
20094
|
-
getPage({ xTenantSubdomain, ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeVenue, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20110
|
+
getPage({ xTenantSubdomain, ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeVenue, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20095
20111
|
xTenantSubdomain?: string;
|
|
20096
20112
|
/**
|
|
20097
20113
|
* Gets or sets the queryable scheduled session ids.
|
|
@@ -20161,6 +20177,10 @@ declare class PublicScheduledSessionsService {
|
|
|
20161
20177
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
20162
20178
|
*/
|
|
20163
20179
|
hasAvailability?: boolean;
|
|
20180
|
+
/**
|
|
20181
|
+
* Gets or sets a value indicating whether to include scheduled sessions whose sessions have been archived.
|
|
20182
|
+
*/
|
|
20183
|
+
excludeArchived?: boolean;
|
|
20164
20184
|
/**
|
|
20165
20185
|
* Gets or sets a value indicating whether the scheduled session has an order where the orders first name contains the given value.
|
|
20166
20186
|
*/
|
|
@@ -20238,7 +20258,7 @@ declare class PublicScheduledSessionsService {
|
|
|
20238
20258
|
* @returns boolean Success
|
|
20239
20259
|
* @throws ApiError
|
|
20240
20260
|
*/
|
|
20241
|
-
exists({ xTenantSubdomain, ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeVenue, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20261
|
+
exists({ xTenantSubdomain, ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeVenue, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20242
20262
|
/**
|
|
20243
20263
|
* The tenants subdomain.
|
|
20244
20264
|
*/
|
|
@@ -20311,6 +20331,10 @@ declare class PublicScheduledSessionsService {
|
|
|
20311
20331
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
20312
20332
|
*/
|
|
20313
20333
|
hasAvailability?: boolean;
|
|
20334
|
+
/**
|
|
20335
|
+
* Gets or sets a value indicating whether to include scheduled sessions whose sessions have been archived.
|
|
20336
|
+
*/
|
|
20337
|
+
excludeArchived?: boolean;
|
|
20314
20338
|
/**
|
|
20315
20339
|
* Gets or sets a value indicating whether the scheduled session has an order where the orders first name contains the given value.
|
|
20316
20340
|
*/
|
|
@@ -20680,7 +20704,7 @@ declare class PublicSessionsService {
|
|
|
20680
20704
|
* @returns any Success
|
|
20681
20705
|
* @throws ApiError
|
|
20682
20706
|
*/
|
|
20683
|
-
getDistinctSlotDates({ xTenantSubdomain, ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeVenue, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20707
|
+
getDistinctSlotDates({ xTenantSubdomain, ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeVenue, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20684
20708
|
/**
|
|
20685
20709
|
* The tenants subdomain.
|
|
20686
20710
|
*/
|
|
@@ -20753,6 +20777,10 @@ declare class PublicSessionsService {
|
|
|
20753
20777
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
20754
20778
|
*/
|
|
20755
20779
|
hasAvailability?: boolean;
|
|
20780
|
+
/**
|
|
20781
|
+
* Gets or sets a value indicating whether to include scheduled sessions whose sessions have been archived.
|
|
20782
|
+
*/
|
|
20783
|
+
excludeArchived?: boolean;
|
|
20756
20784
|
/**
|
|
20757
20785
|
* Gets or sets a value indicating whether the scheduled session has an order where the orders first name contains the given value.
|
|
20758
20786
|
*/
|
|
@@ -25026,7 +25054,7 @@ declare class ScheduledSessionsService {
|
|
|
25026
25054
|
* @returns boolean Success
|
|
25027
25055
|
* @throws ApiError
|
|
25028
25056
|
*/
|
|
25029
|
-
exists({ ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeVenue, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
25057
|
+
exists({ ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeVenue, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
25030
25058
|
/**
|
|
25031
25059
|
* Gets or sets the queryable scheduled session ids.
|
|
25032
25060
|
*/
|
|
@@ -25095,6 +25123,10 @@ declare class ScheduledSessionsService {
|
|
|
25095
25123
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
25096
25124
|
*/
|
|
25097
25125
|
hasAvailability?: boolean;
|
|
25126
|
+
/**
|
|
25127
|
+
* Gets or sets a value indicating whether to include scheduled sessions whose sessions have been archived.
|
|
25128
|
+
*/
|
|
25129
|
+
excludeArchived?: boolean;
|
|
25098
25130
|
/**
|
|
25099
25131
|
* Gets or sets a value indicating whether the scheduled session has an order where the orders first name contains the given value.
|
|
25100
25132
|
*/
|
|
@@ -25157,7 +25189,7 @@ declare class ScheduledSessionsService {
|
|
|
25157
25189
|
* @returns ScheduledSessionPage Success
|
|
25158
25190
|
* @throws ApiError
|
|
25159
25191
|
*/
|
|
25160
|
-
getPage({ ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeVenue, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
25192
|
+
getPage({ ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeVenue, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
25161
25193
|
/**
|
|
25162
25194
|
* Gets or sets the queryable scheduled session ids.
|
|
25163
25195
|
*/
|
|
@@ -25226,6 +25258,10 @@ declare class ScheduledSessionsService {
|
|
|
25226
25258
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
25227
25259
|
*/
|
|
25228
25260
|
hasAvailability?: boolean;
|
|
25261
|
+
/**
|
|
25262
|
+
* Gets or sets a value indicating whether to include scheduled sessions whose sessions have been archived.
|
|
25263
|
+
*/
|
|
25264
|
+
excludeArchived?: boolean;
|
|
25229
25265
|
/**
|
|
25230
25266
|
* Gets or sets a value indicating whether the scheduled session has an order where the orders first name contains the given value.
|
|
25231
25267
|
*/
|
|
@@ -25299,7 +25335,7 @@ declare class ScheduledSessionsService {
|
|
|
25299
25335
|
* @returns ScheduledSession Success
|
|
25300
25336
|
* @throws ApiError
|
|
25301
25337
|
*/
|
|
25302
|
-
getListWithoutReferences({ ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeVenue, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
25338
|
+
getListWithoutReferences({ ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeVenue, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
25303
25339
|
/**
|
|
25304
25340
|
* Gets or sets the queryable scheduled session ids.
|
|
25305
25341
|
*/
|
|
@@ -25368,6 +25404,10 @@ declare class ScheduledSessionsService {
|
|
|
25368
25404
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
25369
25405
|
*/
|
|
25370
25406
|
hasAvailability?: boolean;
|
|
25407
|
+
/**
|
|
25408
|
+
* Gets or sets a value indicating whether to include scheduled sessions whose sessions have been archived.
|
|
25409
|
+
*/
|
|
25410
|
+
excludeArchived?: boolean;
|
|
25371
25411
|
/**
|
|
25372
25412
|
* Gets or sets a value indicating whether the scheduled session has an order where the orders first name contains the given value.
|
|
25373
25413
|
*/
|
|
@@ -25430,7 +25470,7 @@ declare class ScheduledSessionsService {
|
|
|
25430
25470
|
* @returns ScheduledSession Success
|
|
25431
25471
|
* @throws ApiError
|
|
25432
25472
|
*/
|
|
25433
|
-
getListIdName({ ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeVenue, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
25473
|
+
getListIdName({ ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeVenue, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
25434
25474
|
/**
|
|
25435
25475
|
* Gets or sets the queryable scheduled session ids.
|
|
25436
25476
|
*/
|
|
@@ -25499,6 +25539,10 @@ declare class ScheduledSessionsService {
|
|
|
25499
25539
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
25500
25540
|
*/
|
|
25501
25541
|
hasAvailability?: boolean;
|
|
25542
|
+
/**
|
|
25543
|
+
* Gets or sets a value indicating whether to include scheduled sessions whose sessions have been archived.
|
|
25544
|
+
*/
|
|
25545
|
+
excludeArchived?: boolean;
|
|
25502
25546
|
/**
|
|
25503
25547
|
* Gets or sets a value indicating whether the scheduled session has an order where the orders first name contains the given value.
|
|
25504
25548
|
*/
|
|
@@ -34345,6 +34389,36 @@ type VenueManagerPost = {
|
|
|
34345
34389
|
declare class VenueManagersService {
|
|
34346
34390
|
readonly httpRequest: BaseHttpRequest;
|
|
34347
34391
|
constructor(httpRequest: BaseHttpRequest);
|
|
34392
|
+
/**
|
|
34393
|
+
* Updates the assigned venues for the user />.
|
|
34394
|
+
* @returns any Success
|
|
34395
|
+
* @throws ApiError
|
|
34396
|
+
*/
|
|
34397
|
+
updateUserVenueAssignments({ userId, requestBody, }: {
|
|
34398
|
+
/**
|
|
34399
|
+
* The user Id.
|
|
34400
|
+
*/
|
|
34401
|
+
userId: string;
|
|
34402
|
+
/**
|
|
34403
|
+
* The post model.
|
|
34404
|
+
*/
|
|
34405
|
+
requestBody?: Array<VenueManagerPost>;
|
|
34406
|
+
}): CancelablePromise<any>;
|
|
34407
|
+
/**
|
|
34408
|
+
* Updates the assigned users for the venue />.
|
|
34409
|
+
* @returns any Success
|
|
34410
|
+
* @throws ApiError
|
|
34411
|
+
*/
|
|
34412
|
+
updateVenueUserAssignments({ venueId, requestBody, }: {
|
|
34413
|
+
/**
|
|
34414
|
+
* The venue Id.
|
|
34415
|
+
*/
|
|
34416
|
+
venueId: string;
|
|
34417
|
+
/**
|
|
34418
|
+
* The post model.
|
|
34419
|
+
*/
|
|
34420
|
+
requestBody?: Array<VenueManagerPost>;
|
|
34421
|
+
}): CancelablePromise<any>;
|
|
34348
34422
|
/**
|
|
34349
34423
|
* Gets the resource by its Id.
|
|
34350
34424
|
* @returns VenueManager Success
|
package/dist/reach-sdk.js
CHANGED
|
@@ -2701,6 +2701,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2701
2701
|
endDateTimeGte,
|
|
2702
2702
|
futureOnly,
|
|
2703
2703
|
includeVenue,
|
|
2704
|
+
excludeArchived,
|
|
2704
2705
|
pageNumber,
|
|
2705
2706
|
take,
|
|
2706
2707
|
limitListRequests,
|
|
@@ -2729,6 +2730,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2729
2730
|
EndDateTimeGTE: endDateTimeGte,
|
|
2730
2731
|
FutureOnly: futureOnly,
|
|
2731
2732
|
IncludeVenue: includeVenue,
|
|
2733
|
+
ExcludeArchived: excludeArchived,
|
|
2732
2734
|
PageNumber: pageNumber,
|
|
2733
2735
|
Take: take,
|
|
2734
2736
|
LimitListRequests: limitListRequests,
|
|
@@ -2766,6 +2768,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2766
2768
|
endDateTimeGte,
|
|
2767
2769
|
futureOnly,
|
|
2768
2770
|
includeVenue,
|
|
2771
|
+
excludeArchived,
|
|
2769
2772
|
pageNumber,
|
|
2770
2773
|
take,
|
|
2771
2774
|
limitListRequests,
|
|
@@ -2794,6 +2797,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2794
2797
|
EndDateTimeGTE: endDateTimeGte,
|
|
2795
2798
|
FutureOnly: futureOnly,
|
|
2796
2799
|
IncludeVenue: includeVenue,
|
|
2800
|
+
ExcludeArchived: excludeArchived,
|
|
2797
2801
|
PageNumber: pageNumber,
|
|
2798
2802
|
Take: take,
|
|
2799
2803
|
LimitListRequests: limitListRequests,
|
|
@@ -2851,6 +2855,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2851
2855
|
endDateTimeGte,
|
|
2852
2856
|
futureOnly,
|
|
2853
2857
|
includeVenue,
|
|
2858
|
+
excludeArchived,
|
|
2854
2859
|
pageNumber,
|
|
2855
2860
|
take,
|
|
2856
2861
|
limitListRequests,
|
|
@@ -2879,6 +2884,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2879
2884
|
EndDateTimeGTE: endDateTimeGte,
|
|
2880
2885
|
FutureOnly: futureOnly,
|
|
2881
2886
|
IncludeVenue: includeVenue,
|
|
2887
|
+
ExcludeArchived: excludeArchived,
|
|
2882
2888
|
PageNumber: pageNumber,
|
|
2883
2889
|
Take: take,
|
|
2884
2890
|
LimitListRequests: limitListRequests,
|
|
@@ -2916,6 +2922,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2916
2922
|
endDateTimeGte,
|
|
2917
2923
|
futureOnly,
|
|
2918
2924
|
includeVenue,
|
|
2925
|
+
excludeArchived,
|
|
2919
2926
|
pageNumber,
|
|
2920
2927
|
take,
|
|
2921
2928
|
limitListRequests,
|
|
@@ -2944,6 +2951,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2944
2951
|
EndDateTimeGTE: endDateTimeGte,
|
|
2945
2952
|
FutureOnly: futureOnly,
|
|
2946
2953
|
IncludeVenue: includeVenue,
|
|
2954
|
+
ExcludeArchived: excludeArchived,
|
|
2947
2955
|
PageNumber: pageNumber,
|
|
2948
2956
|
Take: take,
|
|
2949
2957
|
LimitListRequests: limitListRequests,
|
|
@@ -14285,6 +14293,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14285
14293
|
futureOnly,
|
|
14286
14294
|
includeVenue,
|
|
14287
14295
|
hasAvailability,
|
|
14296
|
+
excludeArchived,
|
|
14288
14297
|
orderFirstNameContains,
|
|
14289
14298
|
orderLastNameContains,
|
|
14290
14299
|
sortBy,
|
|
@@ -14324,6 +14333,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14324
14333
|
FutureOnly: futureOnly,
|
|
14325
14334
|
IncludeVenue: includeVenue,
|
|
14326
14335
|
HasAvailability: hasAvailability,
|
|
14336
|
+
ExcludeArchived: excludeArchived,
|
|
14327
14337
|
OrderFirstNameContains: orderFirstNameContains,
|
|
14328
14338
|
OrderLastNameContains: orderLastNameContains,
|
|
14329
14339
|
SortBy: sortBy,
|
|
@@ -14394,6 +14404,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14394
14404
|
futureOnly,
|
|
14395
14405
|
includeVenue,
|
|
14396
14406
|
hasAvailability,
|
|
14407
|
+
excludeArchived,
|
|
14397
14408
|
orderFirstNameContains,
|
|
14398
14409
|
orderLastNameContains,
|
|
14399
14410
|
sortBy,
|
|
@@ -14433,6 +14444,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14433
14444
|
FutureOnly: futureOnly,
|
|
14434
14445
|
IncludeVenue: includeVenue,
|
|
14435
14446
|
HasAvailability: hasAvailability,
|
|
14447
|
+
ExcludeArchived: excludeArchived,
|
|
14436
14448
|
OrderFirstNameContains: orderFirstNameContains,
|
|
14437
14449
|
OrderLastNameContains: orderLastNameContains,
|
|
14438
14450
|
SortBy: sortBy,
|
|
@@ -14692,6 +14704,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14692
14704
|
futureOnly,
|
|
14693
14705
|
includeVenue,
|
|
14694
14706
|
hasAvailability,
|
|
14707
|
+
excludeArchived,
|
|
14695
14708
|
orderFirstNameContains,
|
|
14696
14709
|
orderLastNameContains,
|
|
14697
14710
|
sortBy,
|
|
@@ -14731,6 +14744,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14731
14744
|
FutureOnly: futureOnly,
|
|
14732
14745
|
IncludeVenue: includeVenue,
|
|
14733
14746
|
HasAvailability: hasAvailability,
|
|
14747
|
+
ExcludeArchived: excludeArchived,
|
|
14734
14748
|
OrderFirstNameContains: orderFirstNameContains,
|
|
14735
14749
|
OrderLastNameContains: orderLastNameContains,
|
|
14736
14750
|
SortBy: sortBy,
|
|
@@ -18101,6 +18115,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18101
18115
|
futureOnly,
|
|
18102
18116
|
includeVenue,
|
|
18103
18117
|
hasAvailability,
|
|
18118
|
+
excludeArchived,
|
|
18104
18119
|
orderFirstNameContains,
|
|
18105
18120
|
orderLastNameContains,
|
|
18106
18121
|
sortBy,
|
|
@@ -18137,6 +18152,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18137
18152
|
FutureOnly: futureOnly,
|
|
18138
18153
|
IncludeVenue: includeVenue,
|
|
18139
18154
|
HasAvailability: hasAvailability,
|
|
18155
|
+
ExcludeArchived: excludeArchived,
|
|
18140
18156
|
OrderFirstNameContains: orderFirstNameContains,
|
|
18141
18157
|
OrderLastNameContains: orderLastNameContains,
|
|
18142
18158
|
SortBy: sortBy,
|
|
@@ -18182,6 +18198,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18182
18198
|
futureOnly,
|
|
18183
18199
|
includeVenue,
|
|
18184
18200
|
hasAvailability,
|
|
18201
|
+
excludeArchived,
|
|
18185
18202
|
orderFirstNameContains,
|
|
18186
18203
|
orderLastNameContains,
|
|
18187
18204
|
sortBy,
|
|
@@ -18218,6 +18235,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18218
18235
|
FutureOnly: futureOnly,
|
|
18219
18236
|
IncludeVenue: includeVenue,
|
|
18220
18237
|
HasAvailability: hasAvailability,
|
|
18238
|
+
ExcludeArchived: excludeArchived,
|
|
18221
18239
|
OrderFirstNameContains: orderFirstNameContains,
|
|
18222
18240
|
OrderLastNameContains: orderLastNameContains,
|
|
18223
18241
|
SortBy: sortBy,
|
|
@@ -18283,6 +18301,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18283
18301
|
futureOnly,
|
|
18284
18302
|
includeVenue,
|
|
18285
18303
|
hasAvailability,
|
|
18304
|
+
excludeArchived,
|
|
18286
18305
|
orderFirstNameContains,
|
|
18287
18306
|
orderLastNameContains,
|
|
18288
18307
|
sortBy,
|
|
@@ -18319,6 +18338,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18319
18338
|
FutureOnly: futureOnly,
|
|
18320
18339
|
IncludeVenue: includeVenue,
|
|
18321
18340
|
HasAvailability: hasAvailability,
|
|
18341
|
+
ExcludeArchived: excludeArchived,
|
|
18322
18342
|
OrderFirstNameContains: orderFirstNameContains,
|
|
18323
18343
|
OrderLastNameContains: orderLastNameContains,
|
|
18324
18344
|
SortBy: sortBy,
|
|
@@ -18364,6 +18384,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18364
18384
|
futureOnly,
|
|
18365
18385
|
includeVenue,
|
|
18366
18386
|
hasAvailability,
|
|
18387
|
+
excludeArchived,
|
|
18367
18388
|
orderFirstNameContains,
|
|
18368
18389
|
orderLastNameContains,
|
|
18369
18390
|
sortBy,
|
|
@@ -18400,6 +18421,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18400
18421
|
FutureOnly: futureOnly,
|
|
18401
18422
|
IncludeVenue: includeVenue,
|
|
18402
18423
|
HasAvailability: hasAvailability,
|
|
18424
|
+
ExcludeArchived: excludeArchived,
|
|
18403
18425
|
OrderFirstNameContains: orderFirstNameContains,
|
|
18404
18426
|
OrderLastNameContains: orderLastNameContains,
|
|
18405
18427
|
SortBy: sortBy,
|
|
@@ -26362,6 +26384,54 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
26362
26384
|
constructor(httpRequest) {
|
|
26363
26385
|
this.httpRequest = httpRequest;
|
|
26364
26386
|
}
|
|
26387
|
+
/**
|
|
26388
|
+
* Updates the assigned venues for the user />.
|
|
26389
|
+
* @returns any Success
|
|
26390
|
+
* @throws ApiError
|
|
26391
|
+
*/
|
|
26392
|
+
updateUserVenueAssignments({
|
|
26393
|
+
userId,
|
|
26394
|
+
requestBody
|
|
26395
|
+
}) {
|
|
26396
|
+
return this.httpRequest.request({
|
|
26397
|
+
method: "PATCH",
|
|
26398
|
+
url: "/api/venue-managers/{userId}/update-venues",
|
|
26399
|
+
path: {
|
|
26400
|
+
userId
|
|
26401
|
+
},
|
|
26402
|
+
body: requestBody,
|
|
26403
|
+
mediaType: "application/json",
|
|
26404
|
+
errors: {
|
|
26405
|
+
400: `Bad Request`,
|
|
26406
|
+
422: `Client Error`,
|
|
26407
|
+
500: `Server Error`
|
|
26408
|
+
}
|
|
26409
|
+
});
|
|
26410
|
+
}
|
|
26411
|
+
/**
|
|
26412
|
+
* Updates the assigned users for the venue />.
|
|
26413
|
+
* @returns any Success
|
|
26414
|
+
* @throws ApiError
|
|
26415
|
+
*/
|
|
26416
|
+
updateVenueUserAssignments({
|
|
26417
|
+
venueId,
|
|
26418
|
+
requestBody
|
|
26419
|
+
}) {
|
|
26420
|
+
return this.httpRequest.request({
|
|
26421
|
+
method: "PATCH",
|
|
26422
|
+
url: "/api/venue-managers/{venueId}/update-users",
|
|
26423
|
+
path: {
|
|
26424
|
+
venueId
|
|
26425
|
+
},
|
|
26426
|
+
body: requestBody,
|
|
26427
|
+
mediaType: "application/json",
|
|
26428
|
+
errors: {
|
|
26429
|
+
400: `Bad Request`,
|
|
26430
|
+
422: `Client Error`,
|
|
26431
|
+
500: `Server Error`
|
|
26432
|
+
}
|
|
26433
|
+
});
|
|
26434
|
+
}
|
|
26365
26435
|
/**
|
|
26366
26436
|
* Gets the resource by its Id.
|
|
26367
26437
|
* @returns VenueManager Success
|
package/package.json
CHANGED
|
@@ -6967,6 +6967,11 @@ paths:
|
|
|
6967
6967
|
description: Gets or sets a value indicating whether to include venue detail in the results.
|
|
6968
6968
|
schema:
|
|
6969
6969
|
type: boolean
|
|
6970
|
+
- name: ExcludeArchived
|
|
6971
|
+
in: query
|
|
6972
|
+
description: Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
|
|
6973
|
+
schema:
|
|
6974
|
+
type: boolean
|
|
6970
6975
|
- name: PageNumber
|
|
6971
6976
|
in: query
|
|
6972
6977
|
description: Gets or sets the page number for paged queries.
|
|
@@ -7162,6 +7167,11 @@ paths:
|
|
|
7162
7167
|
description: Gets or sets a value indicating whether to include venue detail in the results.
|
|
7163
7168
|
schema:
|
|
7164
7169
|
type: boolean
|
|
7170
|
+
- name: ExcludeArchived
|
|
7171
|
+
in: query
|
|
7172
|
+
description: Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
|
|
7173
|
+
schema:
|
|
7174
|
+
type: boolean
|
|
7165
7175
|
- name: PageNumber
|
|
7166
7176
|
in: query
|
|
7167
7177
|
description: Gets or sets the page number for paged queries.
|
|
@@ -7413,6 +7423,11 @@ paths:
|
|
|
7413
7423
|
description: Gets or sets a value indicating whether to include venue detail in the results.
|
|
7414
7424
|
schema:
|
|
7415
7425
|
type: boolean
|
|
7426
|
+
- name: ExcludeArchived
|
|
7427
|
+
in: query
|
|
7428
|
+
description: Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
|
|
7429
|
+
schema:
|
|
7430
|
+
type: boolean
|
|
7416
7431
|
- name: PageNumber
|
|
7417
7432
|
in: query
|
|
7418
7433
|
description: Gets or sets the page number for paged queries.
|
|
@@ -7614,6 +7629,11 @@ paths:
|
|
|
7614
7629
|
description: Gets or sets a value indicating whether to include venue detail in the results.
|
|
7615
7630
|
schema:
|
|
7616
7631
|
type: boolean
|
|
7632
|
+
- name: ExcludeArchived
|
|
7633
|
+
in: query
|
|
7634
|
+
description: Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
|
|
7635
|
+
schema:
|
|
7636
|
+
type: boolean
|
|
7617
7637
|
- name: PageNumber
|
|
7618
7638
|
in: query
|
|
7619
7639
|
description: Gets or sets the page number for paged queries.
|
|
@@ -41400,6 +41420,11 @@ paths:
|
|
|
41400
41420
|
description: Gets or sets a value indicating whether the scheduled session has availability.
|
|
41401
41421
|
schema:
|
|
41402
41422
|
type: boolean
|
|
41423
|
+
- name: ExcludeArchived
|
|
41424
|
+
in: query
|
|
41425
|
+
description: Gets or sets a value indicating whether to include scheduled sessions whose sessions have been archived.
|
|
41426
|
+
schema:
|
|
41427
|
+
type: boolean
|
|
41403
41428
|
- name: OrderFirstNameContains
|
|
41404
41429
|
in: query
|
|
41405
41430
|
description: Gets or sets a value indicating whether the scheduled session has an order where the orders first name contains the given value.
|
|
@@ -41704,6 +41729,11 @@ paths:
|
|
|
41704
41729
|
description: Gets or sets a value indicating whether the scheduled session has availability.
|
|
41705
41730
|
schema:
|
|
41706
41731
|
type: boolean
|
|
41732
|
+
- name: ExcludeArchived
|
|
41733
|
+
in: query
|
|
41734
|
+
description: Gets or sets a value indicating whether to include scheduled sessions whose sessions have been archived.
|
|
41735
|
+
schema:
|
|
41736
|
+
type: boolean
|
|
41707
41737
|
- name: OrderFirstNameContains
|
|
41708
41738
|
in: query
|
|
41709
41739
|
description: Gets or sets a value indicating whether the scheduled session has an order where the orders first name contains the given value.
|
|
@@ -42538,6 +42568,11 @@ paths:
|
|
|
42538
42568
|
description: Gets or sets a value indicating whether the scheduled session has availability.
|
|
42539
42569
|
schema:
|
|
42540
42570
|
type: boolean
|
|
42571
|
+
- name: ExcludeArchived
|
|
42572
|
+
in: query
|
|
42573
|
+
description: Gets or sets a value indicating whether to include scheduled sessions whose sessions have been archived.
|
|
42574
|
+
schema:
|
|
42575
|
+
type: boolean
|
|
42541
42576
|
- name: OrderFirstNameContains
|
|
42542
42577
|
in: query
|
|
42543
42578
|
description: Gets or sets a value indicating whether the scheduled session has an order where the orders first name contains the given value.
|
|
@@ -52259,6 +52294,11 @@ paths:
|
|
|
52259
52294
|
description: Gets or sets a value indicating whether the scheduled session has availability.
|
|
52260
52295
|
schema:
|
|
52261
52296
|
type: boolean
|
|
52297
|
+
- name: ExcludeArchived
|
|
52298
|
+
in: query
|
|
52299
|
+
description: Gets or sets a value indicating whether to include scheduled sessions whose sessions have been archived.
|
|
52300
|
+
schema:
|
|
52301
|
+
type: boolean
|
|
52262
52302
|
- name: OrderFirstNameContains
|
|
52263
52303
|
in: query
|
|
52264
52304
|
description: Gets or sets a value indicating whether the scheduled session has an order where the orders first name contains the given value.
|
|
@@ -52496,6 +52536,11 @@ paths:
|
|
|
52496
52536
|
description: Gets or sets a value indicating whether the scheduled session has availability.
|
|
52497
52537
|
schema:
|
|
52498
52538
|
type: boolean
|
|
52539
|
+
- name: ExcludeArchived
|
|
52540
|
+
in: query
|
|
52541
|
+
description: Gets or sets a value indicating whether to include scheduled sessions whose sessions have been archived.
|
|
52542
|
+
schema:
|
|
52543
|
+
type: boolean
|
|
52499
52544
|
- name: OrderFirstNameContains
|
|
52500
52545
|
in: query
|
|
52501
52546
|
description: Gets or sets a value indicating whether the scheduled session has an order where the orders first name contains the given value.
|
|
@@ -52789,6 +52834,11 @@ paths:
|
|
|
52789
52834
|
description: Gets or sets a value indicating whether the scheduled session has availability.
|
|
52790
52835
|
schema:
|
|
52791
52836
|
type: boolean
|
|
52837
|
+
- name: ExcludeArchived
|
|
52838
|
+
in: query
|
|
52839
|
+
description: Gets or sets a value indicating whether to include scheduled sessions whose sessions have been archived.
|
|
52840
|
+
schema:
|
|
52841
|
+
type: boolean
|
|
52792
52842
|
- name: OrderFirstNameContains
|
|
52793
52843
|
in: query
|
|
52794
52844
|
description: Gets or sets a value indicating whether the scheduled session has an order where the orders first name contains the given value.
|
|
@@ -53032,6 +53082,11 @@ paths:
|
|
|
53032
53082
|
description: Gets or sets a value indicating whether the scheduled session has availability.
|
|
53033
53083
|
schema:
|
|
53034
53084
|
type: boolean
|
|
53085
|
+
- name: ExcludeArchived
|
|
53086
|
+
in: query
|
|
53087
|
+
description: Gets or sets a value indicating whether to include scheduled sessions whose sessions have been archived.
|
|
53088
|
+
schema:
|
|
53089
|
+
type: boolean
|
|
53035
53090
|
- name: OrderFirstNameContains
|
|
53036
53091
|
in: query
|
|
53037
53092
|
description: Gets or sets a value indicating whether the scheduled session has an order where the orders first name contains the given value.
|
|
@@ -77396,6 +77451,148 @@ paths:
|
|
|
77396
77451
|
text/json:
|
|
77397
77452
|
schema:
|
|
77398
77453
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
77454
|
+
'/api/venue-managers/{userId}/update-venues':
|
|
77455
|
+
patch:
|
|
77456
|
+
tags:
|
|
77457
|
+
- VenueManagers
|
|
77458
|
+
summary: Updates the assigned venues for the user />.
|
|
77459
|
+
operationId: UpdateUserVenueAssignments
|
|
77460
|
+
parameters:
|
|
77461
|
+
- name: userId
|
|
77462
|
+
in: path
|
|
77463
|
+
description: The user Id.
|
|
77464
|
+
required: true
|
|
77465
|
+
schema:
|
|
77466
|
+
type: string
|
|
77467
|
+
format: uuid
|
|
77468
|
+
requestBody:
|
|
77469
|
+
description: The post model.
|
|
77470
|
+
content:
|
|
77471
|
+
application/json:
|
|
77472
|
+
schema:
|
|
77473
|
+
type: array
|
|
77474
|
+
items:
|
|
77475
|
+
$ref: '#/components/schemas/VenueManagerPost'
|
|
77476
|
+
text/json:
|
|
77477
|
+
schema:
|
|
77478
|
+
type: array
|
|
77479
|
+
items:
|
|
77480
|
+
$ref: '#/components/schemas/VenueManagerPost'
|
|
77481
|
+
application/*+json:
|
|
77482
|
+
schema:
|
|
77483
|
+
type: array
|
|
77484
|
+
items:
|
|
77485
|
+
$ref: '#/components/schemas/VenueManagerPost'
|
|
77486
|
+
responses:
|
|
77487
|
+
'200':
|
|
77488
|
+
description: Success
|
|
77489
|
+
'400':
|
|
77490
|
+
description: Bad Request
|
|
77491
|
+
content:
|
|
77492
|
+
text/plain:
|
|
77493
|
+
schema:
|
|
77494
|
+
$ref: '#/components/schemas/ReachError'
|
|
77495
|
+
application/json:
|
|
77496
|
+
schema:
|
|
77497
|
+
$ref: '#/components/schemas/ReachError'
|
|
77498
|
+
text/json:
|
|
77499
|
+
schema:
|
|
77500
|
+
$ref: '#/components/schemas/ReachError'
|
|
77501
|
+
'500':
|
|
77502
|
+
description: Server Error
|
|
77503
|
+
content:
|
|
77504
|
+
text/plain:
|
|
77505
|
+
schema:
|
|
77506
|
+
$ref: '#/components/schemas/ReachError'
|
|
77507
|
+
application/json:
|
|
77508
|
+
schema:
|
|
77509
|
+
$ref: '#/components/schemas/ReachError'
|
|
77510
|
+
text/json:
|
|
77511
|
+
schema:
|
|
77512
|
+
$ref: '#/components/schemas/ReachError'
|
|
77513
|
+
'422':
|
|
77514
|
+
description: Client Error
|
|
77515
|
+
content:
|
|
77516
|
+
text/plain:
|
|
77517
|
+
schema:
|
|
77518
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
77519
|
+
application/json:
|
|
77520
|
+
schema:
|
|
77521
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
77522
|
+
text/json:
|
|
77523
|
+
schema:
|
|
77524
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
77525
|
+
'/api/venue-managers/{venueId}/update-users':
|
|
77526
|
+
patch:
|
|
77527
|
+
tags:
|
|
77528
|
+
- VenueManagers
|
|
77529
|
+
summary: Updates the assigned users for the venue />.
|
|
77530
|
+
operationId: UpdateVenueUserAssignments
|
|
77531
|
+
parameters:
|
|
77532
|
+
- name: venueId
|
|
77533
|
+
in: path
|
|
77534
|
+
description: The venue Id.
|
|
77535
|
+
required: true
|
|
77536
|
+
schema:
|
|
77537
|
+
type: string
|
|
77538
|
+
format: uuid
|
|
77539
|
+
requestBody:
|
|
77540
|
+
description: The post model.
|
|
77541
|
+
content:
|
|
77542
|
+
application/json:
|
|
77543
|
+
schema:
|
|
77544
|
+
type: array
|
|
77545
|
+
items:
|
|
77546
|
+
$ref: '#/components/schemas/VenueManagerPost'
|
|
77547
|
+
text/json:
|
|
77548
|
+
schema:
|
|
77549
|
+
type: array
|
|
77550
|
+
items:
|
|
77551
|
+
$ref: '#/components/schemas/VenueManagerPost'
|
|
77552
|
+
application/*+json:
|
|
77553
|
+
schema:
|
|
77554
|
+
type: array
|
|
77555
|
+
items:
|
|
77556
|
+
$ref: '#/components/schemas/VenueManagerPost'
|
|
77557
|
+
responses:
|
|
77558
|
+
'200':
|
|
77559
|
+
description: Success
|
|
77560
|
+
'400':
|
|
77561
|
+
description: Bad Request
|
|
77562
|
+
content:
|
|
77563
|
+
text/plain:
|
|
77564
|
+
schema:
|
|
77565
|
+
$ref: '#/components/schemas/ReachError'
|
|
77566
|
+
application/json:
|
|
77567
|
+
schema:
|
|
77568
|
+
$ref: '#/components/schemas/ReachError'
|
|
77569
|
+
text/json:
|
|
77570
|
+
schema:
|
|
77571
|
+
$ref: '#/components/schemas/ReachError'
|
|
77572
|
+
'500':
|
|
77573
|
+
description: Server Error
|
|
77574
|
+
content:
|
|
77575
|
+
text/plain:
|
|
77576
|
+
schema:
|
|
77577
|
+
$ref: '#/components/schemas/ReachError'
|
|
77578
|
+
application/json:
|
|
77579
|
+
schema:
|
|
77580
|
+
$ref: '#/components/schemas/ReachError'
|
|
77581
|
+
text/json:
|
|
77582
|
+
schema:
|
|
77583
|
+
$ref: '#/components/schemas/ReachError'
|
|
77584
|
+
'422':
|
|
77585
|
+
description: Client Error
|
|
77586
|
+
content:
|
|
77587
|
+
text/plain:
|
|
77588
|
+
schema:
|
|
77589
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
77590
|
+
application/json:
|
|
77591
|
+
schema:
|
|
77592
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
77593
|
+
text/json:
|
|
77594
|
+
schema:
|
|
77595
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
77399
77596
|
'/api/venue-managers/{id}':
|
|
77400
77597
|
get:
|
|
77401
77598
|
tags:
|
|
@@ -132,6 +132,7 @@ export class CourseSessionsService {
|
|
|
132
132
|
endDateTimeGte,
|
|
133
133
|
futureOnly,
|
|
134
134
|
includeVenue,
|
|
135
|
+
excludeArchived,
|
|
135
136
|
pageNumber,
|
|
136
137
|
take,
|
|
137
138
|
limitListRequests,
|
|
@@ -195,6 +196,10 @@ export class CourseSessionsService {
|
|
|
195
196
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
196
197
|
*/
|
|
197
198
|
includeVenue?: boolean;
|
|
199
|
+
/**
|
|
200
|
+
* Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
|
|
201
|
+
*/
|
|
202
|
+
excludeArchived?: boolean;
|
|
198
203
|
/**
|
|
199
204
|
* Gets or sets the page number for paged queries.
|
|
200
205
|
*/
|
|
@@ -253,6 +258,7 @@ export class CourseSessionsService {
|
|
|
253
258
|
EndDateTimeGTE: endDateTimeGte,
|
|
254
259
|
FutureOnly: futureOnly,
|
|
255
260
|
IncludeVenue: includeVenue,
|
|
261
|
+
ExcludeArchived: excludeArchived,
|
|
256
262
|
PageNumber: pageNumber,
|
|
257
263
|
Take: take,
|
|
258
264
|
LimitListRequests: limitListRequests,
|
|
@@ -291,6 +297,7 @@ export class CourseSessionsService {
|
|
|
291
297
|
endDateTimeGte,
|
|
292
298
|
futureOnly,
|
|
293
299
|
includeVenue,
|
|
300
|
+
excludeArchived,
|
|
294
301
|
pageNumber,
|
|
295
302
|
take,
|
|
296
303
|
limitListRequests,
|
|
@@ -354,6 +361,10 @@ export class CourseSessionsService {
|
|
|
354
361
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
355
362
|
*/
|
|
356
363
|
includeVenue?: boolean;
|
|
364
|
+
/**
|
|
365
|
+
* Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
|
|
366
|
+
*/
|
|
367
|
+
excludeArchived?: boolean;
|
|
357
368
|
/**
|
|
358
369
|
* Gets or sets the page number for paged queries.
|
|
359
370
|
*/
|
|
@@ -412,6 +423,7 @@ export class CourseSessionsService {
|
|
|
412
423
|
EndDateTimeGTE: endDateTimeGte,
|
|
413
424
|
FutureOnly: futureOnly,
|
|
414
425
|
IncludeVenue: includeVenue,
|
|
426
|
+
ExcludeArchived: excludeArchived,
|
|
415
427
|
PageNumber: pageNumber,
|
|
416
428
|
Take: take,
|
|
417
429
|
LimitListRequests: limitListRequests,
|
|
@@ -476,6 +488,7 @@ export class CourseSessionsService {
|
|
|
476
488
|
endDateTimeGte,
|
|
477
489
|
futureOnly,
|
|
478
490
|
includeVenue,
|
|
491
|
+
excludeArchived,
|
|
479
492
|
pageNumber,
|
|
480
493
|
take,
|
|
481
494
|
limitListRequests,
|
|
@@ -539,6 +552,10 @@ export class CourseSessionsService {
|
|
|
539
552
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
540
553
|
*/
|
|
541
554
|
includeVenue?: boolean;
|
|
555
|
+
/**
|
|
556
|
+
* Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
|
|
557
|
+
*/
|
|
558
|
+
excludeArchived?: boolean;
|
|
542
559
|
/**
|
|
543
560
|
* Gets or sets the page number for paged queries.
|
|
544
561
|
*/
|
|
@@ -597,6 +614,7 @@ export class CourseSessionsService {
|
|
|
597
614
|
EndDateTimeGTE: endDateTimeGte,
|
|
598
615
|
FutureOnly: futureOnly,
|
|
599
616
|
IncludeVenue: includeVenue,
|
|
617
|
+
ExcludeArchived: excludeArchived,
|
|
600
618
|
PageNumber: pageNumber,
|
|
601
619
|
Take: take,
|
|
602
620
|
LimitListRequests: limitListRequests,
|
|
@@ -635,6 +653,7 @@ export class CourseSessionsService {
|
|
|
635
653
|
endDateTimeGte,
|
|
636
654
|
futureOnly,
|
|
637
655
|
includeVenue,
|
|
656
|
+
excludeArchived,
|
|
638
657
|
pageNumber,
|
|
639
658
|
take,
|
|
640
659
|
limitListRequests,
|
|
@@ -698,6 +717,10 @@ export class CourseSessionsService {
|
|
|
698
717
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
699
718
|
*/
|
|
700
719
|
includeVenue?: boolean;
|
|
720
|
+
/**
|
|
721
|
+
* Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
|
|
722
|
+
*/
|
|
723
|
+
excludeArchived?: boolean;
|
|
701
724
|
/**
|
|
702
725
|
* Gets or sets the page number for paged queries.
|
|
703
726
|
*/
|
|
@@ -756,6 +779,7 @@ export class CourseSessionsService {
|
|
|
756
779
|
EndDateTimeGTE: endDateTimeGte,
|
|
757
780
|
FutureOnly: futureOnly,
|
|
758
781
|
IncludeVenue: includeVenue,
|
|
782
|
+
ExcludeArchived: excludeArchived,
|
|
759
783
|
PageNumber: pageNumber,
|
|
760
784
|
Take: take,
|
|
761
785
|
LimitListRequests: limitListRequests,
|
|
@@ -103,6 +103,7 @@ export class PublicScheduledSessionsService {
|
|
|
103
103
|
futureOnly,
|
|
104
104
|
includeVenue,
|
|
105
105
|
hasAvailability,
|
|
106
|
+
excludeArchived,
|
|
106
107
|
orderFirstNameContains,
|
|
107
108
|
orderLastNameContains,
|
|
108
109
|
sortBy,
|
|
@@ -187,6 +188,10 @@ export class PublicScheduledSessionsService {
|
|
|
187
188
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
188
189
|
*/
|
|
189
190
|
hasAvailability?: boolean;
|
|
191
|
+
/**
|
|
192
|
+
* Gets or sets a value indicating whether to include scheduled sessions whose sessions have been archived.
|
|
193
|
+
*/
|
|
194
|
+
excludeArchived?: boolean;
|
|
190
195
|
/**
|
|
191
196
|
* Gets or sets a value indicating whether the scheduled session has an order where the orders first name contains the given value.
|
|
192
197
|
*/
|
|
@@ -268,6 +273,7 @@ export class PublicScheduledSessionsService {
|
|
|
268
273
|
FutureOnly: futureOnly,
|
|
269
274
|
IncludeVenue: includeVenue,
|
|
270
275
|
HasAvailability: hasAvailability,
|
|
276
|
+
ExcludeArchived: excludeArchived,
|
|
271
277
|
OrderFirstNameContains: orderFirstNameContains,
|
|
272
278
|
OrderLastNameContains: orderLastNameContains,
|
|
273
279
|
SortBy: sortBy,
|
|
@@ -349,6 +355,7 @@ export class PublicScheduledSessionsService {
|
|
|
349
355
|
futureOnly,
|
|
350
356
|
includeVenue,
|
|
351
357
|
hasAvailability,
|
|
358
|
+
excludeArchived,
|
|
352
359
|
orderFirstNameContains,
|
|
353
360
|
orderLastNameContains,
|
|
354
361
|
sortBy,
|
|
@@ -436,6 +443,10 @@ export class PublicScheduledSessionsService {
|
|
|
436
443
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
437
444
|
*/
|
|
438
445
|
hasAvailability?: boolean;
|
|
446
|
+
/**
|
|
447
|
+
* Gets or sets a value indicating whether to include scheduled sessions whose sessions have been archived.
|
|
448
|
+
*/
|
|
449
|
+
excludeArchived?: boolean;
|
|
439
450
|
/**
|
|
440
451
|
* Gets or sets a value indicating whether the scheduled session has an order where the orders first name contains the given value.
|
|
441
452
|
*/
|
|
@@ -517,6 +528,7 @@ export class PublicScheduledSessionsService {
|
|
|
517
528
|
FutureOnly: futureOnly,
|
|
518
529
|
IncludeVenue: includeVenue,
|
|
519
530
|
HasAvailability: hasAvailability,
|
|
531
|
+
ExcludeArchived: excludeArchived,
|
|
520
532
|
OrderFirstNameContains: orderFirstNameContains,
|
|
521
533
|
OrderLastNameContains: orderLastNameContains,
|
|
522
534
|
SortBy: sortBy,
|
|
@@ -289,6 +289,7 @@ export class PublicSessionsService {
|
|
|
289
289
|
futureOnly,
|
|
290
290
|
includeVenue,
|
|
291
291
|
hasAvailability,
|
|
292
|
+
excludeArchived,
|
|
292
293
|
orderFirstNameContains,
|
|
293
294
|
orderLastNameContains,
|
|
294
295
|
sortBy,
|
|
@@ -376,6 +377,10 @@ export class PublicSessionsService {
|
|
|
376
377
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
377
378
|
*/
|
|
378
379
|
hasAvailability?: boolean;
|
|
380
|
+
/**
|
|
381
|
+
* Gets or sets a value indicating whether to include scheduled sessions whose sessions have been archived.
|
|
382
|
+
*/
|
|
383
|
+
excludeArchived?: boolean;
|
|
379
384
|
/**
|
|
380
385
|
* Gets or sets a value indicating whether the scheduled session has an order where the orders first name contains the given value.
|
|
381
386
|
*/
|
|
@@ -457,6 +462,7 @@ export class PublicSessionsService {
|
|
|
457
462
|
FutureOnly: futureOnly,
|
|
458
463
|
IncludeVenue: includeVenue,
|
|
459
464
|
HasAvailability: hasAvailability,
|
|
465
|
+
ExcludeArchived: excludeArchived,
|
|
460
466
|
OrderFirstNameContains: orderFirstNameContains,
|
|
461
467
|
OrderLastNameContains: orderLastNameContains,
|
|
462
468
|
SortBy: sortBy,
|
|
@@ -312,6 +312,7 @@ export class ScheduledSessionsService {
|
|
|
312
312
|
futureOnly,
|
|
313
313
|
includeVenue,
|
|
314
314
|
hasAvailability,
|
|
315
|
+
excludeArchived,
|
|
315
316
|
orderFirstNameContains,
|
|
316
317
|
orderLastNameContains,
|
|
317
318
|
sortBy,
|
|
@@ -395,6 +396,10 @@ export class ScheduledSessionsService {
|
|
|
395
396
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
396
397
|
*/
|
|
397
398
|
hasAvailability?: boolean;
|
|
399
|
+
/**
|
|
400
|
+
* Gets or sets a value indicating whether to include scheduled sessions whose sessions have been archived.
|
|
401
|
+
*/
|
|
402
|
+
excludeArchived?: boolean;
|
|
398
403
|
/**
|
|
399
404
|
* Gets or sets a value indicating whether the scheduled session has an order where the orders first name contains the given value.
|
|
400
405
|
*/
|
|
@@ -473,6 +478,7 @@ export class ScheduledSessionsService {
|
|
|
473
478
|
FutureOnly: futureOnly,
|
|
474
479
|
IncludeVenue: includeVenue,
|
|
475
480
|
HasAvailability: hasAvailability,
|
|
481
|
+
ExcludeArchived: excludeArchived,
|
|
476
482
|
OrderFirstNameContains: orderFirstNameContains,
|
|
477
483
|
OrderLastNameContains: orderLastNameContains,
|
|
478
484
|
SortBy: sortBy,
|
|
@@ -519,6 +525,7 @@ export class ScheduledSessionsService {
|
|
|
519
525
|
futureOnly,
|
|
520
526
|
includeVenue,
|
|
521
527
|
hasAvailability,
|
|
528
|
+
excludeArchived,
|
|
522
529
|
orderFirstNameContains,
|
|
523
530
|
orderLastNameContains,
|
|
524
531
|
sortBy,
|
|
@@ -602,6 +609,10 @@ export class ScheduledSessionsService {
|
|
|
602
609
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
603
610
|
*/
|
|
604
611
|
hasAvailability?: boolean;
|
|
612
|
+
/**
|
|
613
|
+
* Gets or sets a value indicating whether to include scheduled sessions whose sessions have been archived.
|
|
614
|
+
*/
|
|
615
|
+
excludeArchived?: boolean;
|
|
605
616
|
/**
|
|
606
617
|
* Gets or sets a value indicating whether the scheduled session has an order where the orders first name contains the given value.
|
|
607
618
|
*/
|
|
@@ -680,6 +691,7 @@ export class ScheduledSessionsService {
|
|
|
680
691
|
FutureOnly: futureOnly,
|
|
681
692
|
IncludeVenue: includeVenue,
|
|
682
693
|
HasAvailability: hasAvailability,
|
|
694
|
+
ExcludeArchived: excludeArchived,
|
|
683
695
|
OrderFirstNameContains: orderFirstNameContains,
|
|
684
696
|
OrderLastNameContains: orderLastNameContains,
|
|
685
697
|
SortBy: sortBy,
|
|
@@ -752,6 +764,7 @@ export class ScheduledSessionsService {
|
|
|
752
764
|
futureOnly,
|
|
753
765
|
includeVenue,
|
|
754
766
|
hasAvailability,
|
|
767
|
+
excludeArchived,
|
|
755
768
|
orderFirstNameContains,
|
|
756
769
|
orderLastNameContains,
|
|
757
770
|
sortBy,
|
|
@@ -835,6 +848,10 @@ export class ScheduledSessionsService {
|
|
|
835
848
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
836
849
|
*/
|
|
837
850
|
hasAvailability?: boolean;
|
|
851
|
+
/**
|
|
852
|
+
* Gets or sets a value indicating whether to include scheduled sessions whose sessions have been archived.
|
|
853
|
+
*/
|
|
854
|
+
excludeArchived?: boolean;
|
|
838
855
|
/**
|
|
839
856
|
* Gets or sets a value indicating whether the scheduled session has an order where the orders first name contains the given value.
|
|
840
857
|
*/
|
|
@@ -913,6 +930,7 @@ export class ScheduledSessionsService {
|
|
|
913
930
|
FutureOnly: futureOnly,
|
|
914
931
|
IncludeVenue: includeVenue,
|
|
915
932
|
HasAvailability: hasAvailability,
|
|
933
|
+
ExcludeArchived: excludeArchived,
|
|
916
934
|
OrderFirstNameContains: orderFirstNameContains,
|
|
917
935
|
OrderLastNameContains: orderLastNameContains,
|
|
918
936
|
SortBy: sortBy,
|
|
@@ -959,6 +977,7 @@ export class ScheduledSessionsService {
|
|
|
959
977
|
futureOnly,
|
|
960
978
|
includeVenue,
|
|
961
979
|
hasAvailability,
|
|
980
|
+
excludeArchived,
|
|
962
981
|
orderFirstNameContains,
|
|
963
982
|
orderLastNameContains,
|
|
964
983
|
sortBy,
|
|
@@ -1042,6 +1061,10 @@ export class ScheduledSessionsService {
|
|
|
1042
1061
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
1043
1062
|
*/
|
|
1044
1063
|
hasAvailability?: boolean;
|
|
1064
|
+
/**
|
|
1065
|
+
* Gets or sets a value indicating whether to include scheduled sessions whose sessions have been archived.
|
|
1066
|
+
*/
|
|
1067
|
+
excludeArchived?: boolean;
|
|
1045
1068
|
/**
|
|
1046
1069
|
* Gets or sets a value indicating whether the scheduled session has an order where the orders first name contains the given value.
|
|
1047
1070
|
*/
|
|
@@ -1120,6 +1143,7 @@ export class ScheduledSessionsService {
|
|
|
1120
1143
|
FutureOnly: futureOnly,
|
|
1121
1144
|
IncludeVenue: includeVenue,
|
|
1122
1145
|
HasAvailability: hasAvailability,
|
|
1146
|
+
ExcludeArchived: excludeArchived,
|
|
1123
1147
|
OrderFirstNameContains: orderFirstNameContains,
|
|
1124
1148
|
OrderLastNameContains: orderLastNameContains,
|
|
1125
1149
|
SortBy: sortBy,
|
|
@@ -14,6 +14,74 @@ import type { BaseHttpRequest } from '../core/BaseHttpRequest';
|
|
|
14
14
|
export class VenueManagersService {
|
|
15
15
|
constructor(public readonly httpRequest: BaseHttpRequest) {}
|
|
16
16
|
|
|
17
|
+
/**
|
|
18
|
+
* Updates the assigned venues for the user />.
|
|
19
|
+
* @returns any Success
|
|
20
|
+
* @throws ApiError
|
|
21
|
+
*/
|
|
22
|
+
public updateUserVenueAssignments({
|
|
23
|
+
userId,
|
|
24
|
+
requestBody,
|
|
25
|
+
}: {
|
|
26
|
+
/**
|
|
27
|
+
* The user Id.
|
|
28
|
+
*/
|
|
29
|
+
userId: string;
|
|
30
|
+
/**
|
|
31
|
+
* The post model.
|
|
32
|
+
*/
|
|
33
|
+
requestBody?: Array<VenueManagerPost>;
|
|
34
|
+
}): CancelablePromise<any> {
|
|
35
|
+
return this.httpRequest.request({
|
|
36
|
+
method: 'PATCH',
|
|
37
|
+
url: '/api/venue-managers/{userId}/update-venues',
|
|
38
|
+
path: {
|
|
39
|
+
userId: userId,
|
|
40
|
+
},
|
|
41
|
+
body: requestBody,
|
|
42
|
+
mediaType: 'application/json',
|
|
43
|
+
errors: {
|
|
44
|
+
400: `Bad Request`,
|
|
45
|
+
422: `Client Error`,
|
|
46
|
+
500: `Server Error`,
|
|
47
|
+
},
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Updates the assigned users for the venue />.
|
|
53
|
+
* @returns any Success
|
|
54
|
+
* @throws ApiError
|
|
55
|
+
*/
|
|
56
|
+
public updateVenueUserAssignments({
|
|
57
|
+
venueId,
|
|
58
|
+
requestBody,
|
|
59
|
+
}: {
|
|
60
|
+
/**
|
|
61
|
+
* The venue Id.
|
|
62
|
+
*/
|
|
63
|
+
venueId: string;
|
|
64
|
+
/**
|
|
65
|
+
* The post model.
|
|
66
|
+
*/
|
|
67
|
+
requestBody?: Array<VenueManagerPost>;
|
|
68
|
+
}): CancelablePromise<any> {
|
|
69
|
+
return this.httpRequest.request({
|
|
70
|
+
method: 'PATCH',
|
|
71
|
+
url: '/api/venue-managers/{venueId}/update-users',
|
|
72
|
+
path: {
|
|
73
|
+
venueId: venueId,
|
|
74
|
+
},
|
|
75
|
+
body: requestBody,
|
|
76
|
+
mediaType: 'application/json',
|
|
77
|
+
errors: {
|
|
78
|
+
400: `Bad Request`,
|
|
79
|
+
422: `Client Error`,
|
|
80
|
+
500: `Server Error`,
|
|
81
|
+
},
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
|
|
17
85
|
/**
|
|
18
86
|
* Gets the resource by its Id.
|
|
19
87
|
* @returns VenueManager Success
|