reach-api-sdk 1.0.202 → 1.0.203
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/reach-sdk.d.ts +1031 -230
- package/dist/reach-sdk.js +699 -1
- package/package.json +1 -1
- package/src/apiClient.ts +6 -0
- package/src/definition/swagger.yaml +3074 -804
- package/src/index.ts +8 -0
- package/src/models/CourseEmailWaitlistPatch.ts +22 -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/TemplateOffer.ts +16 -0
- package/src/models/UserPermission.ts +4 -0
- package/src/models/UserPermissionPatch.ts +4 -0
- package/src/models/Venue.ts +4 -0
- package/src/models/VenueType.ts +42 -0
- package/src/models/VenueTypePage.ts +12 -0
- package/src/models/VenueTypePatch.ts +26 -0
- package/src/models/VenueTypePost.ts +22 -0
- package/src/services/CoursesService.ts +35 -0
- package/src/services/GenericActivityService.ts +36 -0
- package/src/services/PublicGenericActivityService.ts +24 -0
- package/src/services/PublicVenueTypesService.ts +401 -0
- package/src/services/PublicVenuesService.ts +18 -0
- package/src/services/ScheduledSessionsService.ts +35 -0
- package/src/services/VenueTypeService.ts +662 -0
- package/src/services/VenuesService.ts +30 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -4601,6 +4601,10 @@ type Venue = {
|
|
|
4601
4601
|
* Gets a formatted label representation for the activity types available at the venue.
|
|
4602
4602
|
*/
|
|
4603
4603
|
readonly activityTypesAvailableFormatted?: string | null;
|
|
4604
|
+
/**
|
|
4605
|
+
* Gets or sets the venue type id.
|
|
4606
|
+
*/
|
|
4607
|
+
venueTypeId?: string | null;
|
|
4604
4608
|
/**
|
|
4605
4609
|
* Gets or sets the user that the venue is assigned to.
|
|
4606
4610
|
*/
|
|
@@ -8209,6 +8213,24 @@ type CourseEmailAttendeesPatch = {
|
|
|
8209
8213
|
message?: string | null;
|
|
8210
8214
|
};
|
|
8211
8215
|
|
|
8216
|
+
/**
|
|
8217
|
+
* Post model for email course waitlist.
|
|
8218
|
+
*/
|
|
8219
|
+
type CourseEmailWaitlistPatch = {
|
|
8220
|
+
/**
|
|
8221
|
+
* Gets or sets the tenant Id.
|
|
8222
|
+
*/
|
|
8223
|
+
tenantId: string;
|
|
8224
|
+
/**
|
|
8225
|
+
* Gets or sets the Id.
|
|
8226
|
+
*/
|
|
8227
|
+
id: string;
|
|
8228
|
+
/**
|
|
8229
|
+
* Gets or sets the message body.
|
|
8230
|
+
*/
|
|
8231
|
+
message?: string | null;
|
|
8232
|
+
};
|
|
8233
|
+
|
|
8212
8234
|
type CoursePage = {
|
|
8213
8235
|
pagination: Pagination;
|
|
8214
8236
|
readonly items: Array<Course>;
|
|
@@ -8522,6 +8544,21 @@ declare class CoursesService {
|
|
|
8522
8544
|
*/
|
|
8523
8545
|
requestBody?: CourseEmailAttendeesPatch;
|
|
8524
8546
|
}): CancelablePromise<ScheduledSession>;
|
|
8547
|
+
/**
|
|
8548
|
+
* Emails all on waitlist for the opportunity />.
|
|
8549
|
+
* @returns ScheduledSession OK
|
|
8550
|
+
* @throws ApiError
|
|
8551
|
+
*/
|
|
8552
|
+
contactWaitlist({ courseId, requestBody, }: {
|
|
8553
|
+
/**
|
|
8554
|
+
* The course Id.
|
|
8555
|
+
*/
|
|
8556
|
+
courseId: string;
|
|
8557
|
+
/**
|
|
8558
|
+
* The patch model.
|
|
8559
|
+
*/
|
|
8560
|
+
requestBody?: CourseEmailWaitlistPatch;
|
|
8561
|
+
}): CancelablePromise<ScheduledSession>;
|
|
8525
8562
|
/**
|
|
8526
8563
|
* Sends the post course completion email />.
|
|
8527
8564
|
* @returns any OK
|
|
@@ -16007,7 +16044,7 @@ declare class GenericActivityService {
|
|
|
16007
16044
|
* @returns GenericActivity OK
|
|
16008
16045
|
* @throws ApiError
|
|
16009
16046
|
*/
|
|
16010
|
-
getUpcoming({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16047
|
+
getUpcoming({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16011
16048
|
/**
|
|
16012
16049
|
* Gets or sets the wildcard for use in a query search.
|
|
16013
16050
|
*/
|
|
@@ -16140,6 +16177,10 @@ declare class GenericActivityService {
|
|
|
16140
16177
|
* Gets or sets AmenityId.
|
|
16141
16178
|
*/
|
|
16142
16179
|
amenity?: Array<number>;
|
|
16180
|
+
/**
|
|
16181
|
+
* Gets or sets a list of venue type ids.
|
|
16182
|
+
*/
|
|
16183
|
+
venueTypeIds?: Array<string>;
|
|
16143
16184
|
/**
|
|
16144
16185
|
* Gets or sets the Programme ids.
|
|
16145
16186
|
*/
|
|
@@ -16205,7 +16246,7 @@ declare class GenericActivityService {
|
|
|
16205
16246
|
* @returns boolean OK
|
|
16206
16247
|
* @throws ApiError
|
|
16207
16248
|
*/
|
|
16208
|
-
exists({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16249
|
+
exists({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16209
16250
|
/**
|
|
16210
16251
|
* Gets or sets the wildcard for use in a query search.
|
|
16211
16252
|
*/
|
|
@@ -16338,6 +16379,10 @@ declare class GenericActivityService {
|
|
|
16338
16379
|
* Gets or sets AmenityId.
|
|
16339
16380
|
*/
|
|
16340
16381
|
amenity?: Array<number>;
|
|
16382
|
+
/**
|
|
16383
|
+
* Gets or sets a list of venue type ids.
|
|
16384
|
+
*/
|
|
16385
|
+
venueTypeIds?: Array<string>;
|
|
16341
16386
|
/**
|
|
16342
16387
|
* Gets or sets the Programme ids.
|
|
16343
16388
|
*/
|
|
@@ -16392,7 +16437,7 @@ declare class GenericActivityService {
|
|
|
16392
16437
|
* @returns number OK
|
|
16393
16438
|
* @throws ApiError
|
|
16394
16439
|
*/
|
|
16395
|
-
count({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16440
|
+
count({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16396
16441
|
/**
|
|
16397
16442
|
* Gets or sets the wildcard for use in a query search.
|
|
16398
16443
|
*/
|
|
@@ -16525,6 +16570,10 @@ declare class GenericActivityService {
|
|
|
16525
16570
|
* Gets or sets AmenityId.
|
|
16526
16571
|
*/
|
|
16527
16572
|
amenity?: Array<number>;
|
|
16573
|
+
/**
|
|
16574
|
+
* Gets or sets a list of venue type ids.
|
|
16575
|
+
*/
|
|
16576
|
+
venueTypeIds?: Array<string>;
|
|
16528
16577
|
/**
|
|
16529
16578
|
* Gets or sets the Programme ids.
|
|
16530
16579
|
*/
|
|
@@ -16579,7 +16628,7 @@ declare class GenericActivityService {
|
|
|
16579
16628
|
* @returns GenericActivityPage OK
|
|
16580
16629
|
* @throws ApiError
|
|
16581
16630
|
*/
|
|
16582
|
-
getPage({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16631
|
+
getPage({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16583
16632
|
/**
|
|
16584
16633
|
* Gets or sets the wildcard for use in a query search.
|
|
16585
16634
|
*/
|
|
@@ -16712,6 +16761,10 @@ declare class GenericActivityService {
|
|
|
16712
16761
|
* Gets or sets AmenityId.
|
|
16713
16762
|
*/
|
|
16714
16763
|
amenity?: Array<number>;
|
|
16764
|
+
/**
|
|
16765
|
+
* Gets or sets a list of venue type ids.
|
|
16766
|
+
*/
|
|
16767
|
+
venueTypeIds?: Array<string>;
|
|
16715
16768
|
/**
|
|
16716
16769
|
* Gets or sets the Programme ids.
|
|
16717
16770
|
*/
|
|
@@ -16766,7 +16819,7 @@ declare class GenericActivityService {
|
|
|
16766
16819
|
* @returns GenericActivity OK
|
|
16767
16820
|
* @throws ApiError
|
|
16768
16821
|
*/
|
|
16769
|
-
getListWithoutReferences({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16822
|
+
getListWithoutReferences({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16770
16823
|
/**
|
|
16771
16824
|
* Gets or sets the wildcard for use in a query search.
|
|
16772
16825
|
*/
|
|
@@ -16899,6 +16952,10 @@ declare class GenericActivityService {
|
|
|
16899
16952
|
* Gets or sets AmenityId.
|
|
16900
16953
|
*/
|
|
16901
16954
|
amenity?: Array<number>;
|
|
16955
|
+
/**
|
|
16956
|
+
* Gets or sets a list of venue type ids.
|
|
16957
|
+
*/
|
|
16958
|
+
venueTypeIds?: Array<string>;
|
|
16902
16959
|
/**
|
|
16903
16960
|
* Gets or sets the Programme ids.
|
|
16904
16961
|
*/
|
|
@@ -16953,7 +17010,7 @@ declare class GenericActivityService {
|
|
|
16953
17010
|
* @returns GenericActivity OK
|
|
16954
17011
|
* @throws ApiError
|
|
16955
17012
|
*/
|
|
16956
|
-
getListIdName({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17013
|
+
getListIdName({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16957
17014
|
/**
|
|
16958
17015
|
* Gets or sets the wildcard for use in a query search.
|
|
16959
17016
|
*/
|
|
@@ -17086,6 +17143,10 @@ declare class GenericActivityService {
|
|
|
17086
17143
|
* Gets or sets AmenityId.
|
|
17087
17144
|
*/
|
|
17088
17145
|
amenity?: Array<number>;
|
|
17146
|
+
/**
|
|
17147
|
+
* Gets or sets a list of venue type ids.
|
|
17148
|
+
*/
|
|
17149
|
+
venueTypeIds?: Array<string>;
|
|
17089
17150
|
/**
|
|
17090
17151
|
* Gets or sets the Programme ids.
|
|
17091
17152
|
*/
|
|
@@ -28152,6 +28213,10 @@ type Permission = {
|
|
|
28152
28213
|
* Gets or sets a value indicating whether a venue manager has send emails permissions.
|
|
28153
28214
|
*/
|
|
28154
28215
|
venueManagerSendEmails?: boolean;
|
|
28216
|
+
/**
|
|
28217
|
+
* Gets or sets a value indicating whether a venue manager has manage opportunity permissions.
|
|
28218
|
+
*/
|
|
28219
|
+
venueManagerManageOpportunity?: boolean;
|
|
28155
28220
|
};
|
|
28156
28221
|
|
|
28157
28222
|
type PermissionPage = {
|
|
@@ -28235,6 +28300,10 @@ type PermissionPatch = {
|
|
|
28235
28300
|
* Gets or sets a value indicating whether a venue manager has send emails permissions.
|
|
28236
28301
|
*/
|
|
28237
28302
|
venueManagerSendEmails?: boolean;
|
|
28303
|
+
/**
|
|
28304
|
+
* Gets or sets a value indicating whether a venue manager has manage opportunity permissions.
|
|
28305
|
+
*/
|
|
28306
|
+
venueManagerManageOpportunity?: boolean;
|
|
28238
28307
|
};
|
|
28239
28308
|
|
|
28240
28309
|
/**
|
|
@@ -32236,7 +32305,7 @@ declare class PublicGenericActivityService {
|
|
|
32236
32305
|
* @returns GenericActivityPage OK
|
|
32237
32306
|
* @throws ApiError
|
|
32238
32307
|
*/
|
|
32239
|
-
getPage({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32308
|
+
getPage({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32240
32309
|
xTenantSubdomain?: string;
|
|
32241
32310
|
/**
|
|
32242
32311
|
* Gets or sets the wildcard for use in a query search.
|
|
@@ -32370,6 +32439,10 @@ declare class PublicGenericActivityService {
|
|
|
32370
32439
|
* Gets or sets AmenityId.
|
|
32371
32440
|
*/
|
|
32372
32441
|
amenity?: Array<number>;
|
|
32442
|
+
/**
|
|
32443
|
+
* Gets or sets a list of venue type ids.
|
|
32444
|
+
*/
|
|
32445
|
+
venueTypeIds?: Array<string>;
|
|
32373
32446
|
/**
|
|
32374
32447
|
* Gets or sets the Programme ids.
|
|
32375
32448
|
*/
|
|
@@ -32424,7 +32497,7 @@ declare class PublicGenericActivityService {
|
|
|
32424
32497
|
* @returns GenericActivityPage OK
|
|
32425
32498
|
* @throws ApiError
|
|
32426
32499
|
*/
|
|
32427
|
-
getPage1({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32500
|
+
getPage1({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32428
32501
|
/**
|
|
32429
32502
|
* Gets or sets the wildcard for use in a query search.
|
|
32430
32503
|
*/
|
|
@@ -32557,6 +32630,10 @@ declare class PublicGenericActivityService {
|
|
|
32557
32630
|
* Gets or sets AmenityId.
|
|
32558
32631
|
*/
|
|
32559
32632
|
amenity?: Array<number>;
|
|
32633
|
+
/**
|
|
32634
|
+
* Gets or sets a list of venue type ids.
|
|
32635
|
+
*/
|
|
32636
|
+
venueTypeIds?: Array<string>;
|
|
32560
32637
|
/**
|
|
32561
32638
|
* Gets or sets the Programme ids.
|
|
32562
32639
|
*/
|
|
@@ -32611,7 +32688,7 @@ declare class PublicGenericActivityService {
|
|
|
32611
32688
|
* @returns GenericActivity OK
|
|
32612
32689
|
* @throws ApiError
|
|
32613
32690
|
*/
|
|
32614
|
-
getUpcoming({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32691
|
+
getUpcoming({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32615
32692
|
/**
|
|
32616
32693
|
* The tenants subdomain.
|
|
32617
32694
|
*/
|
|
@@ -32749,219 +32826,227 @@ declare class PublicGenericActivityService {
|
|
|
32749
32826
|
*/
|
|
32750
32827
|
amenity?: Array<number>;
|
|
32751
32828
|
/**
|
|
32752
|
-
* Gets or sets
|
|
32753
|
-
*/
|
|
32754
|
-
programmeIds?: Array<string>;
|
|
32755
|
-
/**
|
|
32756
|
-
* Gets or sets the page number for paged queries.
|
|
32757
|
-
*/
|
|
32758
|
-
pageNumber?: number;
|
|
32759
|
-
/**
|
|
32760
|
-
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
32761
|
-
*/
|
|
32762
|
-
take?: number;
|
|
32763
|
-
/**
|
|
32764
|
-
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
32829
|
+
* Gets or sets a list of venue type ids.
|
|
32765
32830
|
*/
|
|
32766
|
-
|
|
32767
|
-
/**
|
|
32768
|
-
* Gets or sets
|
|
32769
|
-
*/
|
|
32770
|
-
|
|
32771
|
-
/**
|
|
32772
|
-
* Gets or sets the
|
|
32773
|
-
*/
|
|
32774
|
-
|
|
32775
|
-
/**
|
|
32776
|
-
* Gets or sets the
|
|
32777
|
-
*/
|
|
32778
|
-
|
|
32779
|
-
/**
|
|
32780
|
-
* Gets or sets
|
|
32781
|
-
*/
|
|
32782
|
-
|
|
32783
|
-
/**
|
|
32784
|
-
* Gets or sets the
|
|
32785
|
-
*/
|
|
32786
|
-
|
|
32787
|
-
/**
|
|
32788
|
-
* Gets or sets the
|
|
32789
|
-
*/
|
|
32790
|
-
|
|
32791
|
-
/**
|
|
32792
|
-
* Gets or sets the
|
|
32793
|
-
*/
|
|
32794
|
-
|
|
32795
|
-
/**
|
|
32796
|
-
* Gets or sets the
|
|
32797
|
-
*/
|
|
32798
|
-
|
|
32799
|
-
|
|
32800
|
-
|
|
32801
|
-
|
|
32802
|
-
|
|
32803
|
-
|
|
32804
|
-
|
|
32805
|
-
|
|
32806
|
-
|
|
32807
|
-
|
|
32808
|
-
|
|
32809
|
-
|
|
32810
|
-
|
|
32811
|
-
|
|
32812
|
-
|
|
32813
|
-
|
|
32814
|
-
|
|
32815
|
-
|
|
32816
|
-
|
|
32817
|
-
|
|
32818
|
-
|
|
32819
|
-
|
|
32820
|
-
|
|
32821
|
-
|
|
32822
|
-
|
|
32823
|
-
|
|
32824
|
-
|
|
32825
|
-
|
|
32826
|
-
|
|
32827
|
-
|
|
32828
|
-
|
|
32829
|
-
|
|
32830
|
-
|
|
32831
|
-
|
|
32832
|
-
|
|
32833
|
-
|
|
32834
|
-
|
|
32835
|
-
|
|
32836
|
-
|
|
32837
|
-
|
|
32838
|
-
|
|
32839
|
-
|
|
32840
|
-
|
|
32841
|
-
|
|
32842
|
-
|
|
32843
|
-
|
|
32844
|
-
|
|
32845
|
-
/**
|
|
32846
|
-
*
|
|
32847
|
-
*/
|
|
32848
|
-
|
|
32849
|
-
/**
|
|
32850
|
-
* Gets or sets
|
|
32851
|
-
*/
|
|
32852
|
-
|
|
32853
|
-
/**
|
|
32854
|
-
* Gets or sets
|
|
32855
|
-
*/
|
|
32856
|
-
|
|
32857
|
-
/**
|
|
32858
|
-
* Gets or sets
|
|
32859
|
-
*/
|
|
32860
|
-
|
|
32861
|
-
/**
|
|
32862
|
-
* Gets or sets the
|
|
32863
|
-
*/
|
|
32864
|
-
|
|
32865
|
-
/**
|
|
32866
|
-
* Gets or sets a value indicating whether
|
|
32867
|
-
*/
|
|
32868
|
-
|
|
32869
|
-
/**
|
|
32870
|
-
* Gets or sets a value indicating whether to
|
|
32871
|
-
*/
|
|
32872
|
-
|
|
32873
|
-
/**
|
|
32874
|
-
* Gets or sets a value indicating
|
|
32875
|
-
*/
|
|
32876
|
-
|
|
32877
|
-
/**
|
|
32878
|
-
* Gets or sets
|
|
32879
|
-
*/
|
|
32880
|
-
|
|
32881
|
-
/**
|
|
32882
|
-
* Gets or sets
|
|
32883
|
-
*/
|
|
32884
|
-
|
|
32885
|
-
/**
|
|
32886
|
-
* Gets or sets
|
|
32887
|
-
*/
|
|
32888
|
-
|
|
32889
|
-
/**
|
|
32890
|
-
* Gets or sets
|
|
32891
|
-
*/
|
|
32892
|
-
|
|
32893
|
-
/**
|
|
32894
|
-
* Gets or sets
|
|
32895
|
-
*/
|
|
32896
|
-
|
|
32897
|
-
/**
|
|
32898
|
-
* Gets or sets
|
|
32899
|
-
*/
|
|
32900
|
-
|
|
32901
|
-
/**
|
|
32902
|
-
* Gets or sets
|
|
32903
|
-
*/
|
|
32904
|
-
|
|
32905
|
-
/**
|
|
32906
|
-
* Gets or sets
|
|
32907
|
-
*/
|
|
32908
|
-
|
|
32909
|
-
/**
|
|
32910
|
-
* Gets or sets
|
|
32911
|
-
*/
|
|
32912
|
-
|
|
32913
|
-
/**
|
|
32914
|
-
* Gets or sets
|
|
32915
|
-
*/
|
|
32916
|
-
|
|
32917
|
-
/**
|
|
32918
|
-
* Gets or sets
|
|
32919
|
-
*/
|
|
32920
|
-
|
|
32921
|
-
/**
|
|
32922
|
-
* Gets or sets
|
|
32923
|
-
*/
|
|
32924
|
-
|
|
32925
|
-
/**
|
|
32926
|
-
* Gets or sets
|
|
32927
|
-
*/
|
|
32928
|
-
|
|
32929
|
-
/**
|
|
32930
|
-
* Gets or sets
|
|
32931
|
-
*/
|
|
32932
|
-
|
|
32933
|
-
/**
|
|
32934
|
-
* Gets or sets
|
|
32935
|
-
*/
|
|
32936
|
-
|
|
32937
|
-
/**
|
|
32938
|
-
* Gets or sets
|
|
32939
|
-
*/
|
|
32940
|
-
|
|
32941
|
-
/**
|
|
32942
|
-
* Gets or sets
|
|
32943
|
-
*/
|
|
32944
|
-
|
|
32945
|
-
/**
|
|
32946
|
-
* Gets or sets
|
|
32947
|
-
*/
|
|
32948
|
-
|
|
32949
|
-
/**
|
|
32950
|
-
* Gets or sets
|
|
32951
|
-
*/
|
|
32952
|
-
|
|
32953
|
-
/**
|
|
32954
|
-
* Gets or sets
|
|
32955
|
-
*/
|
|
32956
|
-
|
|
32957
|
-
/**
|
|
32958
|
-
* Gets or sets
|
|
32959
|
-
*/
|
|
32960
|
-
|
|
32961
|
-
/**
|
|
32962
|
-
* Gets or sets
|
|
32963
|
-
*/
|
|
32964
|
-
|
|
32831
|
+
venueTypeIds?: Array<string>;
|
|
32832
|
+
/**
|
|
32833
|
+
* Gets or sets the Programme ids.
|
|
32834
|
+
*/
|
|
32835
|
+
programmeIds?: Array<string>;
|
|
32836
|
+
/**
|
|
32837
|
+
* Gets or sets the page number for paged queries.
|
|
32838
|
+
*/
|
|
32839
|
+
pageNumber?: number;
|
|
32840
|
+
/**
|
|
32841
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
32842
|
+
*/
|
|
32843
|
+
take?: number;
|
|
32844
|
+
/**
|
|
32845
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
32846
|
+
*/
|
|
32847
|
+
skip?: number;
|
|
32848
|
+
/**
|
|
32849
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
32850
|
+
*/
|
|
32851
|
+
limitListRequests?: boolean;
|
|
32852
|
+
/**
|
|
32853
|
+
* Gets or sets the Tenant Id.
|
|
32854
|
+
*/
|
|
32855
|
+
tenantId?: string;
|
|
32856
|
+
/**
|
|
32857
|
+
* Gets or sets the Modifed By Id.
|
|
32858
|
+
*/
|
|
32859
|
+
modifiedById?: string;
|
|
32860
|
+
/**
|
|
32861
|
+
* Gets or sets the Modifed By Ids.
|
|
32862
|
+
*/
|
|
32863
|
+
modifiedByIds?: Array<string>;
|
|
32864
|
+
/**
|
|
32865
|
+
* Gets or sets the Date Created greater than equal to.
|
|
32866
|
+
*/
|
|
32867
|
+
dateCreatedGte?: string;
|
|
32868
|
+
/**
|
|
32869
|
+
* Gets or sets the Date Created less than equal to.
|
|
32870
|
+
*/
|
|
32871
|
+
dateCreatedLte?: string;
|
|
32872
|
+
/**
|
|
32873
|
+
* Gets or sets the queryable only is live status.
|
|
32874
|
+
*/
|
|
32875
|
+
isLive?: boolean;
|
|
32876
|
+
/**
|
|
32877
|
+
* Gets or sets the sort order direction.
|
|
32878
|
+
*/
|
|
32879
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
32880
|
+
}): CancelablePromise<Array<GenericActivity>>;
|
|
32881
|
+
/**
|
|
32882
|
+
* Retrieves a list of activity facets.
|
|
32883
|
+
* @returns Activity OK
|
|
32884
|
+
* @throws ApiError
|
|
32885
|
+
*/
|
|
32886
|
+
getActivityFacets({ lat, lng, radius, networkId, }: {
|
|
32887
|
+
/**
|
|
32888
|
+
* Gets or sets lat.
|
|
32889
|
+
*/
|
|
32890
|
+
lat?: number;
|
|
32891
|
+
/**
|
|
32892
|
+
* Gets or sets lng.
|
|
32893
|
+
*/
|
|
32894
|
+
lng?: number;
|
|
32895
|
+
/**
|
|
32896
|
+
* Gets or sets id.
|
|
32897
|
+
*/
|
|
32898
|
+
radius?: number;
|
|
32899
|
+
/**
|
|
32900
|
+
* Gets or sets NetworkId.
|
|
32901
|
+
*/
|
|
32902
|
+
networkId?: string;
|
|
32903
|
+
}): CancelablePromise<Array<Activity>>;
|
|
32904
|
+
/**
|
|
32905
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
32906
|
+
* @returns boolean OK
|
|
32907
|
+
* @throws ApiError
|
|
32908
|
+
*/
|
|
32909
|
+
exists({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, _private, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, tenantStatus, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, startDateTimeGte, endDateTimeLte, gender, periodsOfWeek, additionalSupport, amenity, venueTypeIds, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32910
|
+
/**
|
|
32911
|
+
* The tenants subdomain.
|
|
32912
|
+
*/
|
|
32913
|
+
xTenantSubdomain?: string;
|
|
32914
|
+
/**
|
|
32915
|
+
* Gets or sets the wildcard for use in a query search.
|
|
32916
|
+
*/
|
|
32917
|
+
wildcard?: string;
|
|
32918
|
+
/**
|
|
32919
|
+
* Gets or sets the queryable Venue Id.
|
|
32920
|
+
*/
|
|
32921
|
+
venueId?: string;
|
|
32922
|
+
/**
|
|
32923
|
+
* Gets or sets the queryable Provider Id.
|
|
32924
|
+
*/
|
|
32925
|
+
providerId?: string;
|
|
32926
|
+
/**
|
|
32927
|
+
* Gets or sets the queryable Programme Id.
|
|
32928
|
+
*/
|
|
32929
|
+
programmeId?: string;
|
|
32930
|
+
/**
|
|
32931
|
+
* Gets or sets a value indicating whether return online activities.
|
|
32932
|
+
*/
|
|
32933
|
+
online?: boolean;
|
|
32934
|
+
/**
|
|
32935
|
+
* Gets or sets a value indicating whether to include archived activities.
|
|
32936
|
+
*/
|
|
32937
|
+
archived?: boolean;
|
|
32938
|
+
/**
|
|
32939
|
+
* Gets or sets a value indicating whether to include deleted activities.
|
|
32940
|
+
*/
|
|
32941
|
+
deleted?: boolean;
|
|
32942
|
+
/**
|
|
32943
|
+
* Gets or sets the activity type.
|
|
32944
|
+
*/
|
|
32945
|
+
activityType?: ActivityType;
|
|
32946
|
+
/**
|
|
32947
|
+
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
32948
|
+
*/
|
|
32949
|
+
includeNextOpportunity?: boolean;
|
|
32950
|
+
/**
|
|
32951
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
32952
|
+
*/
|
|
32953
|
+
featured?: boolean;
|
|
32954
|
+
/**
|
|
32955
|
+
* Gets or sets a value indicating does session is private or no.
|
|
32956
|
+
*/
|
|
32957
|
+
_private?: boolean;
|
|
32958
|
+
/**
|
|
32959
|
+
* Gets or sets SearchGeoCenter.
|
|
32960
|
+
*/
|
|
32961
|
+
searchGeoCenter?: string;
|
|
32962
|
+
/**
|
|
32963
|
+
* Gets or sets OpenactiveActivityId.
|
|
32964
|
+
*/
|
|
32965
|
+
openactiveActivityId?: string;
|
|
32966
|
+
/**
|
|
32967
|
+
* Gets or sets Activity id.
|
|
32968
|
+
*/
|
|
32969
|
+
activityId?: number;
|
|
32970
|
+
/**
|
|
32971
|
+
* Gets or sets the queryable session Activity ids.
|
|
32972
|
+
*/
|
|
32973
|
+
activityIds?: Array<number>;
|
|
32974
|
+
/**
|
|
32975
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
32976
|
+
*/
|
|
32977
|
+
networkId?: string;
|
|
32978
|
+
/**
|
|
32979
|
+
* Gets or sets a value indicating whether the results should return a specific tenant status.
|
|
32980
|
+
*/
|
|
32981
|
+
tenantStatus?: TenantStatus;
|
|
32982
|
+
/**
|
|
32983
|
+
* Gets or sets Lat.
|
|
32984
|
+
*/
|
|
32985
|
+
lat?: number;
|
|
32986
|
+
/**
|
|
32987
|
+
* Gets or sets Lng.
|
|
32988
|
+
*/
|
|
32989
|
+
lng?: number;
|
|
32990
|
+
/**
|
|
32991
|
+
* Gets or sets Distance.
|
|
32992
|
+
*/
|
|
32993
|
+
distance?: number;
|
|
32994
|
+
/**
|
|
32995
|
+
* Gets or sets MinAgeLTE.
|
|
32996
|
+
*/
|
|
32997
|
+
minAgeLte?: number;
|
|
32998
|
+
/**
|
|
32999
|
+
* Gets or sets MinAgeGTE.
|
|
33000
|
+
*/
|
|
33001
|
+
minAgeGte?: number;
|
|
33002
|
+
/**
|
|
33003
|
+
* Gets or sets MaxAgeLTE.
|
|
33004
|
+
*/
|
|
33005
|
+
maxAgeLte?: number;
|
|
33006
|
+
/**
|
|
33007
|
+
* Gets or sets MaxAgeGTE.
|
|
33008
|
+
*/
|
|
33009
|
+
maxAgeGte?: number;
|
|
33010
|
+
/**
|
|
33011
|
+
* Gets or sets PriceTotalGTE.
|
|
33012
|
+
*/
|
|
33013
|
+
priceTotalGte?: number;
|
|
33014
|
+
/**
|
|
33015
|
+
* Gets or sets PriceTotalLTE.
|
|
33016
|
+
*/
|
|
33017
|
+
priceTotalLte?: number;
|
|
33018
|
+
/**
|
|
33019
|
+
* Gets or sets TimeOfDay.
|
|
33020
|
+
*/
|
|
33021
|
+
timeOfDay?: string;
|
|
33022
|
+
/**
|
|
33023
|
+
* Gets or sets StartDateTimeGTE.
|
|
33024
|
+
*/
|
|
33025
|
+
startDateTimeGte?: string;
|
|
33026
|
+
/**
|
|
33027
|
+
* Gets or sets EndDateTimeLTE.
|
|
33028
|
+
*/
|
|
33029
|
+
endDateTimeLte?: string;
|
|
33030
|
+
/**
|
|
33031
|
+
* Gets or sets Gender.
|
|
33032
|
+
*/
|
|
33033
|
+
gender?: Gender;
|
|
33034
|
+
/**
|
|
33035
|
+
* Gets or sets PeriodsOfWeek.
|
|
33036
|
+
*/
|
|
33037
|
+
periodsOfWeek?: PeriodsOfWeek;
|
|
33038
|
+
/**
|
|
33039
|
+
* Gets or sets AdditionalSupport.
|
|
33040
|
+
*/
|
|
33041
|
+
additionalSupport?: Array<string>;
|
|
33042
|
+
/**
|
|
33043
|
+
* Gets or sets AmenityId.
|
|
33044
|
+
*/
|
|
33045
|
+
amenity?: Array<number>;
|
|
33046
|
+
/**
|
|
33047
|
+
* Gets or sets a list of venue type ids.
|
|
33048
|
+
*/
|
|
33049
|
+
venueTypeIds?: Array<string>;
|
|
32965
33050
|
/**
|
|
32966
33051
|
* Gets or sets the Programme ids.
|
|
32967
33052
|
*/
|
|
@@ -39343,7 +39428,7 @@ declare class PublicVenuesService {
|
|
|
39343
39428
|
* @returns VenuePage OK
|
|
39344
39429
|
* @throws ApiError
|
|
39345
39430
|
*/
|
|
39346
|
-
getPage({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39431
|
+
getPage({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39347
39432
|
xTenantSubdomain?: string;
|
|
39348
39433
|
/**
|
|
39349
39434
|
* Gets or sets the queryable venue ids.
|
|
@@ -39429,6 +39514,10 @@ declare class PublicVenuesService {
|
|
|
39429
39514
|
* Gets or sets the programme ids.
|
|
39430
39515
|
*/
|
|
39431
39516
|
programmeIds?: Array<string>;
|
|
39517
|
+
/**
|
|
39518
|
+
* Gets or sets the venue type ids.
|
|
39519
|
+
*/
|
|
39520
|
+
venueTypeIds?: Array<string>;
|
|
39432
39521
|
/**
|
|
39433
39522
|
* Gets or sets the page number for paged queries.
|
|
39434
39523
|
*/
|
|
@@ -39494,7 +39583,7 @@ declare class PublicVenuesService {
|
|
|
39494
39583
|
* @returns VenuePage OK
|
|
39495
39584
|
* @throws ApiError
|
|
39496
39585
|
*/
|
|
39497
|
-
getNetworkPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39586
|
+
getNetworkPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39498
39587
|
/**
|
|
39499
39588
|
* Gets or sets the queryable venue ids.
|
|
39500
39589
|
*/
|
|
@@ -39579,6 +39668,10 @@ declare class PublicVenuesService {
|
|
|
39579
39668
|
* Gets or sets the programme ids.
|
|
39580
39669
|
*/
|
|
39581
39670
|
programmeIds?: Array<string>;
|
|
39671
|
+
/**
|
|
39672
|
+
* Gets or sets the venue type ids.
|
|
39673
|
+
*/
|
|
39674
|
+
venueTypeIds?: Array<string>;
|
|
39582
39675
|
/**
|
|
39583
39676
|
* Gets or sets the page number for paged queries.
|
|
39584
39677
|
*/
|
|
@@ -39674,7 +39767,7 @@ declare class PublicVenuesService {
|
|
|
39674
39767
|
* @returns boolean OK
|
|
39675
39768
|
* @throws ApiError
|
|
39676
39769
|
*/
|
|
39677
|
-
exists({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39770
|
+
exists({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39678
39771
|
/**
|
|
39679
39772
|
* The tenants subdomain.
|
|
39680
39773
|
*/
|
|
@@ -39763,6 +39856,287 @@ declare class PublicVenuesService {
|
|
|
39763
39856
|
* Gets or sets the programme ids.
|
|
39764
39857
|
*/
|
|
39765
39858
|
programmeIds?: Array<string>;
|
|
39859
|
+
/**
|
|
39860
|
+
* Gets or sets the venue type ids.
|
|
39861
|
+
*/
|
|
39862
|
+
venueTypeIds?: Array<string>;
|
|
39863
|
+
/**
|
|
39864
|
+
* Gets or sets the page number for paged queries.
|
|
39865
|
+
*/
|
|
39866
|
+
pageNumber?: number;
|
|
39867
|
+
/**
|
|
39868
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
39869
|
+
*/
|
|
39870
|
+
take?: number;
|
|
39871
|
+
/**
|
|
39872
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
39873
|
+
*/
|
|
39874
|
+
skip?: number;
|
|
39875
|
+
/**
|
|
39876
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
39877
|
+
*/
|
|
39878
|
+
limitListRequests?: boolean;
|
|
39879
|
+
/**
|
|
39880
|
+
* Gets or sets the Tenant Id.
|
|
39881
|
+
*/
|
|
39882
|
+
tenantId?: string;
|
|
39883
|
+
/**
|
|
39884
|
+
* Gets or sets the Modifed By Id.
|
|
39885
|
+
*/
|
|
39886
|
+
modifiedById?: string;
|
|
39887
|
+
/**
|
|
39888
|
+
* Gets or sets the Modifed By Ids.
|
|
39889
|
+
*/
|
|
39890
|
+
modifiedByIds?: Array<string>;
|
|
39891
|
+
/**
|
|
39892
|
+
* Gets or sets the Date Created greater than equal to.
|
|
39893
|
+
*/
|
|
39894
|
+
dateCreatedGte?: string;
|
|
39895
|
+
/**
|
|
39896
|
+
* Gets or sets the Date Created less than equal to.
|
|
39897
|
+
*/
|
|
39898
|
+
dateCreatedLte?: string;
|
|
39899
|
+
/**
|
|
39900
|
+
* Gets or sets the queryable only is live status.
|
|
39901
|
+
*/
|
|
39902
|
+
isLive?: boolean;
|
|
39903
|
+
/**
|
|
39904
|
+
* Gets or sets the sort order direction.
|
|
39905
|
+
*/
|
|
39906
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
39907
|
+
}): CancelablePromise<boolean>;
|
|
39908
|
+
}
|
|
39909
|
+
|
|
39910
|
+
/**
|
|
39911
|
+
* Represents a Venues type within the Reach application.
|
|
39912
|
+
*/
|
|
39913
|
+
type VenueType = {
|
|
39914
|
+
/**
|
|
39915
|
+
* Gets or sets the entities Id.
|
|
39916
|
+
*/
|
|
39917
|
+
id?: string;
|
|
39918
|
+
/**
|
|
39919
|
+
* Gets or sets the tenant Id.
|
|
39920
|
+
*/
|
|
39921
|
+
tenantId: string;
|
|
39922
|
+
/**
|
|
39923
|
+
* Gets or sets the created date of this entity.
|
|
39924
|
+
*/
|
|
39925
|
+
dateCreated: string;
|
|
39926
|
+
/**
|
|
39927
|
+
* Gets or sets the last modified date of this entity.
|
|
39928
|
+
*/
|
|
39929
|
+
dateModified: string;
|
|
39930
|
+
/**
|
|
39931
|
+
* Gets or sets the modified by Id.
|
|
39932
|
+
*/
|
|
39933
|
+
modifiedById?: string | null;
|
|
39934
|
+
/**
|
|
39935
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
39936
|
+
*/
|
|
39937
|
+
isLive: boolean;
|
|
39938
|
+
/**
|
|
39939
|
+
* Gets or sets the venue types name.
|
|
39940
|
+
*/
|
|
39941
|
+
name?: string | null;
|
|
39942
|
+
/**
|
|
39943
|
+
* Gets or sets the venues types description.
|
|
39944
|
+
*/
|
|
39945
|
+
description?: string | null;
|
|
39946
|
+
};
|
|
39947
|
+
|
|
39948
|
+
type VenueTypePage = {
|
|
39949
|
+
pagination: Pagination;
|
|
39950
|
+
readonly items: Array<VenueType>;
|
|
39951
|
+
};
|
|
39952
|
+
|
|
39953
|
+
/**
|
|
39954
|
+
* Post model for venue type updates.
|
|
39955
|
+
*/
|
|
39956
|
+
type VenueTypePatch = {
|
|
39957
|
+
/**
|
|
39958
|
+
* Gets or sets the tenant Id.
|
|
39959
|
+
*/
|
|
39960
|
+
tenantId: string;
|
|
39961
|
+
/**
|
|
39962
|
+
* Gets or sets the Id.
|
|
39963
|
+
*/
|
|
39964
|
+
id: string;
|
|
39965
|
+
/**
|
|
39966
|
+
* Gets or sets the venue types name.
|
|
39967
|
+
*/
|
|
39968
|
+
name?: string | null;
|
|
39969
|
+
/**
|
|
39970
|
+
* Gets or sets the venues types description.
|
|
39971
|
+
*/
|
|
39972
|
+
description?: string | null;
|
|
39973
|
+
};
|
|
39974
|
+
|
|
39975
|
+
/**
|
|
39976
|
+
* Post model for venue type inserts.
|
|
39977
|
+
*/
|
|
39978
|
+
type VenueTypePost = {
|
|
39979
|
+
/**
|
|
39980
|
+
* Gets or sets the tenant Id.
|
|
39981
|
+
*/
|
|
39982
|
+
tenantId: string;
|
|
39983
|
+
/**
|
|
39984
|
+
* Gets or sets the venue types name.
|
|
39985
|
+
*/
|
|
39986
|
+
name?: string | null;
|
|
39987
|
+
/**
|
|
39988
|
+
* Gets or sets the venues types description.
|
|
39989
|
+
*/
|
|
39990
|
+
description?: string | null;
|
|
39991
|
+
};
|
|
39992
|
+
|
|
39993
|
+
declare class PublicVenueTypesService {
|
|
39994
|
+
readonly httpRequest: BaseHttpRequest;
|
|
39995
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
39996
|
+
/**
|
|
39997
|
+
* @returns VenueType OK
|
|
39998
|
+
* @throws ApiError
|
|
39999
|
+
*/
|
|
40000
|
+
getObject({ id, xTenantSubdomain, }: {
|
|
40001
|
+
id: string;
|
|
40002
|
+
xTenantSubdomain?: string;
|
|
40003
|
+
}): CancelablePromise<VenueType>;
|
|
40004
|
+
/**
|
|
40005
|
+
* Deletes the resource.
|
|
40006
|
+
* @returns any OK
|
|
40007
|
+
* @throws ApiError
|
|
40008
|
+
*/
|
|
40009
|
+
deleteById({ id, xTenantSubdomain, }: {
|
|
40010
|
+
/**
|
|
40011
|
+
* The <typeparamref name="TObject" /> id.
|
|
40012
|
+
*/
|
|
40013
|
+
id: string;
|
|
40014
|
+
/**
|
|
40015
|
+
* The tenants subdomain.
|
|
40016
|
+
*/
|
|
40017
|
+
xTenantSubdomain?: string;
|
|
40018
|
+
}): CancelablePromise<any>;
|
|
40019
|
+
/**
|
|
40020
|
+
* @returns VenueTypePage OK
|
|
40021
|
+
* @throws ApiError
|
|
40022
|
+
*/
|
|
40023
|
+
getPage({ xTenantSubdomain, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
40024
|
+
xTenantSubdomain?: string;
|
|
40025
|
+
/**
|
|
40026
|
+
* Gets or sets the page number for paged queries.
|
|
40027
|
+
*/
|
|
40028
|
+
pageNumber?: number;
|
|
40029
|
+
/**
|
|
40030
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
40031
|
+
*/
|
|
40032
|
+
take?: number;
|
|
40033
|
+
/**
|
|
40034
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
40035
|
+
*/
|
|
40036
|
+
skip?: number;
|
|
40037
|
+
/**
|
|
40038
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
40039
|
+
*/
|
|
40040
|
+
limitListRequests?: boolean;
|
|
40041
|
+
/**
|
|
40042
|
+
* Gets or sets the Tenant Id.
|
|
40043
|
+
*/
|
|
40044
|
+
tenantId?: string;
|
|
40045
|
+
/**
|
|
40046
|
+
* Gets or sets the Modifed By Id.
|
|
40047
|
+
*/
|
|
40048
|
+
modifiedById?: string;
|
|
40049
|
+
/**
|
|
40050
|
+
* Gets or sets the Modifed By Ids.
|
|
40051
|
+
*/
|
|
40052
|
+
modifiedByIds?: Array<string>;
|
|
40053
|
+
/**
|
|
40054
|
+
* Gets or sets the Date Created greater than equal to.
|
|
40055
|
+
*/
|
|
40056
|
+
dateCreatedGte?: string;
|
|
40057
|
+
/**
|
|
40058
|
+
* Gets or sets the Date Created less than equal to.
|
|
40059
|
+
*/
|
|
40060
|
+
dateCreatedLte?: string;
|
|
40061
|
+
/**
|
|
40062
|
+
* Gets or sets the queryable only is live status.
|
|
40063
|
+
*/
|
|
40064
|
+
isLive?: boolean;
|
|
40065
|
+
/**
|
|
40066
|
+
* Gets or sets the sort order direction.
|
|
40067
|
+
*/
|
|
40068
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
40069
|
+
}): CancelablePromise<VenueTypePage>;
|
|
40070
|
+
/**
|
|
40071
|
+
* Deletes the resource.
|
|
40072
|
+
* @returns any OK
|
|
40073
|
+
* @throws ApiError
|
|
40074
|
+
*/
|
|
40075
|
+
deleteByObject({ xTenantSubdomain, requestBody, }: {
|
|
40076
|
+
/**
|
|
40077
|
+
* The tenants subdomain.
|
|
40078
|
+
*/
|
|
40079
|
+
xTenantSubdomain?: string;
|
|
40080
|
+
/**
|
|
40081
|
+
* The <typeparamref name="TObject" /> model.
|
|
40082
|
+
*/
|
|
40083
|
+
requestBody?: VenueType;
|
|
40084
|
+
}): CancelablePromise<any>;
|
|
40085
|
+
/**
|
|
40086
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
40087
|
+
* @returns VenueType OK
|
|
40088
|
+
* @throws ApiError
|
|
40089
|
+
*/
|
|
40090
|
+
post({ xTenantSubdomain, requestBody, }: {
|
|
40091
|
+
/**
|
|
40092
|
+
* The tenants subdomain.
|
|
40093
|
+
*/
|
|
40094
|
+
xTenantSubdomain?: string;
|
|
40095
|
+
/**
|
|
40096
|
+
* The <typeparamref name="TObject" /> model.
|
|
40097
|
+
*/
|
|
40098
|
+
requestBody?: VenueTypePost;
|
|
40099
|
+
}): CancelablePromise<VenueType>;
|
|
40100
|
+
/**
|
|
40101
|
+
* Patches the resource.
|
|
40102
|
+
* @returns VenueType OK
|
|
40103
|
+
* @throws ApiError
|
|
40104
|
+
*/
|
|
40105
|
+
patch({ xTenantSubdomain, requestBody, }: {
|
|
40106
|
+
/**
|
|
40107
|
+
* The tenants subdomain.
|
|
40108
|
+
*/
|
|
40109
|
+
xTenantSubdomain?: string;
|
|
40110
|
+
/**
|
|
40111
|
+
* The <typeparamref name="TObject" /> model.
|
|
40112
|
+
*/
|
|
40113
|
+
requestBody?: VenueTypePatch;
|
|
40114
|
+
}): CancelablePromise<VenueType>;
|
|
40115
|
+
/**
|
|
40116
|
+
* Inserts a list of resources.
|
|
40117
|
+
* @returns VenueType OK
|
|
40118
|
+
* @throws ApiError
|
|
40119
|
+
*/
|
|
40120
|
+
postList({ xTenantSubdomain, requestBody, }: {
|
|
40121
|
+
/**
|
|
40122
|
+
* The tenants subdomain.
|
|
40123
|
+
*/
|
|
40124
|
+
xTenantSubdomain?: string;
|
|
40125
|
+
/**
|
|
40126
|
+
* The list of <typeparamref name="TObject" />.
|
|
40127
|
+
*/
|
|
40128
|
+
requestBody?: Array<VenueTypePost>;
|
|
40129
|
+
}): CancelablePromise<Array<VenueType>>;
|
|
40130
|
+
/**
|
|
40131
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
40132
|
+
* @returns boolean OK
|
|
40133
|
+
* @throws ApiError
|
|
40134
|
+
*/
|
|
40135
|
+
exists({ xTenantSubdomain, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
40136
|
+
/**
|
|
40137
|
+
* The tenants subdomain.
|
|
40138
|
+
*/
|
|
40139
|
+
xTenantSubdomain?: string;
|
|
39766
40140
|
/**
|
|
39767
40141
|
* Gets or sets the page number for paged queries.
|
|
39768
40142
|
*/
|
|
@@ -42172,6 +42546,24 @@ type ScheduledSessionEmailAttendeesPatch = {
|
|
|
42172
42546
|
message?: string | null;
|
|
42173
42547
|
};
|
|
42174
42548
|
|
|
42549
|
+
/**
|
|
42550
|
+
* Post model for emailing scheduled session waitlist.
|
|
42551
|
+
*/
|
|
42552
|
+
type ScheduledSessionEmailWaitlistPatch = {
|
|
42553
|
+
/**
|
|
42554
|
+
* Gets or sets the tenant Id.
|
|
42555
|
+
*/
|
|
42556
|
+
tenantId: string;
|
|
42557
|
+
/**
|
|
42558
|
+
* Gets or sets the Id.
|
|
42559
|
+
*/
|
|
42560
|
+
id: string;
|
|
42561
|
+
/**
|
|
42562
|
+
* Gets or sets the message body.
|
|
42563
|
+
*/
|
|
42564
|
+
message?: string | null;
|
|
42565
|
+
};
|
|
42566
|
+
|
|
42175
42567
|
/**
|
|
42176
42568
|
* Post model for scheduled session rescheduling updates.
|
|
42177
42569
|
*/
|
|
@@ -42279,6 +42671,21 @@ declare class ScheduledSessionsService {
|
|
|
42279
42671
|
*/
|
|
42280
42672
|
requestBody?: ScheduledSessionEmailAttendeesPatch;
|
|
42281
42673
|
}): CancelablePromise<ScheduledSession>;
|
|
42674
|
+
/**
|
|
42675
|
+
* Emails all on waitlist onto the opportunity />.
|
|
42676
|
+
* @returns ScheduledSession OK
|
|
42677
|
+
* @throws ApiError
|
|
42678
|
+
*/
|
|
42679
|
+
contactWaitlist({ scheduledSessionId, requestBody, }: {
|
|
42680
|
+
/**
|
|
42681
|
+
* The scheduled session Id.
|
|
42682
|
+
*/
|
|
42683
|
+
scheduledSessionId: string;
|
|
42684
|
+
/**
|
|
42685
|
+
* The patch model.
|
|
42686
|
+
*/
|
|
42687
|
+
requestBody?: ScheduledSessionEmailWaitlistPatch;
|
|
42688
|
+
}): CancelablePromise<ScheduledSession>;
|
|
42282
42689
|
/**
|
|
42283
42690
|
* Cleans table of leased and conflicted scheduled sessions.
|
|
42284
42691
|
* @returns number OK
|
|
@@ -50730,6 +51137,22 @@ type TemplateOffer = {
|
|
|
50730
51137
|
* Gets or sets a value indicating whether the offer is active.
|
|
50731
51138
|
*/
|
|
50732
51139
|
active?: boolean;
|
|
51140
|
+
/**
|
|
51141
|
+
* Gets or sets the maximum number of this offer that can be sold per opportunity.
|
|
51142
|
+
*/
|
|
51143
|
+
maxAvailablePerOpportunity?: number | null;
|
|
51144
|
+
/**
|
|
51145
|
+
* Gets or sets when this offer becomes available for booking.
|
|
51146
|
+
*/
|
|
51147
|
+
availableFrom?: string | null;
|
|
51148
|
+
/**
|
|
51149
|
+
* Gets or sets when this offer stops being available for booking.
|
|
51150
|
+
*/
|
|
51151
|
+
availableUntil?: string | null;
|
|
51152
|
+
/**
|
|
51153
|
+
* Gets or sets the offer description.
|
|
51154
|
+
*/
|
|
51155
|
+
description?: string | null;
|
|
50733
51156
|
};
|
|
50734
51157
|
|
|
50735
51158
|
/**
|
|
@@ -54916,6 +55339,10 @@ type UserPermission = {
|
|
|
54916
55339
|
* Gets or sets a value indicating whether a venue manager has send emails permissions.
|
|
54917
55340
|
*/
|
|
54918
55341
|
sendEmails?: boolean;
|
|
55342
|
+
/**
|
|
55343
|
+
* Gets or sets a value indicating whether a venue manager has manage opportunity permissions.
|
|
55344
|
+
*/
|
|
55345
|
+
manageOpportunity?: boolean;
|
|
54919
55346
|
};
|
|
54920
55347
|
|
|
54921
55348
|
type UserPermissionPage = {
|
|
@@ -54999,6 +55426,10 @@ type UserPermissionPatch = {
|
|
|
54999
55426
|
* Gets or sets a value indicating whether a venue manager has send emails permissions.
|
|
55000
55427
|
*/
|
|
55001
55428
|
sendEmails?: boolean;
|
|
55429
|
+
/**
|
|
55430
|
+
* Gets or sets a value indicating whether a venue manager has manage opportunity permissions.
|
|
55431
|
+
*/
|
|
55432
|
+
manageOpportunity?: boolean;
|
|
55002
55433
|
};
|
|
55003
55434
|
|
|
55004
55435
|
/**
|
|
@@ -58529,7 +58960,7 @@ declare class VenuesService {
|
|
|
58529
58960
|
* @returns VenuePage OK
|
|
58530
58961
|
* @throws ApiError
|
|
58531
58962
|
*/
|
|
58532
|
-
getPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
58963
|
+
getPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
58533
58964
|
/**
|
|
58534
58965
|
* Gets or sets the queryable venue ids.
|
|
58535
58966
|
*/
|
|
@@ -58614,6 +59045,10 @@ declare class VenuesService {
|
|
|
58614
59045
|
* Gets or sets the programme ids.
|
|
58615
59046
|
*/
|
|
58616
59047
|
programmeIds?: Array<string>;
|
|
59048
|
+
/**
|
|
59049
|
+
* Gets or sets the venue type ids.
|
|
59050
|
+
*/
|
|
59051
|
+
venueTypeIds?: Array<string>;
|
|
58617
59052
|
/**
|
|
58618
59053
|
* Gets or sets the page number for paged queries.
|
|
58619
59054
|
*/
|
|
@@ -58697,7 +59132,7 @@ declare class VenuesService {
|
|
|
58697
59132
|
* @returns boolean OK
|
|
58698
59133
|
* @throws ApiError
|
|
58699
59134
|
*/
|
|
58700
|
-
exists({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
59135
|
+
exists({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
58701
59136
|
/**
|
|
58702
59137
|
* Gets or sets the queryable venue ids.
|
|
58703
59138
|
*/
|
|
@@ -58782,6 +59217,10 @@ declare class VenuesService {
|
|
|
58782
59217
|
* Gets or sets the programme ids.
|
|
58783
59218
|
*/
|
|
58784
59219
|
programmeIds?: Array<string>;
|
|
59220
|
+
/**
|
|
59221
|
+
* Gets or sets the venue type ids.
|
|
59222
|
+
*/
|
|
59223
|
+
venueTypeIds?: Array<string>;
|
|
58785
59224
|
/**
|
|
58786
59225
|
* Gets or sets the page number for paged queries.
|
|
58787
59226
|
*/
|
|
@@ -58832,7 +59271,7 @@ declare class VenuesService {
|
|
|
58832
59271
|
* @returns number OK
|
|
58833
59272
|
* @throws ApiError
|
|
58834
59273
|
*/
|
|
58835
|
-
count({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
59274
|
+
count({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
58836
59275
|
/**
|
|
58837
59276
|
* Gets or sets the queryable venue ids.
|
|
58838
59277
|
*/
|
|
@@ -58917,6 +59356,10 @@ declare class VenuesService {
|
|
|
58917
59356
|
* Gets or sets the programme ids.
|
|
58918
59357
|
*/
|
|
58919
59358
|
programmeIds?: Array<string>;
|
|
59359
|
+
/**
|
|
59360
|
+
* Gets or sets the venue type ids.
|
|
59361
|
+
*/
|
|
59362
|
+
venueTypeIds?: Array<string>;
|
|
58920
59363
|
/**
|
|
58921
59364
|
* Gets or sets the page number for paged queries.
|
|
58922
59365
|
*/
|
|
@@ -58967,7 +59410,7 @@ declare class VenuesService {
|
|
|
58967
59410
|
* @returns Venue OK
|
|
58968
59411
|
* @throws ApiError
|
|
58969
59412
|
*/
|
|
58970
|
-
getListWithoutReferences({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
59413
|
+
getListWithoutReferences({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
58971
59414
|
/**
|
|
58972
59415
|
* Gets or sets the queryable venue ids.
|
|
58973
59416
|
*/
|
|
@@ -59052,6 +59495,10 @@ declare class VenuesService {
|
|
|
59052
59495
|
* Gets or sets the programme ids.
|
|
59053
59496
|
*/
|
|
59054
59497
|
programmeIds?: Array<string>;
|
|
59498
|
+
/**
|
|
59499
|
+
* Gets or sets the venue type ids.
|
|
59500
|
+
*/
|
|
59501
|
+
venueTypeIds?: Array<string>;
|
|
59055
59502
|
/**
|
|
59056
59503
|
* Gets or sets the page number for paged queries.
|
|
59057
59504
|
*/
|
|
@@ -59102,7 +59549,7 @@ declare class VenuesService {
|
|
|
59102
59549
|
* @returns Venue OK
|
|
59103
59550
|
* @throws ApiError
|
|
59104
59551
|
*/
|
|
59105
|
-
getListIdName({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
59552
|
+
getListIdName({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, tenantStatus, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, venueTypeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
59106
59553
|
/**
|
|
59107
59554
|
* Gets or sets the queryable venue ids.
|
|
59108
59555
|
*/
|
|
@@ -59187,6 +59634,10 @@ declare class VenuesService {
|
|
|
59187
59634
|
* Gets or sets the programme ids.
|
|
59188
59635
|
*/
|
|
59189
59636
|
programmeIds?: Array<string>;
|
|
59637
|
+
/**
|
|
59638
|
+
* Gets or sets the venue type ids.
|
|
59639
|
+
*/
|
|
59640
|
+
venueTypeIds?: Array<string>;
|
|
59190
59641
|
/**
|
|
59191
59642
|
* Gets or sets the page number for paged queries.
|
|
59192
59643
|
*/
|
|
@@ -59833,6 +60284,354 @@ declare class VenuesReportService {
|
|
|
59833
60284
|
}): CancelablePromise<Array<VenuesReport>>;
|
|
59834
60285
|
}
|
|
59835
60286
|
|
|
60287
|
+
declare class VenueTypeService {
|
|
60288
|
+
readonly httpRequest: BaseHttpRequest;
|
|
60289
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
60290
|
+
/**
|
|
60291
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
60292
|
+
* @returns VenueType OK
|
|
60293
|
+
* @throws ApiError
|
|
60294
|
+
*/
|
|
60295
|
+
post({ requestBody, }: {
|
|
60296
|
+
/**
|
|
60297
|
+
* The <typeparamref name="TObject" /> model.
|
|
60298
|
+
*/
|
|
60299
|
+
requestBody?: VenueTypePost;
|
|
60300
|
+
}): CancelablePromise<VenueType>;
|
|
60301
|
+
/**
|
|
60302
|
+
* Patches the resource.
|
|
60303
|
+
* @returns VenueType OK
|
|
60304
|
+
* @throws ApiError
|
|
60305
|
+
*/
|
|
60306
|
+
patch({ requestBody, }: {
|
|
60307
|
+
/**
|
|
60308
|
+
* The <typeparamref name="TObject" /> model.
|
|
60309
|
+
*/
|
|
60310
|
+
requestBody?: VenueTypePatch;
|
|
60311
|
+
}): CancelablePromise<VenueType>;
|
|
60312
|
+
/**
|
|
60313
|
+
* Inserts a list of resources.
|
|
60314
|
+
* @returns VenueType OK
|
|
60315
|
+
* @throws ApiError
|
|
60316
|
+
*/
|
|
60317
|
+
postList({ requestBody, }: {
|
|
60318
|
+
/**
|
|
60319
|
+
* The list of <typeparamref name="TObject" />.
|
|
60320
|
+
*/
|
|
60321
|
+
requestBody?: Array<VenueTypePost>;
|
|
60322
|
+
}): CancelablePromise<Array<VenueType>>;
|
|
60323
|
+
/**
|
|
60324
|
+
* Patches the resource.
|
|
60325
|
+
* @returns VenueType OK
|
|
60326
|
+
* @throws ApiError
|
|
60327
|
+
*/
|
|
60328
|
+
patchWithReferences({ requestBody, }: {
|
|
60329
|
+
/**
|
|
60330
|
+
* The <typeparamref name="TObject" /> model.
|
|
60331
|
+
*/
|
|
60332
|
+
requestBody?: VenueTypePatch;
|
|
60333
|
+
}): CancelablePromise<VenueType>;
|
|
60334
|
+
/**
|
|
60335
|
+
* Deletes the resource.
|
|
60336
|
+
* @returns any OK
|
|
60337
|
+
* @throws ApiError
|
|
60338
|
+
*/
|
|
60339
|
+
deleteByObject({ requestBody, }: {
|
|
60340
|
+
/**
|
|
60341
|
+
* The <typeparamref name="TObject" /> model.
|
|
60342
|
+
*/
|
|
60343
|
+
requestBody?: VenueType;
|
|
60344
|
+
}): CancelablePromise<any>;
|
|
60345
|
+
/**
|
|
60346
|
+
* Gets a list of resources.
|
|
60347
|
+
* @returns VenueTypePage OK
|
|
60348
|
+
* @throws ApiError
|
|
60349
|
+
*/
|
|
60350
|
+
getPage({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60351
|
+
/**
|
|
60352
|
+
* Gets or sets the page number for paged queries.
|
|
60353
|
+
*/
|
|
60354
|
+
pageNumber?: number;
|
|
60355
|
+
/**
|
|
60356
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
60357
|
+
*/
|
|
60358
|
+
take?: number;
|
|
60359
|
+
/**
|
|
60360
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
60361
|
+
*/
|
|
60362
|
+
skip?: number;
|
|
60363
|
+
/**
|
|
60364
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
60365
|
+
*/
|
|
60366
|
+
limitListRequests?: boolean;
|
|
60367
|
+
/**
|
|
60368
|
+
* Gets or sets the Tenant Id.
|
|
60369
|
+
*/
|
|
60370
|
+
tenantId?: string;
|
|
60371
|
+
/**
|
|
60372
|
+
* Gets or sets the Modifed By Id.
|
|
60373
|
+
*/
|
|
60374
|
+
modifiedById?: string;
|
|
60375
|
+
/**
|
|
60376
|
+
* Gets or sets the Modifed By Ids.
|
|
60377
|
+
*/
|
|
60378
|
+
modifiedByIds?: Array<string>;
|
|
60379
|
+
/**
|
|
60380
|
+
* Gets or sets the Date Created greater than equal to.
|
|
60381
|
+
*/
|
|
60382
|
+
dateCreatedGte?: string;
|
|
60383
|
+
/**
|
|
60384
|
+
* Gets or sets the Date Created less than equal to.
|
|
60385
|
+
*/
|
|
60386
|
+
dateCreatedLte?: string;
|
|
60387
|
+
/**
|
|
60388
|
+
* Gets or sets the queryable only is live status.
|
|
60389
|
+
*/
|
|
60390
|
+
isLive?: boolean;
|
|
60391
|
+
/**
|
|
60392
|
+
* Gets or sets the sort order direction.
|
|
60393
|
+
*/
|
|
60394
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
60395
|
+
}): CancelablePromise<VenueTypePage>;
|
|
60396
|
+
/**
|
|
60397
|
+
* Deletes the resource.
|
|
60398
|
+
* @returns any OK
|
|
60399
|
+
* @throws ApiError
|
|
60400
|
+
*/
|
|
60401
|
+
deleteById({ id, }: {
|
|
60402
|
+
/**
|
|
60403
|
+
* The <typeparamref name="TObject" /> id.
|
|
60404
|
+
*/
|
|
60405
|
+
id: string;
|
|
60406
|
+
}): CancelablePromise<any>;
|
|
60407
|
+
/**
|
|
60408
|
+
* Gets the resource by its Id.
|
|
60409
|
+
* @returns VenueType OK
|
|
60410
|
+
* @throws ApiError
|
|
60411
|
+
*/
|
|
60412
|
+
getObject({ id, }: {
|
|
60413
|
+
/**
|
|
60414
|
+
* The <typeparamref name="TObject" /> id.
|
|
60415
|
+
*/
|
|
60416
|
+
id: string;
|
|
60417
|
+
}): CancelablePromise<VenueType>;
|
|
60418
|
+
/**
|
|
60419
|
+
* Returns a value indicating whether the resource is deletable.
|
|
60420
|
+
* @returns boolean OK
|
|
60421
|
+
* @throws ApiError
|
|
60422
|
+
*/
|
|
60423
|
+
canDelete({ id, }: {
|
|
60424
|
+
/**
|
|
60425
|
+
* The <typeparamref name="TObject" /> id.
|
|
60426
|
+
*/
|
|
60427
|
+
id: string;
|
|
60428
|
+
}): CancelablePromise<boolean>;
|
|
60429
|
+
/**
|
|
60430
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
60431
|
+
* @returns boolean OK
|
|
60432
|
+
* @throws ApiError
|
|
60433
|
+
*/
|
|
60434
|
+
exists({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60435
|
+
/**
|
|
60436
|
+
* Gets or sets the page number for paged queries.
|
|
60437
|
+
*/
|
|
60438
|
+
pageNumber?: number;
|
|
60439
|
+
/**
|
|
60440
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
60441
|
+
*/
|
|
60442
|
+
take?: number;
|
|
60443
|
+
/**
|
|
60444
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
60445
|
+
*/
|
|
60446
|
+
skip?: number;
|
|
60447
|
+
/**
|
|
60448
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
60449
|
+
*/
|
|
60450
|
+
limitListRequests?: boolean;
|
|
60451
|
+
/**
|
|
60452
|
+
* Gets or sets the Tenant Id.
|
|
60453
|
+
*/
|
|
60454
|
+
tenantId?: string;
|
|
60455
|
+
/**
|
|
60456
|
+
* Gets or sets the Modifed By Id.
|
|
60457
|
+
*/
|
|
60458
|
+
modifiedById?: string;
|
|
60459
|
+
/**
|
|
60460
|
+
* Gets or sets the Modifed By Ids.
|
|
60461
|
+
*/
|
|
60462
|
+
modifiedByIds?: Array<string>;
|
|
60463
|
+
/**
|
|
60464
|
+
* Gets or sets the Date Created greater than equal to.
|
|
60465
|
+
*/
|
|
60466
|
+
dateCreatedGte?: string;
|
|
60467
|
+
/**
|
|
60468
|
+
* Gets or sets the Date Created less than equal to.
|
|
60469
|
+
*/
|
|
60470
|
+
dateCreatedLte?: string;
|
|
60471
|
+
/**
|
|
60472
|
+
* Gets or sets the queryable only is live status.
|
|
60473
|
+
*/
|
|
60474
|
+
isLive?: boolean;
|
|
60475
|
+
/**
|
|
60476
|
+
* Gets or sets the sort order direction.
|
|
60477
|
+
*/
|
|
60478
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
60479
|
+
}): CancelablePromise<boolean>;
|
|
60480
|
+
/**
|
|
60481
|
+
* Returns the number of results in the database given the provided search params.
|
|
60482
|
+
* @returns number OK
|
|
60483
|
+
* @throws ApiError
|
|
60484
|
+
*/
|
|
60485
|
+
count({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60486
|
+
/**
|
|
60487
|
+
* Gets or sets the page number for paged queries.
|
|
60488
|
+
*/
|
|
60489
|
+
pageNumber?: number;
|
|
60490
|
+
/**
|
|
60491
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
60492
|
+
*/
|
|
60493
|
+
take?: number;
|
|
60494
|
+
/**
|
|
60495
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
60496
|
+
*/
|
|
60497
|
+
skip?: number;
|
|
60498
|
+
/**
|
|
60499
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
60500
|
+
*/
|
|
60501
|
+
limitListRequests?: boolean;
|
|
60502
|
+
/**
|
|
60503
|
+
* Gets or sets the Tenant Id.
|
|
60504
|
+
*/
|
|
60505
|
+
tenantId?: string;
|
|
60506
|
+
/**
|
|
60507
|
+
* Gets or sets the Modifed By Id.
|
|
60508
|
+
*/
|
|
60509
|
+
modifiedById?: string;
|
|
60510
|
+
/**
|
|
60511
|
+
* Gets or sets the Modifed By Ids.
|
|
60512
|
+
*/
|
|
60513
|
+
modifiedByIds?: Array<string>;
|
|
60514
|
+
/**
|
|
60515
|
+
* Gets or sets the Date Created greater than equal to.
|
|
60516
|
+
*/
|
|
60517
|
+
dateCreatedGte?: string;
|
|
60518
|
+
/**
|
|
60519
|
+
* Gets or sets the Date Created less than equal to.
|
|
60520
|
+
*/
|
|
60521
|
+
dateCreatedLte?: string;
|
|
60522
|
+
/**
|
|
60523
|
+
* Gets or sets the queryable only is live status.
|
|
60524
|
+
*/
|
|
60525
|
+
isLive?: boolean;
|
|
60526
|
+
/**
|
|
60527
|
+
* Gets or sets the sort order direction.
|
|
60528
|
+
*/
|
|
60529
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
60530
|
+
}): CancelablePromise<number>;
|
|
60531
|
+
/**
|
|
60532
|
+
* Gets a list of resources unpaged and without references.
|
|
60533
|
+
* @returns VenueType OK
|
|
60534
|
+
* @throws ApiError
|
|
60535
|
+
*/
|
|
60536
|
+
getListWithoutReferences({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60537
|
+
/**
|
|
60538
|
+
* Gets or sets the page number for paged queries.
|
|
60539
|
+
*/
|
|
60540
|
+
pageNumber?: number;
|
|
60541
|
+
/**
|
|
60542
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
60543
|
+
*/
|
|
60544
|
+
take?: number;
|
|
60545
|
+
/**
|
|
60546
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
60547
|
+
*/
|
|
60548
|
+
skip?: number;
|
|
60549
|
+
/**
|
|
60550
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
60551
|
+
*/
|
|
60552
|
+
limitListRequests?: boolean;
|
|
60553
|
+
/**
|
|
60554
|
+
* Gets or sets the Tenant Id.
|
|
60555
|
+
*/
|
|
60556
|
+
tenantId?: string;
|
|
60557
|
+
/**
|
|
60558
|
+
* Gets or sets the Modifed By Id.
|
|
60559
|
+
*/
|
|
60560
|
+
modifiedById?: string;
|
|
60561
|
+
/**
|
|
60562
|
+
* Gets or sets the Modifed By Ids.
|
|
60563
|
+
*/
|
|
60564
|
+
modifiedByIds?: Array<string>;
|
|
60565
|
+
/**
|
|
60566
|
+
* Gets or sets the Date Created greater than equal to.
|
|
60567
|
+
*/
|
|
60568
|
+
dateCreatedGte?: string;
|
|
60569
|
+
/**
|
|
60570
|
+
* Gets or sets the Date Created less than equal to.
|
|
60571
|
+
*/
|
|
60572
|
+
dateCreatedLte?: string;
|
|
60573
|
+
/**
|
|
60574
|
+
* Gets or sets the queryable only is live status.
|
|
60575
|
+
*/
|
|
60576
|
+
isLive?: boolean;
|
|
60577
|
+
/**
|
|
60578
|
+
* Gets or sets the sort order direction.
|
|
60579
|
+
*/
|
|
60580
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
60581
|
+
}): CancelablePromise<Array<VenueType>>;
|
|
60582
|
+
/**
|
|
60583
|
+
* Gets a list of resources.
|
|
60584
|
+
* @returns VenueType OK
|
|
60585
|
+
* @throws ApiError
|
|
60586
|
+
*/
|
|
60587
|
+
getListIdName({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
60588
|
+
/**
|
|
60589
|
+
* Gets or sets the page number for paged queries.
|
|
60590
|
+
*/
|
|
60591
|
+
pageNumber?: number;
|
|
60592
|
+
/**
|
|
60593
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
60594
|
+
*/
|
|
60595
|
+
take?: number;
|
|
60596
|
+
/**
|
|
60597
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
60598
|
+
*/
|
|
60599
|
+
skip?: number;
|
|
60600
|
+
/**
|
|
60601
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
60602
|
+
*/
|
|
60603
|
+
limitListRequests?: boolean;
|
|
60604
|
+
/**
|
|
60605
|
+
* Gets or sets the Tenant Id.
|
|
60606
|
+
*/
|
|
60607
|
+
tenantId?: string;
|
|
60608
|
+
/**
|
|
60609
|
+
* Gets or sets the Modifed By Id.
|
|
60610
|
+
*/
|
|
60611
|
+
modifiedById?: string;
|
|
60612
|
+
/**
|
|
60613
|
+
* Gets or sets the Modifed By Ids.
|
|
60614
|
+
*/
|
|
60615
|
+
modifiedByIds?: Array<string>;
|
|
60616
|
+
/**
|
|
60617
|
+
* Gets or sets the Date Created greater than equal to.
|
|
60618
|
+
*/
|
|
60619
|
+
dateCreatedGte?: string;
|
|
60620
|
+
/**
|
|
60621
|
+
* Gets or sets the Date Created less than equal to.
|
|
60622
|
+
*/
|
|
60623
|
+
dateCreatedLte?: string;
|
|
60624
|
+
/**
|
|
60625
|
+
* Gets or sets the queryable only is live status.
|
|
60626
|
+
*/
|
|
60627
|
+
isLive?: boolean;
|
|
60628
|
+
/**
|
|
60629
|
+
* Gets or sets the sort order direction.
|
|
60630
|
+
*/
|
|
60631
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
60632
|
+
}): CancelablePromise<Array<VenueType>>;
|
|
60633
|
+
}
|
|
60634
|
+
|
|
59836
60635
|
declare class WaitlistActivityService {
|
|
59837
60636
|
readonly httpRequest: BaseHttpRequest;
|
|
59838
60637
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -62122,6 +62921,7 @@ declare class ApiClient {
|
|
|
62122
62921
|
readonly publicSurveys: PublicSurveysService;
|
|
62123
62922
|
readonly publicTenants: PublicTenantsService;
|
|
62124
62923
|
readonly publicVenues: PublicVenuesService;
|
|
62924
|
+
readonly publicVenueTypes: PublicVenueTypesService;
|
|
62125
62925
|
readonly publicWaitlistActivity: PublicWaitlistActivityService;
|
|
62126
62926
|
readonly publicWaitlistOpportunity: PublicWaitlistOpportunityService;
|
|
62127
62927
|
readonly recentOrderActivityReport: RecentOrderActivityReportService;
|
|
@@ -62158,6 +62958,7 @@ declare class ApiClient {
|
|
|
62158
62958
|
readonly venuePerformance: VenuePerformanceService;
|
|
62159
62959
|
readonly venues: VenuesService;
|
|
62160
62960
|
readonly venuesReport: VenuesReportService;
|
|
62961
|
+
readonly venueType: VenueTypeService;
|
|
62161
62962
|
readonly waitlistActivity: WaitlistActivityService;
|
|
62162
62963
|
readonly waitlistActivityReport: WaitlistActivityReportService;
|
|
62163
62964
|
readonly waitlistOpportunity: WaitlistOpportunityService;
|
|
@@ -62293,4 +63094,4 @@ type ValidationResultModel = {
|
|
|
62293
63094
|
readonly errors?: Array<ValidationError> | null;
|
|
62294
63095
|
};
|
|
62295
63096
|
|
|
62296
|
-
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateTemplateFieldPermission, CreateVenue, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EndUserIdentity, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, EventTiming, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FieldPermission, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationReportSummary, LocationsReportService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderApplyDiscountCode, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemReportSummary, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProviderType, 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, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ResolveSecureAccessTokenRequest, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpcomingLayout, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistConversionStatsResponseDto, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|
|
63097
|
+
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CourseEmailWaitlistPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateTemplateFieldPermission, CreateVenue, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EndUserIdentity, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, EventTiming, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FieldPermission, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationReportSummary, LocationsReportService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderApplyDiscountCode, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemReportSummary, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProviderType, 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, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ResolveSecureAccessTokenRequest, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionEmailWaitlistPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpcomingLayout, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenueType, VenueTypePage, VenueTypePatch, VenueTypePost, VenueTypeService, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistConversionStatsResponseDto, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|