reach-api-sdk 1.0.202 → 1.0.204

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/dist/reach-sdk.d.ts +1702 -480
  2. package/dist/reach-sdk.js +1127 -212
  3. package/package.json +1 -1
  4. package/src/apiClient.ts +6 -0
  5. package/src/definition/swagger.yaml +5022 -2064
  6. package/src/index.ts +8 -0
  7. package/src/models/CourseEmailWaitlistPatch.ts +22 -0
  8. package/src/models/CreateOffer.ts +8 -0
  9. package/src/models/CreateQuestion.ts +4 -0
  10. package/src/models/Offer.ts +8 -0
  11. package/src/models/OfferPatch.ts +8 -0
  12. package/src/models/OfferPost.ts +8 -0
  13. package/src/models/Permission.ts +4 -0
  14. package/src/models/PermissionPatch.ts +4 -0
  15. package/src/models/ScheduledSessionEmailWaitlistPatch.ts +22 -0
  16. package/src/models/SurveyCompletionLog.ts +4 -0
  17. package/src/models/SurveyQuestionType.ts +5 -0
  18. package/src/models/TemplateOffer.ts +24 -0
  19. package/src/models/UpdateOffer.ts +8 -0
  20. package/src/models/UserPermission.ts +4 -0
  21. package/src/models/UserPermissionPatch.ts +4 -0
  22. package/src/models/Venue.ts +4 -0
  23. package/src/models/VenueType.ts +42 -0
  24. package/src/models/VenueTypePage.ts +12 -0
  25. package/src/models/VenueTypePatch.ts +26 -0
  26. package/src/models/VenueTypePost.ts +22 -0
  27. package/src/services/CoursesService.ts +35 -0
  28. package/src/services/GenericActivityService.ts +36 -0
  29. package/src/services/PublicGenericActivityService.ts +323 -0
  30. package/src/services/PublicSurveyCompletionLogsService.ts +12 -0
  31. package/src/services/PublicVenueTypesService.ts +401 -0
  32. package/src/services/PublicVenuesService.ts +237 -0
  33. package/src/services/ScheduledSessionsService.ts +35 -0
  34. package/src/services/SurveyCompletionLogService.ts +30 -0
  35. package/src/services/VenueTypeService.ts +662 -0
  36. package/src/services/VenuesService.ts +30 -0
@@ -4233,6 +4233,14 @@ type Offer = {
4233
4233
  * Gets or sets the course id.
4234
4234
  */
4235
4235
  courseId?: string | null;
4236
+ /**
4237
+ * Gets or sets the survey id.
4238
+ */
4239
+ surveyId?: string | null;
4240
+ /**
4241
+ * Gets or sets the survey id.
4242
+ */
4243
+ postCompletionSurveyId?: string | null;
4236
4244
  /**
4237
4245
  * Gets or sets the offer name.
4238
4246
  */
@@ -4601,6 +4609,10 @@ type Venue = {
4601
4609
  * Gets a formatted label representation for the activity types available at the venue.
4602
4610
  */
4603
4611
  readonly activityTypesAvailableFormatted?: string | null;
4612
+ /**
4613
+ * Gets or sets the venue type id.
4614
+ */
4615
+ venueTypeId?: string | null;
4604
4616
  /**
4605
4617
  * Gets or sets the user that the venue is assigned to.
4606
4618
  */
@@ -7997,6 +8009,14 @@ type CreateOffer = {
7997
8009
  * Gets or sets the offer description.
7998
8010
  */
7999
8011
  description?: string | null;
8012
+ /**
8013
+ * Gets or sets the survey id.
8014
+ */
8015
+ surveyId?: string | null;
8016
+ /**
8017
+ * Gets or sets the post completion survey id.
8018
+ */
8019
+ postCompletionSurveyId?: string | null;
8000
8020
  };
8001
8021
 
8002
8022
  /**
@@ -8209,6 +8229,24 @@ type CourseEmailAttendeesPatch = {
8209
8229
  message?: string | null;
8210
8230
  };
8211
8231
 
8232
+ /**
8233
+ * Post model for email course waitlist.
8234
+ */
8235
+ type CourseEmailWaitlistPatch = {
8236
+ /**
8237
+ * Gets or sets the tenant Id.
8238
+ */
8239
+ tenantId: string;
8240
+ /**
8241
+ * Gets or sets the Id.
8242
+ */
8243
+ id: string;
8244
+ /**
8245
+ * Gets or sets the message body.
8246
+ */
8247
+ message?: string | null;
8248
+ };
8249
+
8212
8250
  type CoursePage = {
8213
8251
  pagination: Pagination;
8214
8252
  readonly items: Array<Course>;
@@ -8268,6 +8306,14 @@ type UpdateOffer = {
8268
8306
  * Gets or sets the offer description.
8269
8307
  */
8270
8308
  description?: string | null;
8309
+ /**
8310
+ * Gets or sets the survey id.
8311
+ */
8312
+ surveyId?: string | null;
8313
+ /**
8314
+ * Gets or sets the post completion survey id.
8315
+ */
8316
+ postCompletionSurveyId?: string | null;
8271
8317
  };
8272
8318
 
8273
8319
  /**
@@ -8522,6 +8568,21 @@ declare class CoursesService {
8522
8568
  */
8523
8569
  requestBody?: CourseEmailAttendeesPatch;
8524
8570
  }): CancelablePromise<ScheduledSession>;
8571
+ /**
8572
+ * Emails all on waitlist for the opportunity />.
8573
+ * @returns ScheduledSession OK
8574
+ * @throws ApiError
8575
+ */
8576
+ contactWaitlist({ courseId, requestBody, }: {
8577
+ /**
8578
+ * The course Id.
8579
+ */
8580
+ courseId: string;
8581
+ /**
8582
+ * The patch model.
8583
+ */
8584
+ requestBody?: CourseEmailWaitlistPatch;
8585
+ }): CancelablePromise<ScheduledSession>;
8525
8586
  /**
8526
8587
  * Sends the post course completion email />.
8527
8588
  * @returns any OK
@@ -16007,7 +16068,7 @@ declare class GenericActivityService {
16007
16068
  * @returns GenericActivity OK
16008
16069
  * @throws ApiError
16009
16070
  */
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, }: {
16071
+ 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
16072
  /**
16012
16073
  * Gets or sets the wildcard for use in a query search.
16013
16074
  */
@@ -16140,6 +16201,10 @@ declare class GenericActivityService {
16140
16201
  * Gets or sets AmenityId.
16141
16202
  */
16142
16203
  amenity?: Array<number>;
16204
+ /**
16205
+ * Gets or sets a list of venue type ids.
16206
+ */
16207
+ venueTypeIds?: Array<string>;
16143
16208
  /**
16144
16209
  * Gets or sets the Programme ids.
16145
16210
  */
@@ -16205,7 +16270,7 @@ declare class GenericActivityService {
16205
16270
  * @returns boolean OK
16206
16271
  * @throws ApiError
16207
16272
  */
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, }: {
16273
+ 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
16274
  /**
16210
16275
  * Gets or sets the wildcard for use in a query search.
16211
16276
  */
@@ -16338,6 +16403,10 @@ declare class GenericActivityService {
16338
16403
  * Gets or sets AmenityId.
16339
16404
  */
16340
16405
  amenity?: Array<number>;
16406
+ /**
16407
+ * Gets or sets a list of venue type ids.
16408
+ */
16409
+ venueTypeIds?: Array<string>;
16341
16410
  /**
16342
16411
  * Gets or sets the Programme ids.
16343
16412
  */
@@ -16392,7 +16461,7 @@ declare class GenericActivityService {
16392
16461
  * @returns number OK
16393
16462
  * @throws ApiError
16394
16463
  */
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, }: {
16464
+ 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
16465
  /**
16397
16466
  * Gets or sets the wildcard for use in a query search.
16398
16467
  */
@@ -16525,6 +16594,10 @@ declare class GenericActivityService {
16525
16594
  * Gets or sets AmenityId.
16526
16595
  */
16527
16596
  amenity?: Array<number>;
16597
+ /**
16598
+ * Gets or sets a list of venue type ids.
16599
+ */
16600
+ venueTypeIds?: Array<string>;
16528
16601
  /**
16529
16602
  * Gets or sets the Programme ids.
16530
16603
  */
@@ -16579,7 +16652,7 @@ declare class GenericActivityService {
16579
16652
  * @returns GenericActivityPage OK
16580
16653
  * @throws ApiError
16581
16654
  */
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, }: {
16655
+ 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
16656
  /**
16584
16657
  * Gets or sets the wildcard for use in a query search.
16585
16658
  */
@@ -16712,6 +16785,10 @@ declare class GenericActivityService {
16712
16785
  * Gets or sets AmenityId.
16713
16786
  */
16714
16787
  amenity?: Array<number>;
16788
+ /**
16789
+ * Gets or sets a list of venue type ids.
16790
+ */
16791
+ venueTypeIds?: Array<string>;
16715
16792
  /**
16716
16793
  * Gets or sets the Programme ids.
16717
16794
  */
@@ -16766,7 +16843,7 @@ declare class GenericActivityService {
16766
16843
  * @returns GenericActivity OK
16767
16844
  * @throws ApiError
16768
16845
  */
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, }: {
16846
+ 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
16847
  /**
16771
16848
  * Gets or sets the wildcard for use in a query search.
16772
16849
  */
@@ -16899,6 +16976,10 @@ declare class GenericActivityService {
16899
16976
  * Gets or sets AmenityId.
16900
16977
  */
16901
16978
  amenity?: Array<number>;
16979
+ /**
16980
+ * Gets or sets a list of venue type ids.
16981
+ */
16982
+ venueTypeIds?: Array<string>;
16902
16983
  /**
16903
16984
  * Gets or sets the Programme ids.
16904
16985
  */
@@ -16953,7 +17034,7 @@ declare class GenericActivityService {
16953
17034
  * @returns GenericActivity OK
16954
17035
  * @throws ApiError
16955
17036
  */
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, }: {
17037
+ 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
17038
  /**
16958
17039
  * Gets or sets the wildcard for use in a query search.
16959
17040
  */
@@ -17086,6 +17167,10 @@ declare class GenericActivityService {
17086
17167
  * Gets or sets AmenityId.
17087
17168
  */
17088
17169
  amenity?: Array<number>;
17170
+ /**
17171
+ * Gets or sets a list of venue type ids.
17172
+ */
17173
+ venueTypeIds?: Array<string>;
17089
17174
  /**
17090
17175
  * Gets or sets the Programme ids.
17091
17176
  */
@@ -21672,6 +21757,14 @@ type OfferPatch = {
21672
21757
  * Gets or sets the course id.
21673
21758
  */
21674
21759
  courseId?: string | null;
21760
+ /**
21761
+ * Gets or sets the survey id.
21762
+ */
21763
+ surveyId?: string | null;
21764
+ /**
21765
+ * Gets or sets the post completion survey id.
21766
+ */
21767
+ postCompletionSurveyId?: string | null;
21675
21768
  /**
21676
21769
  * Gets or sets the offer name.
21677
21770
  */
@@ -21710,6 +21803,14 @@ type OfferPost = {
21710
21803
  * Gets or sets the course id.
21711
21804
  */
21712
21805
  courseId?: string | null;
21806
+ /**
21807
+ * Gets or sets the survey id.
21808
+ */
21809
+ surveyId?: string | null;
21810
+ /**
21811
+ * Gets or sets the post completion survey id.
21812
+ */
21813
+ postCompletionSurveyId?: string | null;
21713
21814
  /**
21714
21815
  * Gets or sets the offer name.
21715
21816
  */
@@ -28152,6 +28253,10 @@ type Permission = {
28152
28253
  * Gets or sets a value indicating whether a venue manager has send emails permissions.
28153
28254
  */
28154
28255
  venueManagerSendEmails?: boolean;
28256
+ /**
28257
+ * Gets or sets a value indicating whether a venue manager has manage opportunity permissions.
28258
+ */
28259
+ venueManagerManageOpportunity?: boolean;
28155
28260
  };
28156
28261
 
28157
28262
  type PermissionPage = {
@@ -28235,6 +28340,10 @@ type PermissionPatch = {
28235
28340
  * Gets or sets a value indicating whether a venue manager has send emails permissions.
28236
28341
  */
28237
28342
  venueManagerSendEmails?: boolean;
28343
+ /**
28344
+ * Gets or sets a value indicating whether a venue manager has manage opportunity permissions.
28345
+ */
28346
+ venueManagerManageOpportunity?: boolean;
28238
28347
  };
28239
28348
 
28240
28349
  /**
@@ -32236,7 +32345,7 @@ declare class PublicGenericActivityService {
32236
32345
  * @returns GenericActivityPage OK
32237
32346
  * @throws ApiError
32238
32347
  */
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, }: {
32348
+ 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
32349
  xTenantSubdomain?: string;
32241
32350
  /**
32242
32351
  * Gets or sets the wildcard for use in a query search.
@@ -32371,192 +32480,200 @@ declare class PublicGenericActivityService {
32371
32480
  */
32372
32481
  amenity?: Array<number>;
32373
32482
  /**
32374
- * Gets or sets the Programme ids.
32375
- */
32376
- programmeIds?: Array<string>;
32377
- /**
32378
- * Gets or sets the page number for paged queries.
32379
- */
32380
- pageNumber?: number;
32381
- /**
32382
- * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
32383
- */
32384
- take?: number;
32385
- /**
32386
- * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
32387
- */
32388
- skip?: number;
32389
- /**
32390
- * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
32391
- */
32392
- limitListRequests?: boolean;
32393
- /**
32394
- * Gets or sets the Tenant Id.
32395
- */
32396
- tenantId?: string;
32397
- /**
32398
- * Gets or sets the Modifed By Id.
32399
- */
32400
- modifiedById?: string;
32401
- /**
32402
- * Gets or sets the Modifed By Ids.
32403
- */
32404
- modifiedByIds?: Array<string>;
32405
- /**
32406
- * Gets or sets the Date Created greater than equal to.
32407
- */
32408
- dateCreatedGte?: string;
32409
- /**
32410
- * Gets or sets the Date Created less than equal to.
32411
- */
32412
- dateCreatedLte?: string;
32413
- /**
32414
- * Gets or sets the queryable only is live status.
32415
- */
32416
- isLive?: boolean;
32417
- /**
32418
- * Gets or sets the sort order direction.
32419
- */
32420
- sortOrderDirection?: SearchSortOrderDirection;
32421
- }): CancelablePromise<GenericActivityPage>;
32422
- /**
32423
- * Get activities for a network.
32424
- * @returns GenericActivityPage OK
32425
- * @throws ApiError
32426
- */
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, }: {
32428
- /**
32429
- * Gets or sets the wildcard for use in a query search.
32430
- */
32431
- wildcard?: string;
32432
- /**
32433
- * Gets or sets the queryable Venue Id.
32434
- */
32435
- venueId?: string;
32436
- /**
32437
- * Gets or sets the queryable Provider Id.
32438
- */
32439
- providerId?: string;
32440
- /**
32441
- * Gets or sets the queryable Programme Id.
32442
- */
32443
- programmeId?: string;
32444
- /**
32445
- * Gets or sets a value indicating whether return online activities.
32483
+ * Gets or sets a list of venue type ids.
32446
32484
  */
32447
- online?: boolean;
32448
- /**
32449
- * Gets or sets a value indicating whether to include archived activities.
32450
- */
32451
- archived?: boolean;
32452
- /**
32453
- * Gets or sets a value indicating whether to include deleted activities.
32454
- */
32455
- deleted?: boolean;
32456
- /**
32457
- * Gets or sets the activity type.
32458
- */
32459
- activityType?: ActivityType;
32460
- /**
32461
- * Gets or sets a value indicating whether to inlcude the activities next availability.
32462
- */
32463
- includeNextOpportunity?: boolean;
32464
- /**
32465
- * Gets or sets a value indicating whether to filter on whether the activity is featured.
32466
- */
32467
- featured?: boolean;
32468
- /**
32469
- * Gets or sets a value indicating does session is private or no.
32470
- */
32471
- _private?: boolean;
32472
- /**
32473
- * Gets or sets SearchGeoCenter.
32474
- */
32475
- searchGeoCenter?: string;
32476
- /**
32477
- * Gets or sets OpenactiveActivityId.
32478
- */
32479
- openactiveActivityId?: string;
32480
- /**
32481
- * Gets or sets Activity id.
32482
- */
32483
- activityId?: number;
32484
- /**
32485
- * Gets or sets the queryable session Activity ids.
32486
- */
32487
- activityIds?: Array<number>;
32488
- /**
32489
- * Gets or sets a value indicating whether to include only sessions by given NetworkId.
32490
- */
32491
- networkId?: string;
32492
- /**
32493
- * Gets or sets a value indicating whether the results should return a specific tenant status.
32494
- */
32495
- tenantStatus?: TenantStatus;
32496
- /**
32497
- * Gets or sets Lat.
32498
- */
32499
- lat?: number;
32500
- /**
32501
- * Gets or sets Lng.
32502
- */
32503
- lng?: number;
32504
- /**
32505
- * Gets or sets Distance.
32506
- */
32507
- distance?: number;
32508
- /**
32509
- * Gets or sets MinAgeLTE.
32510
- */
32511
- minAgeLte?: number;
32512
- /**
32513
- * Gets or sets MinAgeGTE.
32514
- */
32515
- minAgeGte?: number;
32516
- /**
32517
- * Gets or sets MaxAgeLTE.
32518
- */
32519
- maxAgeLte?: number;
32520
- /**
32521
- * Gets or sets MaxAgeGTE.
32522
- */
32523
- maxAgeGte?: number;
32524
- /**
32525
- * Gets or sets PriceTotalGTE.
32526
- */
32527
- priceTotalGte?: number;
32528
- /**
32529
- * Gets or sets PriceTotalLTE.
32530
- */
32531
- priceTotalLte?: number;
32532
- /**
32533
- * Gets or sets TimeOfDay.
32534
- */
32535
- timeOfDay?: string;
32536
- /**
32537
- * Gets or sets StartDateTimeGTE.
32538
- */
32539
- startDateTimeGte?: string;
32540
- /**
32541
- * Gets or sets EndDateTimeLTE.
32542
- */
32543
- endDateTimeLte?: string;
32544
- /**
32545
- * Gets or sets Gender.
32546
- */
32547
- gender?: Gender;
32548
- /**
32549
- * Gets or sets PeriodsOfWeek.
32550
- */
32551
- periodsOfWeek?: PeriodsOfWeek;
32552
- /**
32553
- * Gets or sets AdditionalSupport.
32554
- */
32555
- additionalSupport?: Array<string>;
32556
- /**
32557
- * Gets or sets AmenityId.
32558
- */
32559
- amenity?: Array<number>;
32485
+ venueTypeIds?: Array<string>;
32486
+ /**
32487
+ * Gets or sets the Programme ids.
32488
+ */
32489
+ programmeIds?: Array<string>;
32490
+ /**
32491
+ * Gets or sets the page number for paged queries.
32492
+ */
32493
+ pageNumber?: number;
32494
+ /**
32495
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
32496
+ */
32497
+ take?: number;
32498
+ /**
32499
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
32500
+ */
32501
+ skip?: number;
32502
+ /**
32503
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
32504
+ */
32505
+ limitListRequests?: boolean;
32506
+ /**
32507
+ * Gets or sets the Tenant Id.
32508
+ */
32509
+ tenantId?: string;
32510
+ /**
32511
+ * Gets or sets the Modifed By Id.
32512
+ */
32513
+ modifiedById?: string;
32514
+ /**
32515
+ * Gets or sets the Modifed By Ids.
32516
+ */
32517
+ modifiedByIds?: Array<string>;
32518
+ /**
32519
+ * Gets or sets the Date Created greater than equal to.
32520
+ */
32521
+ dateCreatedGte?: string;
32522
+ /**
32523
+ * Gets or sets the Date Created less than equal to.
32524
+ */
32525
+ dateCreatedLte?: string;
32526
+ /**
32527
+ * Gets or sets the queryable only is live status.
32528
+ */
32529
+ isLive?: boolean;
32530
+ /**
32531
+ * Gets or sets the sort order direction.
32532
+ */
32533
+ sortOrderDirection?: SearchSortOrderDirection;
32534
+ }): CancelablePromise<GenericActivityPage>;
32535
+ /**
32536
+ * Get activities for a network.
32537
+ * @returns GenericActivityPage OK
32538
+ * @throws ApiError
32539
+ */
32540
+ 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, }: {
32541
+ /**
32542
+ * Gets or sets the wildcard for use in a query search.
32543
+ */
32544
+ wildcard?: string;
32545
+ /**
32546
+ * Gets or sets the queryable Venue Id.
32547
+ */
32548
+ venueId?: string;
32549
+ /**
32550
+ * Gets or sets the queryable Provider Id.
32551
+ */
32552
+ providerId?: string;
32553
+ /**
32554
+ * Gets or sets the queryable Programme Id.
32555
+ */
32556
+ programmeId?: string;
32557
+ /**
32558
+ * Gets or sets a value indicating whether return online activities.
32559
+ */
32560
+ online?: boolean;
32561
+ /**
32562
+ * Gets or sets a value indicating whether to include archived activities.
32563
+ */
32564
+ archived?: boolean;
32565
+ /**
32566
+ * Gets or sets a value indicating whether to include deleted activities.
32567
+ */
32568
+ deleted?: boolean;
32569
+ /**
32570
+ * Gets or sets the activity type.
32571
+ */
32572
+ activityType?: ActivityType;
32573
+ /**
32574
+ * Gets or sets a value indicating whether to inlcude the activities next availability.
32575
+ */
32576
+ includeNextOpportunity?: boolean;
32577
+ /**
32578
+ * Gets or sets a value indicating whether to filter on whether the activity is featured.
32579
+ */
32580
+ featured?: boolean;
32581
+ /**
32582
+ * Gets or sets a value indicating does session is private or no.
32583
+ */
32584
+ _private?: boolean;
32585
+ /**
32586
+ * Gets or sets SearchGeoCenter.
32587
+ */
32588
+ searchGeoCenter?: string;
32589
+ /**
32590
+ * Gets or sets OpenactiveActivityId.
32591
+ */
32592
+ openactiveActivityId?: string;
32593
+ /**
32594
+ * Gets or sets Activity id.
32595
+ */
32596
+ activityId?: number;
32597
+ /**
32598
+ * Gets or sets the queryable session Activity ids.
32599
+ */
32600
+ activityIds?: Array<number>;
32601
+ /**
32602
+ * Gets or sets a value indicating whether to include only sessions by given NetworkId.
32603
+ */
32604
+ networkId?: string;
32605
+ /**
32606
+ * Gets or sets a value indicating whether the results should return a specific tenant status.
32607
+ */
32608
+ tenantStatus?: TenantStatus;
32609
+ /**
32610
+ * Gets or sets Lat.
32611
+ */
32612
+ lat?: number;
32613
+ /**
32614
+ * Gets or sets Lng.
32615
+ */
32616
+ lng?: number;
32617
+ /**
32618
+ * Gets or sets Distance.
32619
+ */
32620
+ distance?: number;
32621
+ /**
32622
+ * Gets or sets MinAgeLTE.
32623
+ */
32624
+ minAgeLte?: number;
32625
+ /**
32626
+ * Gets or sets MinAgeGTE.
32627
+ */
32628
+ minAgeGte?: number;
32629
+ /**
32630
+ * Gets or sets MaxAgeLTE.
32631
+ */
32632
+ maxAgeLte?: number;
32633
+ /**
32634
+ * Gets or sets MaxAgeGTE.
32635
+ */
32636
+ maxAgeGte?: number;
32637
+ /**
32638
+ * Gets or sets PriceTotalGTE.
32639
+ */
32640
+ priceTotalGte?: number;
32641
+ /**
32642
+ * Gets or sets PriceTotalLTE.
32643
+ */
32644
+ priceTotalLte?: number;
32645
+ /**
32646
+ * Gets or sets TimeOfDay.
32647
+ */
32648
+ timeOfDay?: string;
32649
+ /**
32650
+ * Gets or sets StartDateTimeGTE.
32651
+ */
32652
+ startDateTimeGte?: string;
32653
+ /**
32654
+ * Gets or sets EndDateTimeLTE.
32655
+ */
32656
+ endDateTimeLte?: string;
32657
+ /**
32658
+ * Gets or sets Gender.
32659
+ */
32660
+ gender?: Gender;
32661
+ /**
32662
+ * Gets or sets PeriodsOfWeek.
32663
+ */
32664
+ periodsOfWeek?: PeriodsOfWeek;
32665
+ /**
32666
+ * Gets or sets AdditionalSupport.
32667
+ */
32668
+ additionalSupport?: Array<string>;
32669
+ /**
32670
+ * Gets or sets AmenityId.
32671
+ */
32672
+ amenity?: Array<number>;
32673
+ /**
32674
+ * Gets or sets a list of venue type ids.
32675
+ */
32676
+ venueTypeIds?: Array<string>;
32560
32677
  /**
32561
32678
  * Gets or sets the Programme ids.
32562
32679
  */
@@ -32611,7 +32728,7 @@ declare class PublicGenericActivityService {
32611
32728
  * @returns GenericActivity OK
32612
32729
  * @throws ApiError
32613
32730
  */
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, }: {
32731
+ 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
32732
  /**
32616
32733
  * The tenants subdomain.
32617
32734
  */
@@ -32748,6 +32865,10 @@ declare class PublicGenericActivityService {
32748
32865
  * Gets or sets AmenityId.
32749
32866
  */
32750
32867
  amenity?: Array<number>;
32868
+ /**
32869
+ * Gets or sets a list of venue type ids.
32870
+ */
32871
+ venueTypeIds?: Array<string>;
32751
32872
  /**
32752
32873
  * Gets or sets the Programme ids.
32753
32874
  */
@@ -32820,12 +32941,205 @@ declare class PublicGenericActivityService {
32820
32941
  */
32821
32942
  networkId?: string;
32822
32943
  }): CancelablePromise<Array<Activity>>;
32944
+ /**
32945
+ * Retrieves a paged list of activities using optimized raw SQL queries.
32946
+ * This endpoint loads all related data (images, offers, sessions) in a single query using JSON aggregation,
32947
+ * eliminating the overhead of OnPagedItemsLoaded method. Returns only minimal required fields.
32948
+ * @returns GenericActivityPage OK
32949
+ * @throws ApiError
32950
+ */
32951
+ getPageOptimized({ 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, }: {
32952
+ /**
32953
+ * Gets or sets the wildcard for use in a query search.
32954
+ */
32955
+ wildcard?: string;
32956
+ /**
32957
+ * Gets or sets the queryable Venue Id.
32958
+ */
32959
+ venueId?: string;
32960
+ /**
32961
+ * Gets or sets the queryable Provider Id.
32962
+ */
32963
+ providerId?: string;
32964
+ /**
32965
+ * Gets or sets the queryable Programme Id.
32966
+ */
32967
+ programmeId?: string;
32968
+ /**
32969
+ * Gets or sets a value indicating whether return online activities.
32970
+ */
32971
+ online?: boolean;
32972
+ /**
32973
+ * Gets or sets a value indicating whether to include archived activities.
32974
+ */
32975
+ archived?: boolean;
32976
+ /**
32977
+ * Gets or sets a value indicating whether to include deleted activities.
32978
+ */
32979
+ deleted?: boolean;
32980
+ /**
32981
+ * Gets or sets the activity type.
32982
+ */
32983
+ activityType?: ActivityType;
32984
+ /**
32985
+ * Gets or sets a value indicating whether to inlcude the activities next availability.
32986
+ */
32987
+ includeNextOpportunity?: boolean;
32988
+ /**
32989
+ * Gets or sets a value indicating whether to filter on whether the activity is featured.
32990
+ */
32991
+ featured?: boolean;
32992
+ /**
32993
+ * Gets or sets a value indicating does session is private or no.
32994
+ */
32995
+ _private?: boolean;
32996
+ /**
32997
+ * Gets or sets SearchGeoCenter.
32998
+ */
32999
+ searchGeoCenter?: string;
33000
+ /**
33001
+ * Gets or sets OpenactiveActivityId.
33002
+ */
33003
+ openactiveActivityId?: string;
33004
+ /**
33005
+ * Gets or sets Activity id.
33006
+ */
33007
+ activityId?: number;
33008
+ /**
33009
+ * Gets or sets the queryable session Activity ids.
33010
+ */
33011
+ activityIds?: Array<number>;
33012
+ /**
33013
+ * Gets or sets a value indicating whether to include only sessions by given NetworkId.
33014
+ */
33015
+ networkId?: string;
33016
+ /**
33017
+ * Gets or sets a value indicating whether the results should return a specific tenant status.
33018
+ */
33019
+ tenantStatus?: TenantStatus;
33020
+ /**
33021
+ * Gets or sets Lat.
33022
+ */
33023
+ lat?: number;
33024
+ /**
33025
+ * Gets or sets Lng.
33026
+ */
33027
+ lng?: number;
33028
+ /**
33029
+ * Gets or sets Distance.
33030
+ */
33031
+ distance?: number;
33032
+ /**
33033
+ * Gets or sets MinAgeLTE.
33034
+ */
33035
+ minAgeLte?: number;
33036
+ /**
33037
+ * Gets or sets MinAgeGTE.
33038
+ */
33039
+ minAgeGte?: number;
33040
+ /**
33041
+ * Gets or sets MaxAgeLTE.
33042
+ */
33043
+ maxAgeLte?: number;
33044
+ /**
33045
+ * Gets or sets MaxAgeGTE.
33046
+ */
33047
+ maxAgeGte?: number;
33048
+ /**
33049
+ * Gets or sets PriceTotalGTE.
33050
+ */
33051
+ priceTotalGte?: number;
33052
+ /**
33053
+ * Gets or sets PriceTotalLTE.
33054
+ */
33055
+ priceTotalLte?: number;
33056
+ /**
33057
+ * Gets or sets TimeOfDay.
33058
+ */
33059
+ timeOfDay?: string;
33060
+ /**
33061
+ * Gets or sets StartDateTimeGTE.
33062
+ */
33063
+ startDateTimeGte?: string;
33064
+ /**
33065
+ * Gets or sets EndDateTimeLTE.
33066
+ */
33067
+ endDateTimeLte?: string;
33068
+ /**
33069
+ * Gets or sets Gender.
33070
+ */
33071
+ gender?: Gender;
33072
+ /**
33073
+ * Gets or sets PeriodsOfWeek.
33074
+ */
33075
+ periodsOfWeek?: PeriodsOfWeek;
33076
+ /**
33077
+ * Gets or sets AdditionalSupport.
33078
+ */
33079
+ additionalSupport?: Array<string>;
33080
+ /**
33081
+ * Gets or sets AmenityId.
33082
+ */
33083
+ amenity?: Array<number>;
33084
+ /**
33085
+ * Gets or sets a list of venue type ids.
33086
+ */
33087
+ venueTypeIds?: Array<string>;
33088
+ /**
33089
+ * Gets or sets the Programme ids.
33090
+ */
33091
+ programmeIds?: Array<string>;
33092
+ /**
33093
+ * Gets or sets the page number for paged queries.
33094
+ */
33095
+ pageNumber?: number;
33096
+ /**
33097
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
33098
+ */
33099
+ take?: number;
33100
+ /**
33101
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
33102
+ */
33103
+ skip?: number;
33104
+ /**
33105
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
33106
+ */
33107
+ limitListRequests?: boolean;
33108
+ /**
33109
+ * Gets or sets the Tenant Id.
33110
+ */
33111
+ tenantId?: string;
33112
+ /**
33113
+ * Gets or sets the Modifed By Id.
33114
+ */
33115
+ modifiedById?: string;
33116
+ /**
33117
+ * Gets or sets the Modifed By Ids.
33118
+ */
33119
+ modifiedByIds?: Array<string>;
33120
+ /**
33121
+ * Gets or sets the Date Created greater than equal to.
33122
+ */
33123
+ dateCreatedGte?: string;
33124
+ /**
33125
+ * Gets or sets the Date Created less than equal to.
33126
+ */
33127
+ dateCreatedLte?: string;
33128
+ /**
33129
+ * Gets or sets the queryable only is live status.
33130
+ */
33131
+ isLive?: boolean;
33132
+ /**
33133
+ * Gets or sets the sort order direction.
33134
+ */
33135
+ sortOrderDirection?: SearchSortOrderDirection;
33136
+ }): CancelablePromise<GenericActivityPage>;
32823
33137
  /**
32824
33138
  * Returns a value indicating whether the resource exists in the database given the provided search params.
32825
33139
  * @returns boolean OK
32826
33140
  * @throws ApiError
32827
33141
  */
32828
- 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, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
33142
+ 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, }: {
32829
33143
  /**
32830
33144
  * The tenants subdomain.
32831
33145
  */
@@ -32962,6 +33276,10 @@ declare class PublicGenericActivityService {
32962
33276
  * Gets or sets AmenityId.
32963
33277
  */
32964
33278
  amenity?: Array<number>;
33279
+ /**
33280
+ * Gets or sets a list of venue type ids.
33281
+ */
33282
+ venueTypeIds?: Array<string>;
32965
33283
  /**
32966
33284
  * Gets or sets the Programme ids.
32967
33285
  */
@@ -37514,6 +37832,10 @@ type SurveyCompletionLog = {
37514
37832
  * Gets or sets the course id.
37515
37833
  */
37516
37834
  courseId?: string | null;
37835
+ /**
37836
+ * Gets or sets the offer id.
37837
+ */
37838
+ offerId?: string | null;
37517
37839
  };
37518
37840
 
37519
37841
  type SurveyCompletionLogPage = {
@@ -37575,7 +37897,7 @@ declare class PublicSurveyCompletionLogsService {
37575
37897
  * @returns SurveyCompletionLogPage OK
37576
37898
  * @throws ApiError
37577
37899
  */
37578
- getPage({ xTenantSubdomain, surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
37900
+ getPage({ xTenantSubdomain, surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, offerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
37579
37901
  xTenantSubdomain?: string;
37580
37902
  /**
37581
37903
  * Gets or sets the queryable Survey Id.
@@ -37601,6 +37923,10 @@ declare class PublicSurveyCompletionLogsService {
37601
37923
  * Gets or sets the queryable Course Id.
37602
37924
  */
37603
37925
  courseId?: string;
37926
+ /**
37927
+ * Gets or sets the queryable Offer Id.
37928
+ */
37929
+ offerId?: string;
37604
37930
  /**
37605
37931
  * Gets or sets the page number for paged queries.
37606
37932
  */
@@ -37711,7 +38037,7 @@ declare class PublicSurveyCompletionLogsService {
37711
38037
  * @returns boolean OK
37712
38038
  * @throws ApiError
37713
38039
  */
37714
- exists({ xTenantSubdomain, surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38040
+ exists({ xTenantSubdomain, surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, offerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
37715
38041
  /**
37716
38042
  * The tenants subdomain.
37717
38043
  */
@@ -37740,6 +38066,10 @@ declare class PublicSurveyCompletionLogsService {
37740
38066
  * Gets or sets the queryable Course Id.
37741
38067
  */
37742
38068
  courseId?: string;
38069
+ /**
38070
+ * Gets or sets the queryable Offer Id.
38071
+ */
38072
+ offerId?: string;
37743
38073
  /**
37744
38074
  * Gets or sets the page number for paged queries.
37745
38075
  */
@@ -37836,7 +38166,12 @@ declare enum SurveyQuestionType {
37836
38166
  TEXT = "Text",
37837
38167
  SELECT = "Select",
37838
38168
  CHECKBOX = "Checkbox",
37839
- NUMBER = "Number"
38169
+ NUMBER = "Number",
38170
+ TEXT_LONG = "TextLong",
38171
+ BOOLEAN = "Boolean",
38172
+ DATE = "Date",
38173
+ RATING = "Rating",
38174
+ FILE_UPLOAD = "FileUpload"
37840
38175
  }
37841
38176
 
37842
38177
  /**
@@ -39343,7 +39678,7 @@ declare class PublicVenuesService {
39343
39678
  * @returns VenuePage OK
39344
39679
  * @throws ApiError
39345
39680
  */
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, }: {
39681
+ 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
39682
  xTenantSubdomain?: string;
39348
39683
  /**
39349
39684
  * Gets or sets the queryable venue ids.
@@ -39429,6 +39764,10 @@ declare class PublicVenuesService {
39429
39764
  * Gets or sets the programme ids.
39430
39765
  */
39431
39766
  programmeIds?: Array<string>;
39767
+ /**
39768
+ * Gets or sets the venue type ids.
39769
+ */
39770
+ venueTypeIds?: Array<string>;
39432
39771
  /**
39433
39772
  * Gets or sets the page number for paged queries.
39434
39773
  */
@@ -39494,7 +39833,146 @@ declare class PublicVenuesService {
39494
39833
  * @returns VenuePage OK
39495
39834
  * @throws ApiError
39496
39835
  */
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, }: {
39836
+ 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, }: {
39837
+ /**
39838
+ * Gets or sets the queryable venue ids.
39839
+ */
39840
+ ids?: Array<string>;
39841
+ /**
39842
+ * Gets or sets the queryable venue name wildcard.
39843
+ */
39844
+ wildcard?: string;
39845
+ /**
39846
+ * Gets or sets the queryable venue name.
39847
+ */
39848
+ name?: string;
39849
+ /**
39850
+ * Gets or sets the queryable venue street address.
39851
+ */
39852
+ streetAddress?: string;
39853
+ /**
39854
+ * Gets or sets the queryable venue address postal code.
39855
+ */
39856
+ addressPostalcode?: string;
39857
+ /**
39858
+ * Gets or sets the queryable venue name wildcard.
39859
+ */
39860
+ nameLike?: string;
39861
+ /**
39862
+ * Gets or sets the queryable venue url slug.
39863
+ */
39864
+ slug?: string;
39865
+ /**
39866
+ * Gets or sets the queryable assign to Id.
39867
+ */
39868
+ assignedTo?: string;
39869
+ /**
39870
+ * Gets or sets the queryable stripe account Id.
39871
+ */
39872
+ stripeAccountId?: string;
39873
+ /**
39874
+ * Gets or sets the queryable search geo center.
39875
+ */
39876
+ searchGeoCenter?: string;
39877
+ /**
39878
+ * Gets or sets a value indicating whether to show published venues.
39879
+ */
39880
+ publishedOnWeb?: boolean;
39881
+ /**
39882
+ * Gets or sets a value indicating whether to include archived venues.
39883
+ */
39884
+ archived?: boolean;
39885
+ /**
39886
+ * Gets or sets a value indicating whether to include only sessions by given NetworkId.
39887
+ */
39888
+ networkId?: string;
39889
+ /**
39890
+ * Gets or sets a value indicating whether the results should return a specific tenant status.
39891
+ */
39892
+ tenantStatus?: TenantStatus;
39893
+ /**
39894
+ * Gets or sets the queryable programme Id.
39895
+ */
39896
+ programmeId?: string;
39897
+ /**
39898
+ * Gets or sets a value indicating whether to inlcude the venues opportunity images.
39899
+ */
39900
+ includeOpportunityImages?: boolean;
39901
+ /**
39902
+ * Gets or sets a value indicating whether to inlcude the venues opportunity offers.
39903
+ */
39904
+ includeOpportunityOffers?: boolean;
39905
+ /**
39906
+ * Gets or sets a value indicating whether to inlcude the venues opportunity next availability.
39907
+ */
39908
+ includeNextOpportunity?: boolean;
39909
+ /**
39910
+ * Gets or sets Distance.
39911
+ */
39912
+ distance?: number;
39913
+ /**
39914
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
39915
+ */
39916
+ dashboardRequest?: boolean;
39917
+ /**
39918
+ * Gets or sets the programme ids.
39919
+ */
39920
+ programmeIds?: Array<string>;
39921
+ /**
39922
+ * Gets or sets the venue type ids.
39923
+ */
39924
+ venueTypeIds?: Array<string>;
39925
+ /**
39926
+ * Gets or sets the page number for paged queries.
39927
+ */
39928
+ pageNumber?: number;
39929
+ /**
39930
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
39931
+ */
39932
+ take?: number;
39933
+ /**
39934
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
39935
+ */
39936
+ skip?: number;
39937
+ /**
39938
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
39939
+ */
39940
+ limitListRequests?: boolean;
39941
+ /**
39942
+ * Gets or sets the Tenant Id.
39943
+ */
39944
+ tenantId?: string;
39945
+ /**
39946
+ * Gets or sets the Modifed By Id.
39947
+ */
39948
+ modifiedById?: string;
39949
+ /**
39950
+ * Gets or sets the Modifed By Ids.
39951
+ */
39952
+ modifiedByIds?: Array<string>;
39953
+ /**
39954
+ * Gets or sets the Date Created greater than equal to.
39955
+ */
39956
+ dateCreatedGte?: string;
39957
+ /**
39958
+ * Gets or sets the Date Created less than equal to.
39959
+ */
39960
+ dateCreatedLte?: string;
39961
+ /**
39962
+ * Gets or sets the queryable only is live status.
39963
+ */
39964
+ isLive?: boolean;
39965
+ /**
39966
+ * Gets or sets the sort order direction.
39967
+ */
39968
+ sortOrderDirection?: SearchSortOrderDirection;
39969
+ }): CancelablePromise<VenuePage>;
39970
+ /**
39971
+ * Get Venues for a network using optimized query.
39972
+ * @returns VenuePage OK
39973
+ * @throws ApiError
39974
+ */
39975
+ getNetworkPageOptimized({ 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
39976
  /**
39499
39977
  * Gets or sets the queryable venue ids.
39500
39978
  */
@@ -39579,6 +40057,360 @@ declare class PublicVenuesService {
39579
40057
  * Gets or sets the programme ids.
39580
40058
  */
39581
40059
  programmeIds?: Array<string>;
40060
+ /**
40061
+ * Gets or sets the venue type ids.
40062
+ */
40063
+ venueTypeIds?: Array<string>;
40064
+ /**
40065
+ * Gets or sets the page number for paged queries.
40066
+ */
40067
+ pageNumber?: number;
40068
+ /**
40069
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
40070
+ */
40071
+ take?: number;
40072
+ /**
40073
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
40074
+ */
40075
+ skip?: number;
40076
+ /**
40077
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
40078
+ */
40079
+ limitListRequests?: boolean;
40080
+ /**
40081
+ * Gets or sets the Tenant Id.
40082
+ */
40083
+ tenantId?: string;
40084
+ /**
40085
+ * Gets or sets the Modifed By Id.
40086
+ */
40087
+ modifiedById?: string;
40088
+ /**
40089
+ * Gets or sets the Modifed By Ids.
40090
+ */
40091
+ modifiedByIds?: Array<string>;
40092
+ /**
40093
+ * Gets or sets the Date Created greater than equal to.
40094
+ */
40095
+ dateCreatedGte?: string;
40096
+ /**
40097
+ * Gets or sets the Date Created less than equal to.
40098
+ */
40099
+ dateCreatedLte?: string;
40100
+ /**
40101
+ * Gets or sets the queryable only is live status.
40102
+ */
40103
+ isLive?: boolean;
40104
+ /**
40105
+ * Gets or sets the sort order direction.
40106
+ */
40107
+ sortOrderDirection?: SearchSortOrderDirection;
40108
+ }): CancelablePromise<VenuePage>;
40109
+ /**
40110
+ * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
40111
+ * @returns Venue OK
40112
+ * @throws ApiError
40113
+ */
40114
+ post({ xTenantSubdomain, requestBody, }: {
40115
+ /**
40116
+ * The tenants subdomain.
40117
+ */
40118
+ xTenantSubdomain?: string;
40119
+ /**
40120
+ * The <typeparamref name="TObject" /> model.
40121
+ */
40122
+ requestBody?: VenuePost;
40123
+ }): CancelablePromise<Venue>;
40124
+ /**
40125
+ * Patches the resource.
40126
+ * @returns Venue OK
40127
+ * @throws ApiError
40128
+ */
40129
+ patch({ xTenantSubdomain, requestBody, }: {
40130
+ /**
40131
+ * The tenants subdomain.
40132
+ */
40133
+ xTenantSubdomain?: string;
40134
+ /**
40135
+ * The <typeparamref name="TObject" /> model.
40136
+ */
40137
+ requestBody?: VenuePatch;
40138
+ }): CancelablePromise<Venue>;
40139
+ /**
40140
+ * Inserts a list of resources.
40141
+ * @returns Venue OK
40142
+ * @throws ApiError
40143
+ */
40144
+ postList({ xTenantSubdomain, requestBody, }: {
40145
+ /**
40146
+ * The tenants subdomain.
40147
+ */
40148
+ xTenantSubdomain?: string;
40149
+ /**
40150
+ * The list of <typeparamref name="TObject" />.
40151
+ */
40152
+ requestBody?: Array<VenuePost>;
40153
+ }): CancelablePromise<Array<Venue>>;
40154
+ /**
40155
+ * Returns a value indicating whether the resource exists in the database given the provided search params.
40156
+ * @returns boolean OK
40157
+ * @throws ApiError
40158
+ */
40159
+ 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, }: {
40160
+ /**
40161
+ * The tenants subdomain.
40162
+ */
40163
+ xTenantSubdomain?: string;
40164
+ /**
40165
+ * Gets or sets the queryable venue ids.
40166
+ */
40167
+ ids?: Array<string>;
40168
+ /**
40169
+ * Gets or sets the queryable venue name wildcard.
40170
+ */
40171
+ wildcard?: string;
40172
+ /**
40173
+ * Gets or sets the queryable venue name.
40174
+ */
40175
+ name?: string;
40176
+ /**
40177
+ * Gets or sets the queryable venue street address.
40178
+ */
40179
+ streetAddress?: string;
40180
+ /**
40181
+ * Gets or sets the queryable venue address postal code.
40182
+ */
40183
+ addressPostalcode?: string;
40184
+ /**
40185
+ * Gets or sets the queryable venue name wildcard.
40186
+ */
40187
+ nameLike?: string;
40188
+ /**
40189
+ * Gets or sets the queryable venue url slug.
40190
+ */
40191
+ slug?: string;
40192
+ /**
40193
+ * Gets or sets the queryable assign to Id.
40194
+ */
40195
+ assignedTo?: string;
40196
+ /**
40197
+ * Gets or sets the queryable stripe account Id.
40198
+ */
40199
+ stripeAccountId?: string;
40200
+ /**
40201
+ * Gets or sets the queryable search geo center.
40202
+ */
40203
+ searchGeoCenter?: string;
40204
+ /**
40205
+ * Gets or sets a value indicating whether to show published venues.
40206
+ */
40207
+ publishedOnWeb?: boolean;
40208
+ /**
40209
+ * Gets or sets a value indicating whether to include archived venues.
40210
+ */
40211
+ archived?: boolean;
40212
+ /**
40213
+ * Gets or sets a value indicating whether to include only sessions by given NetworkId.
40214
+ */
40215
+ networkId?: string;
40216
+ /**
40217
+ * Gets or sets a value indicating whether the results should return a specific tenant status.
40218
+ */
40219
+ tenantStatus?: TenantStatus;
40220
+ /**
40221
+ * Gets or sets the queryable programme Id.
40222
+ */
40223
+ programmeId?: string;
40224
+ /**
40225
+ * Gets or sets a value indicating whether to inlcude the venues opportunity images.
40226
+ */
40227
+ includeOpportunityImages?: boolean;
40228
+ /**
40229
+ * Gets or sets a value indicating whether to inlcude the venues opportunity offers.
40230
+ */
40231
+ includeOpportunityOffers?: boolean;
40232
+ /**
40233
+ * Gets or sets a value indicating whether to inlcude the venues opportunity next availability.
40234
+ */
40235
+ includeNextOpportunity?: boolean;
40236
+ /**
40237
+ * Gets or sets Distance.
40238
+ */
40239
+ distance?: number;
40240
+ /**
40241
+ * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
40242
+ */
40243
+ dashboardRequest?: boolean;
40244
+ /**
40245
+ * Gets or sets the programme ids.
40246
+ */
40247
+ programmeIds?: Array<string>;
40248
+ /**
40249
+ * Gets or sets the venue type ids.
40250
+ */
40251
+ venueTypeIds?: Array<string>;
40252
+ /**
40253
+ * Gets or sets the page number for paged queries.
40254
+ */
40255
+ pageNumber?: number;
40256
+ /**
40257
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
40258
+ */
40259
+ take?: number;
40260
+ /**
40261
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
40262
+ */
40263
+ skip?: number;
40264
+ /**
40265
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
40266
+ */
40267
+ limitListRequests?: boolean;
40268
+ /**
40269
+ * Gets or sets the Tenant Id.
40270
+ */
40271
+ tenantId?: string;
40272
+ /**
40273
+ * Gets or sets the Modifed By Id.
40274
+ */
40275
+ modifiedById?: string;
40276
+ /**
40277
+ * Gets or sets the Modifed By Ids.
40278
+ */
40279
+ modifiedByIds?: Array<string>;
40280
+ /**
40281
+ * Gets or sets the Date Created greater than equal to.
40282
+ */
40283
+ dateCreatedGte?: string;
40284
+ /**
40285
+ * Gets or sets the Date Created less than equal to.
40286
+ */
40287
+ dateCreatedLte?: string;
40288
+ /**
40289
+ * Gets or sets the queryable only is live status.
40290
+ */
40291
+ isLive?: boolean;
40292
+ /**
40293
+ * Gets or sets the sort order direction.
40294
+ */
40295
+ sortOrderDirection?: SearchSortOrderDirection;
40296
+ }): CancelablePromise<boolean>;
40297
+ }
40298
+
40299
+ /**
40300
+ * Represents a Venues type within the Reach application.
40301
+ */
40302
+ type VenueType = {
40303
+ /**
40304
+ * Gets or sets the entities Id.
40305
+ */
40306
+ id?: string;
40307
+ /**
40308
+ * Gets or sets the tenant Id.
40309
+ */
40310
+ tenantId: string;
40311
+ /**
40312
+ * Gets or sets the created date of this entity.
40313
+ */
40314
+ dateCreated: string;
40315
+ /**
40316
+ * Gets or sets the last modified date of this entity.
40317
+ */
40318
+ dateModified: string;
40319
+ /**
40320
+ * Gets or sets the modified by Id.
40321
+ */
40322
+ modifiedById?: string | null;
40323
+ /**
40324
+ * Gets or sets a value indicating whether the record is live and available for use within the application.
40325
+ */
40326
+ isLive: boolean;
40327
+ /**
40328
+ * Gets or sets the venue types name.
40329
+ */
40330
+ name?: string | null;
40331
+ /**
40332
+ * Gets or sets the venues types description.
40333
+ */
40334
+ description?: string | null;
40335
+ };
40336
+
40337
+ type VenueTypePage = {
40338
+ pagination: Pagination;
40339
+ readonly items: Array<VenueType>;
40340
+ };
40341
+
40342
+ /**
40343
+ * Post model for venue type updates.
40344
+ */
40345
+ type VenueTypePatch = {
40346
+ /**
40347
+ * Gets or sets the tenant Id.
40348
+ */
40349
+ tenantId: string;
40350
+ /**
40351
+ * Gets or sets the Id.
40352
+ */
40353
+ id: string;
40354
+ /**
40355
+ * Gets or sets the venue types name.
40356
+ */
40357
+ name?: string | null;
40358
+ /**
40359
+ * Gets or sets the venues types description.
40360
+ */
40361
+ description?: string | null;
40362
+ };
40363
+
40364
+ /**
40365
+ * Post model for venue type inserts.
40366
+ */
40367
+ type VenueTypePost = {
40368
+ /**
40369
+ * Gets or sets the tenant Id.
40370
+ */
40371
+ tenantId: string;
40372
+ /**
40373
+ * Gets or sets the venue types name.
40374
+ */
40375
+ name?: string | null;
40376
+ /**
40377
+ * Gets or sets the venues types description.
40378
+ */
40379
+ description?: string | null;
40380
+ };
40381
+
40382
+ declare class PublicVenueTypesService {
40383
+ readonly httpRequest: BaseHttpRequest;
40384
+ constructor(httpRequest: BaseHttpRequest);
40385
+ /**
40386
+ * @returns VenueType OK
40387
+ * @throws ApiError
40388
+ */
40389
+ getObject({ id, xTenantSubdomain, }: {
40390
+ id: string;
40391
+ xTenantSubdomain?: string;
40392
+ }): CancelablePromise<VenueType>;
40393
+ /**
40394
+ * Deletes the resource.
40395
+ * @returns any OK
40396
+ * @throws ApiError
40397
+ */
40398
+ deleteById({ id, xTenantSubdomain, }: {
40399
+ /**
40400
+ * The <typeparamref name="TObject" /> id.
40401
+ */
40402
+ id: string;
40403
+ /**
40404
+ * The tenants subdomain.
40405
+ */
40406
+ xTenantSubdomain?: string;
40407
+ }): CancelablePromise<any>;
40408
+ /**
40409
+ * @returns VenueTypePage OK
40410
+ * @throws ApiError
40411
+ */
40412
+ getPage({ xTenantSubdomain, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
40413
+ xTenantSubdomain?: string;
39582
40414
  /**
39583
40415
  * Gets or sets the page number for paged queries.
39584
40416
  */
@@ -39623,10 +40455,25 @@ declare class PublicVenuesService {
39623
40455
  * Gets or sets the sort order direction.
39624
40456
  */
39625
40457
  sortOrderDirection?: SearchSortOrderDirection;
39626
- }): CancelablePromise<VenuePage>;
40458
+ }): CancelablePromise<VenueTypePage>;
40459
+ /**
40460
+ * Deletes the resource.
40461
+ * @returns any OK
40462
+ * @throws ApiError
40463
+ */
40464
+ deleteByObject({ xTenantSubdomain, requestBody, }: {
40465
+ /**
40466
+ * The tenants subdomain.
40467
+ */
40468
+ xTenantSubdomain?: string;
40469
+ /**
40470
+ * The <typeparamref name="TObject" /> model.
40471
+ */
40472
+ requestBody?: VenueType;
40473
+ }): CancelablePromise<any>;
39627
40474
  /**
39628
40475
  * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
39629
- * @returns Venue OK
40476
+ * @returns VenueType OK
39630
40477
  * @throws ApiError
39631
40478
  */
39632
40479
  post({ xTenantSubdomain, requestBody, }: {
@@ -39637,11 +40484,11 @@ declare class PublicVenuesService {
39637
40484
  /**
39638
40485
  * The <typeparamref name="TObject" /> model.
39639
40486
  */
39640
- requestBody?: VenuePost;
39641
- }): CancelablePromise<Venue>;
40487
+ requestBody?: VenueTypePost;
40488
+ }): CancelablePromise<VenueType>;
39642
40489
  /**
39643
40490
  * Patches the resource.
39644
- * @returns Venue OK
40491
+ * @returns VenueType OK
39645
40492
  * @throws ApiError
39646
40493
  */
39647
40494
  patch({ xTenantSubdomain, requestBody, }: {
@@ -39652,11 +40499,11 @@ declare class PublicVenuesService {
39652
40499
  /**
39653
40500
  * The <typeparamref name="TObject" /> model.
39654
40501
  */
39655
- requestBody?: VenuePatch;
39656
- }): CancelablePromise<Venue>;
40502
+ requestBody?: VenueTypePatch;
40503
+ }): CancelablePromise<VenueType>;
39657
40504
  /**
39658
40505
  * Inserts a list of resources.
39659
- * @returns Venue OK
40506
+ * @returns VenueType OK
39660
40507
  * @throws ApiError
39661
40508
  */
39662
40509
  postList({ xTenantSubdomain, requestBody, }: {
@@ -39667,102 +40514,18 @@ declare class PublicVenuesService {
39667
40514
  /**
39668
40515
  * The list of <typeparamref name="TObject" />.
39669
40516
  */
39670
- requestBody?: Array<VenuePost>;
39671
- }): CancelablePromise<Array<Venue>>;
40517
+ requestBody?: Array<VenueTypePost>;
40518
+ }): CancelablePromise<Array<VenueType>>;
39672
40519
  /**
39673
40520
  * Returns a value indicating whether the resource exists in the database given the provided search params.
39674
40521
  * @returns boolean OK
39675
40522
  * @throws ApiError
39676
40523
  */
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, }: {
40524
+ exists({ xTenantSubdomain, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
39678
40525
  /**
39679
40526
  * The tenants subdomain.
39680
40527
  */
39681
40528
  xTenantSubdomain?: string;
39682
- /**
39683
- * Gets or sets the queryable venue ids.
39684
- */
39685
- ids?: Array<string>;
39686
- /**
39687
- * Gets or sets the queryable venue name wildcard.
39688
- */
39689
- wildcard?: string;
39690
- /**
39691
- * Gets or sets the queryable venue name.
39692
- */
39693
- name?: string;
39694
- /**
39695
- * Gets or sets the queryable venue street address.
39696
- */
39697
- streetAddress?: string;
39698
- /**
39699
- * Gets or sets the queryable venue address postal code.
39700
- */
39701
- addressPostalcode?: string;
39702
- /**
39703
- * Gets or sets the queryable venue name wildcard.
39704
- */
39705
- nameLike?: string;
39706
- /**
39707
- * Gets or sets the queryable venue url slug.
39708
- */
39709
- slug?: string;
39710
- /**
39711
- * Gets or sets the queryable assign to Id.
39712
- */
39713
- assignedTo?: string;
39714
- /**
39715
- * Gets or sets the queryable stripe account Id.
39716
- */
39717
- stripeAccountId?: string;
39718
- /**
39719
- * Gets or sets the queryable search geo center.
39720
- */
39721
- searchGeoCenter?: string;
39722
- /**
39723
- * Gets or sets a value indicating whether to show published venues.
39724
- */
39725
- publishedOnWeb?: boolean;
39726
- /**
39727
- * Gets or sets a value indicating whether to include archived venues.
39728
- */
39729
- archived?: boolean;
39730
- /**
39731
- * Gets or sets a value indicating whether to include only sessions by given NetworkId.
39732
- */
39733
- networkId?: string;
39734
- /**
39735
- * Gets or sets a value indicating whether the results should return a specific tenant status.
39736
- */
39737
- tenantStatus?: TenantStatus;
39738
- /**
39739
- * Gets or sets the queryable programme Id.
39740
- */
39741
- programmeId?: string;
39742
- /**
39743
- * Gets or sets a value indicating whether to inlcude the venues opportunity images.
39744
- */
39745
- includeOpportunityImages?: boolean;
39746
- /**
39747
- * Gets or sets a value indicating whether to inlcude the venues opportunity offers.
39748
- */
39749
- includeOpportunityOffers?: boolean;
39750
- /**
39751
- * Gets or sets a value indicating whether to inlcude the venues opportunity next availability.
39752
- */
39753
- includeNextOpportunity?: boolean;
39754
- /**
39755
- * Gets or sets Distance.
39756
- */
39757
- distance?: number;
39758
- /**
39759
- * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
39760
- */
39761
- dashboardRequest?: boolean;
39762
- /**
39763
- * Gets or sets the programme ids.
39764
- */
39765
- programmeIds?: Array<string>;
39766
40529
  /**
39767
40530
  * Gets or sets the page number for paged queries.
39768
40531
  */
@@ -41974,190 +42737,208 @@ declare class RescheduleLogService {
41974
42737
  * Gets or sets the sort order direction.
41975
42738
  */
41976
42739
  sortOrderDirection?: SearchSortOrderDirection;
41977
- }): CancelablePromise<boolean>;
42740
+ }): CancelablePromise<boolean>;
42741
+ /**
42742
+ * Returns the number of results in the database given the provided search params.
42743
+ * @returns number OK
42744
+ * @throws ApiError
42745
+ */
42746
+ count({ scheduledSessionId, courseSessionId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
42747
+ /**
42748
+ * Gets or sets the queryable scheduled session id.
42749
+ */
42750
+ scheduledSessionId?: string;
42751
+ /**
42752
+ * Gets or sets the queryable course session id.
42753
+ */
42754
+ courseSessionId?: string;
42755
+ /**
42756
+ * Gets or sets the page number for paged queries.
42757
+ */
42758
+ pageNumber?: number;
42759
+ /**
42760
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
42761
+ */
42762
+ take?: number;
42763
+ /**
42764
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
42765
+ */
42766
+ skip?: number;
42767
+ /**
42768
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
42769
+ */
42770
+ limitListRequests?: boolean;
42771
+ /**
42772
+ * Gets or sets the Tenant Id.
42773
+ */
42774
+ tenantId?: string;
42775
+ /**
42776
+ * Gets or sets the Modifed By Id.
42777
+ */
42778
+ modifiedById?: string;
42779
+ /**
42780
+ * Gets or sets the Modifed By Ids.
42781
+ */
42782
+ modifiedByIds?: Array<string>;
42783
+ /**
42784
+ * Gets or sets the Date Created greater than equal to.
42785
+ */
42786
+ dateCreatedGte?: string;
42787
+ /**
42788
+ * Gets or sets the Date Created less than equal to.
42789
+ */
42790
+ dateCreatedLte?: string;
42791
+ /**
42792
+ * Gets or sets the queryable only is live status.
42793
+ */
42794
+ isLive?: boolean;
42795
+ /**
42796
+ * Gets or sets the sort order direction.
42797
+ */
42798
+ sortOrderDirection?: SearchSortOrderDirection;
42799
+ }): CancelablePromise<number>;
42800
+ /**
42801
+ * Gets a list of resources unpaged and without references.
42802
+ * @returns RescheduleLog OK
42803
+ * @throws ApiError
42804
+ */
42805
+ getListWithoutReferences({ scheduledSessionId, courseSessionId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
42806
+ /**
42807
+ * Gets or sets the queryable scheduled session id.
42808
+ */
42809
+ scheduledSessionId?: string;
42810
+ /**
42811
+ * Gets or sets the queryable course session id.
42812
+ */
42813
+ courseSessionId?: string;
42814
+ /**
42815
+ * Gets or sets the page number for paged queries.
42816
+ */
42817
+ pageNumber?: number;
42818
+ /**
42819
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
42820
+ */
42821
+ take?: number;
42822
+ /**
42823
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
42824
+ */
42825
+ skip?: number;
42826
+ /**
42827
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
42828
+ */
42829
+ limitListRequests?: boolean;
42830
+ /**
42831
+ * Gets or sets the Tenant Id.
42832
+ */
42833
+ tenantId?: string;
42834
+ /**
42835
+ * Gets or sets the Modifed By Id.
42836
+ */
42837
+ modifiedById?: string;
42838
+ /**
42839
+ * Gets or sets the Modifed By Ids.
42840
+ */
42841
+ modifiedByIds?: Array<string>;
42842
+ /**
42843
+ * Gets or sets the Date Created greater than equal to.
42844
+ */
42845
+ dateCreatedGte?: string;
42846
+ /**
42847
+ * Gets or sets the Date Created less than equal to.
42848
+ */
42849
+ dateCreatedLte?: string;
42850
+ /**
42851
+ * Gets or sets the queryable only is live status.
42852
+ */
42853
+ isLive?: boolean;
42854
+ /**
42855
+ * Gets or sets the sort order direction.
42856
+ */
42857
+ sortOrderDirection?: SearchSortOrderDirection;
42858
+ }): CancelablePromise<Array<RescheduleLog>>;
42859
+ /**
42860
+ * Gets a list of resources.
42861
+ * @returns RescheduleLog OK
42862
+ * @throws ApiError
42863
+ */
42864
+ getListIdName({ scheduledSessionId, courseSessionId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
42865
+ /**
42866
+ * Gets or sets the queryable scheduled session id.
42867
+ */
42868
+ scheduledSessionId?: string;
42869
+ /**
42870
+ * Gets or sets the queryable course session id.
42871
+ */
42872
+ courseSessionId?: string;
42873
+ /**
42874
+ * Gets or sets the page number for paged queries.
42875
+ */
42876
+ pageNumber?: number;
42877
+ /**
42878
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
42879
+ */
42880
+ take?: number;
42881
+ /**
42882
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
42883
+ */
42884
+ skip?: number;
42885
+ /**
42886
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
42887
+ */
42888
+ limitListRequests?: boolean;
42889
+ /**
42890
+ * Gets or sets the Tenant Id.
42891
+ */
42892
+ tenantId?: string;
42893
+ /**
42894
+ * Gets or sets the Modifed By Id.
42895
+ */
42896
+ modifiedById?: string;
42897
+ /**
42898
+ * Gets or sets the Modifed By Ids.
42899
+ */
42900
+ modifiedByIds?: Array<string>;
42901
+ /**
42902
+ * Gets or sets the Date Created greater than equal to.
42903
+ */
42904
+ dateCreatedGte?: string;
42905
+ /**
42906
+ * Gets or sets the Date Created less than equal to.
42907
+ */
42908
+ dateCreatedLte?: string;
42909
+ /**
42910
+ * Gets or sets the queryable only is live status.
42911
+ */
42912
+ isLive?: boolean;
42913
+ /**
42914
+ * Gets or sets the sort order direction.
42915
+ */
42916
+ sortOrderDirection?: SearchSortOrderDirection;
42917
+ }): CancelablePromise<Array<RescheduleLog>>;
42918
+ }
42919
+
42920
+ /**
42921
+ * Post model for emailing scheduled session attendees.
42922
+ */
42923
+ type ScheduledSessionEmailAttendeesPatch = {
41978
42924
  /**
41979
- * Returns the number of results in the database given the provided search params.
41980
- * @returns number OK
41981
- * @throws ApiError
42925
+ * Gets or sets the tenant Id.
41982
42926
  */
41983
- count({ scheduledSessionId, courseSessionId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
41984
- /**
41985
- * Gets or sets the queryable scheduled session id.
41986
- */
41987
- scheduledSessionId?: string;
41988
- /**
41989
- * Gets or sets the queryable course session id.
41990
- */
41991
- courseSessionId?: string;
41992
- /**
41993
- * Gets or sets the page number for paged queries.
41994
- */
41995
- pageNumber?: number;
41996
- /**
41997
- * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
41998
- */
41999
- take?: number;
42000
- /**
42001
- * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
42002
- */
42003
- skip?: number;
42004
- /**
42005
- * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
42006
- */
42007
- limitListRequests?: boolean;
42008
- /**
42009
- * Gets or sets the Tenant Id.
42010
- */
42011
- tenantId?: string;
42012
- /**
42013
- * Gets or sets the Modifed By Id.
42014
- */
42015
- modifiedById?: string;
42016
- /**
42017
- * Gets or sets the Modifed By Ids.
42018
- */
42019
- modifiedByIds?: Array<string>;
42020
- /**
42021
- * Gets or sets the Date Created greater than equal to.
42022
- */
42023
- dateCreatedGte?: string;
42024
- /**
42025
- * Gets or sets the Date Created less than equal to.
42026
- */
42027
- dateCreatedLte?: string;
42028
- /**
42029
- * Gets or sets the queryable only is live status.
42030
- */
42031
- isLive?: boolean;
42032
- /**
42033
- * Gets or sets the sort order direction.
42034
- */
42035
- sortOrderDirection?: SearchSortOrderDirection;
42036
- }): CancelablePromise<number>;
42927
+ tenantId: string;
42037
42928
  /**
42038
- * Gets a list of resources unpaged and without references.
42039
- * @returns RescheduleLog OK
42040
- * @throws ApiError
42929
+ * Gets or sets the Id.
42041
42930
  */
42042
- getListWithoutReferences({ scheduledSessionId, courseSessionId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
42043
- /**
42044
- * Gets or sets the queryable scheduled session id.
42045
- */
42046
- scheduledSessionId?: string;
42047
- /**
42048
- * Gets or sets the queryable course session id.
42049
- */
42050
- courseSessionId?: string;
42051
- /**
42052
- * Gets or sets the page number for paged queries.
42053
- */
42054
- pageNumber?: number;
42055
- /**
42056
- * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
42057
- */
42058
- take?: number;
42059
- /**
42060
- * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
42061
- */
42062
- skip?: number;
42063
- /**
42064
- * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
42065
- */
42066
- limitListRequests?: boolean;
42067
- /**
42068
- * Gets or sets the Tenant Id.
42069
- */
42070
- tenantId?: string;
42071
- /**
42072
- * Gets or sets the Modifed By Id.
42073
- */
42074
- modifiedById?: string;
42075
- /**
42076
- * Gets or sets the Modifed By Ids.
42077
- */
42078
- modifiedByIds?: Array<string>;
42079
- /**
42080
- * Gets or sets the Date Created greater than equal to.
42081
- */
42082
- dateCreatedGte?: string;
42083
- /**
42084
- * Gets or sets the Date Created less than equal to.
42085
- */
42086
- dateCreatedLte?: string;
42087
- /**
42088
- * Gets or sets the queryable only is live status.
42089
- */
42090
- isLive?: boolean;
42091
- /**
42092
- * Gets or sets the sort order direction.
42093
- */
42094
- sortOrderDirection?: SearchSortOrderDirection;
42095
- }): CancelablePromise<Array<RescheduleLog>>;
42931
+ id: string;
42096
42932
  /**
42097
- * Gets a list of resources.
42098
- * @returns RescheduleLog OK
42099
- * @throws ApiError
42933
+ * Gets or sets the message body.
42100
42934
  */
42101
- getListIdName({ scheduledSessionId, courseSessionId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
42102
- /**
42103
- * Gets or sets the queryable scheduled session id.
42104
- */
42105
- scheduledSessionId?: string;
42106
- /**
42107
- * Gets or sets the queryable course session id.
42108
- */
42109
- courseSessionId?: string;
42110
- /**
42111
- * Gets or sets the page number for paged queries.
42112
- */
42113
- pageNumber?: number;
42114
- /**
42115
- * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
42116
- */
42117
- take?: number;
42118
- /**
42119
- * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
42120
- */
42121
- skip?: number;
42122
- /**
42123
- * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
42124
- */
42125
- limitListRequests?: boolean;
42126
- /**
42127
- * Gets or sets the Tenant Id.
42128
- */
42129
- tenantId?: string;
42130
- /**
42131
- * Gets or sets the Modifed By Id.
42132
- */
42133
- modifiedById?: string;
42134
- /**
42135
- * Gets or sets the Modifed By Ids.
42136
- */
42137
- modifiedByIds?: Array<string>;
42138
- /**
42139
- * Gets or sets the Date Created greater than equal to.
42140
- */
42141
- dateCreatedGte?: string;
42142
- /**
42143
- * Gets or sets the Date Created less than equal to.
42144
- */
42145
- dateCreatedLte?: string;
42146
- /**
42147
- * Gets or sets the queryable only is live status.
42148
- */
42149
- isLive?: boolean;
42150
- /**
42151
- * Gets or sets the sort order direction.
42152
- */
42153
- sortOrderDirection?: SearchSortOrderDirection;
42154
- }): CancelablePromise<Array<RescheduleLog>>;
42155
- }
42935
+ message?: string | null;
42936
+ };
42156
42937
 
42157
42938
  /**
42158
- * Post model for emailing scheduled session attendees.
42939
+ * Post model for emailing scheduled session waitlist.
42159
42940
  */
42160
- type ScheduledSessionEmailAttendeesPatch = {
42941
+ type ScheduledSessionEmailWaitlistPatch = {
42161
42942
  /**
42162
42943
  * Gets or sets the tenant Id.
42163
42944
  */
@@ -42279,6 +43060,21 @@ declare class ScheduledSessionsService {
42279
43060
  */
42280
43061
  requestBody?: ScheduledSessionEmailAttendeesPatch;
42281
43062
  }): CancelablePromise<ScheduledSession>;
43063
+ /**
43064
+ * Emails all on waitlist onto the opportunity />.
43065
+ * @returns ScheduledSession OK
43066
+ * @throws ApiError
43067
+ */
43068
+ contactWaitlist({ scheduledSessionId, requestBody, }: {
43069
+ /**
43070
+ * The scheduled session Id.
43071
+ */
43072
+ scheduledSessionId: string;
43073
+ /**
43074
+ * The patch model.
43075
+ */
43076
+ requestBody?: ScheduledSessionEmailWaitlistPatch;
43077
+ }): CancelablePromise<ScheduledSession>;
42282
43078
  /**
42283
43079
  * Cleans table of leased and conflicted scheduled sessions.
42284
43080
  * @returns number OK
@@ -48653,7 +49449,7 @@ declare class SurveyCompletionLogService {
48653
49449
  * @returns SurveyCompletionLogPage OK
48654
49450
  * @throws ApiError
48655
49451
  */
48656
- getPage({ surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
49452
+ getPage({ surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, offerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
48657
49453
  /**
48658
49454
  * Gets or sets the queryable Survey Id.
48659
49455
  */
@@ -48678,6 +49474,10 @@ declare class SurveyCompletionLogService {
48678
49474
  * Gets or sets the queryable Course Id.
48679
49475
  */
48680
49476
  courseId?: string;
49477
+ /**
49478
+ * Gets or sets the queryable Offer Id.
49479
+ */
49480
+ offerId?: string;
48681
49481
  /**
48682
49482
  * Gets or sets the page number for paged queries.
48683
49483
  */
@@ -48761,7 +49561,7 @@ declare class SurveyCompletionLogService {
48761
49561
  * @returns boolean OK
48762
49562
  * @throws ApiError
48763
49563
  */
48764
- exists({ surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
49564
+ exists({ surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, offerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
48765
49565
  /**
48766
49566
  * Gets or sets the queryable Survey Id.
48767
49567
  */
@@ -48786,6 +49586,10 @@ declare class SurveyCompletionLogService {
48786
49586
  * Gets or sets the queryable Course Id.
48787
49587
  */
48788
49588
  courseId?: string;
49589
+ /**
49590
+ * Gets or sets the queryable Offer Id.
49591
+ */
49592
+ offerId?: string;
48789
49593
  /**
48790
49594
  * Gets or sets the page number for paged queries.
48791
49595
  */
@@ -48836,7 +49640,7 @@ declare class SurveyCompletionLogService {
48836
49640
  * @returns number OK
48837
49641
  * @throws ApiError
48838
49642
  */
48839
- count({ surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
49643
+ count({ surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, offerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
48840
49644
  /**
48841
49645
  * Gets or sets the queryable Survey Id.
48842
49646
  */
@@ -48861,6 +49665,10 @@ declare class SurveyCompletionLogService {
48861
49665
  * Gets or sets the queryable Course Id.
48862
49666
  */
48863
49667
  courseId?: string;
49668
+ /**
49669
+ * Gets or sets the queryable Offer Id.
49670
+ */
49671
+ offerId?: string;
48864
49672
  /**
48865
49673
  * Gets or sets the page number for paged queries.
48866
49674
  */
@@ -48911,7 +49719,7 @@ declare class SurveyCompletionLogService {
48911
49719
  * @returns SurveyCompletionLog OK
48912
49720
  * @throws ApiError
48913
49721
  */
48914
- getListWithoutReferences({ surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
49722
+ getListWithoutReferences({ surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, offerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
48915
49723
  /**
48916
49724
  * Gets or sets the queryable Survey Id.
48917
49725
  */
@@ -48936,6 +49744,10 @@ declare class SurveyCompletionLogService {
48936
49744
  * Gets or sets the queryable Course Id.
48937
49745
  */
48938
49746
  courseId?: string;
49747
+ /**
49748
+ * Gets or sets the queryable Offer Id.
49749
+ */
49750
+ offerId?: string;
48939
49751
  /**
48940
49752
  * Gets or sets the page number for paged queries.
48941
49753
  */
@@ -48986,7 +49798,7 @@ declare class SurveyCompletionLogService {
48986
49798
  * @returns SurveyCompletionLog OK
48987
49799
  * @throws ApiError
48988
49800
  */
48989
- getListIdName({ surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
49801
+ getListIdName({ surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, offerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
48990
49802
  /**
48991
49803
  * Gets or sets the queryable Survey Id.
48992
49804
  */
@@ -49011,6 +49823,10 @@ declare class SurveyCompletionLogService {
49011
49823
  * Gets or sets the queryable Course Id.
49012
49824
  */
49013
49825
  courseId?: string;
49826
+ /**
49827
+ * Gets or sets the queryable Offer Id.
49828
+ */
49829
+ offerId?: string;
49014
49830
  /**
49015
49831
  * Gets or sets the page number for paged queries.
49016
49832
  */
@@ -50008,6 +50824,10 @@ type CreateQuestion = {
50008
50824
  */
50009
50825
  number: number;
50010
50826
  type: SurveyQuestionType;
50827
+ /**
50828
+ * Gets or sets a value indicating whether question is required or not.
50829
+ */
50830
+ required: boolean;
50011
50831
  /**
50012
50832
  * Gets or sets the survey question options.
50013
50833
  */
@@ -50730,6 +51550,30 @@ type TemplateOffer = {
50730
51550
  * Gets or sets a value indicating whether the offer is active.
50731
51551
  */
50732
51552
  active?: boolean;
51553
+ /**
51554
+ * Gets or sets the maximum number of this offer that can be sold per opportunity.
51555
+ */
51556
+ maxAvailablePerOpportunity?: number | null;
51557
+ /**
51558
+ * Gets or sets when this offer becomes available for booking.
51559
+ */
51560
+ availableFrom?: string | null;
51561
+ /**
51562
+ * Gets or sets when this offer stops being available for booking.
51563
+ */
51564
+ availableUntil?: string | null;
51565
+ /**
51566
+ * Gets or sets the offer description.
51567
+ */
51568
+ description?: string | null;
51569
+ /**
51570
+ * Gets or sets the survey id.
51571
+ */
51572
+ surveyId?: string | null;
51573
+ /**
51574
+ * Gets or sets the survey id.
51575
+ */
51576
+ postCompletionSurveyId?: string | null;
50733
51577
  };
50734
51578
 
50735
51579
  /**
@@ -54916,6 +55760,10 @@ type UserPermission = {
54916
55760
  * Gets or sets a value indicating whether a venue manager has send emails permissions.
54917
55761
  */
54918
55762
  sendEmails?: boolean;
55763
+ /**
55764
+ * Gets or sets a value indicating whether a venue manager has manage opportunity permissions.
55765
+ */
55766
+ manageOpportunity?: boolean;
54919
55767
  };
54920
55768
 
54921
55769
  type UserPermissionPage = {
@@ -54999,6 +55847,10 @@ type UserPermissionPatch = {
54999
55847
  * Gets or sets a value indicating whether a venue manager has send emails permissions.
55000
55848
  */
55001
55849
  sendEmails?: boolean;
55850
+ /**
55851
+ * Gets or sets a value indicating whether a venue manager has manage opportunity permissions.
55852
+ */
55853
+ manageOpportunity?: boolean;
55002
55854
  };
55003
55855
 
55004
55856
  /**
@@ -58529,7 +59381,7 @@ declare class VenuesService {
58529
59381
  * @returns VenuePage OK
58530
59382
  * @throws ApiError
58531
59383
  */
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, }: {
59384
+ 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
59385
  /**
58534
59386
  * Gets or sets the queryable venue ids.
58535
59387
  */
@@ -58614,6 +59466,10 @@ declare class VenuesService {
58614
59466
  * Gets or sets the programme ids.
58615
59467
  */
58616
59468
  programmeIds?: Array<string>;
59469
+ /**
59470
+ * Gets or sets the venue type ids.
59471
+ */
59472
+ venueTypeIds?: Array<string>;
58617
59473
  /**
58618
59474
  * Gets or sets the page number for paged queries.
58619
59475
  */
@@ -58697,7 +59553,7 @@ declare class VenuesService {
58697
59553
  * @returns boolean OK
58698
59554
  * @throws ApiError
58699
59555
  */
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, }: {
59556
+ 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
59557
  /**
58702
59558
  * Gets or sets the queryable venue ids.
58703
59559
  */
@@ -58782,6 +59638,10 @@ declare class VenuesService {
58782
59638
  * Gets or sets the programme ids.
58783
59639
  */
58784
59640
  programmeIds?: Array<string>;
59641
+ /**
59642
+ * Gets or sets the venue type ids.
59643
+ */
59644
+ venueTypeIds?: Array<string>;
58785
59645
  /**
58786
59646
  * Gets or sets the page number for paged queries.
58787
59647
  */
@@ -58832,7 +59692,7 @@ declare class VenuesService {
58832
59692
  * @returns number OK
58833
59693
  * @throws ApiError
58834
59694
  */
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, }: {
59695
+ 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
59696
  /**
58837
59697
  * Gets or sets the queryable venue ids.
58838
59698
  */
@@ -58917,6 +59777,10 @@ declare class VenuesService {
58917
59777
  * Gets or sets the programme ids.
58918
59778
  */
58919
59779
  programmeIds?: Array<string>;
59780
+ /**
59781
+ * Gets or sets the venue type ids.
59782
+ */
59783
+ venueTypeIds?: Array<string>;
58920
59784
  /**
58921
59785
  * Gets or sets the page number for paged queries.
58922
59786
  */
@@ -58967,7 +59831,7 @@ declare class VenuesService {
58967
59831
  * @returns Venue OK
58968
59832
  * @throws ApiError
58969
59833
  */
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, }: {
59834
+ 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
59835
  /**
58972
59836
  * Gets or sets the queryable venue ids.
58973
59837
  */
@@ -59052,6 +59916,10 @@ declare class VenuesService {
59052
59916
  * Gets or sets the programme ids.
59053
59917
  */
59054
59918
  programmeIds?: Array<string>;
59919
+ /**
59920
+ * Gets or sets the venue type ids.
59921
+ */
59922
+ venueTypeIds?: Array<string>;
59055
59923
  /**
59056
59924
  * Gets or sets the page number for paged queries.
59057
59925
  */
@@ -59102,7 +59970,7 @@ declare class VenuesService {
59102
59970
  * @returns Venue OK
59103
59971
  * @throws ApiError
59104
59972
  */
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, }: {
59973
+ 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
59974
  /**
59107
59975
  * Gets or sets the queryable venue ids.
59108
59976
  */
@@ -59187,6 +60055,10 @@ declare class VenuesService {
59187
60055
  * Gets or sets the programme ids.
59188
60056
  */
59189
60057
  programmeIds?: Array<string>;
60058
+ /**
60059
+ * Gets or sets the venue type ids.
60060
+ */
60061
+ venueTypeIds?: Array<string>;
59190
60062
  /**
59191
60063
  * Gets or sets the page number for paged queries.
59192
60064
  */
@@ -59833,6 +60705,354 @@ declare class VenuesReportService {
59833
60705
  }): CancelablePromise<Array<VenuesReport>>;
59834
60706
  }
59835
60707
 
60708
+ declare class VenueTypeService {
60709
+ readonly httpRequest: BaseHttpRequest;
60710
+ constructor(httpRequest: BaseHttpRequest);
60711
+ /**
60712
+ * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
60713
+ * @returns VenueType OK
60714
+ * @throws ApiError
60715
+ */
60716
+ post({ requestBody, }: {
60717
+ /**
60718
+ * The <typeparamref name="TObject" /> model.
60719
+ */
60720
+ requestBody?: VenueTypePost;
60721
+ }): CancelablePromise<VenueType>;
60722
+ /**
60723
+ * Patches the resource.
60724
+ * @returns VenueType OK
60725
+ * @throws ApiError
60726
+ */
60727
+ patch({ requestBody, }: {
60728
+ /**
60729
+ * The <typeparamref name="TObject" /> model.
60730
+ */
60731
+ requestBody?: VenueTypePatch;
60732
+ }): CancelablePromise<VenueType>;
60733
+ /**
60734
+ * Inserts a list of resources.
60735
+ * @returns VenueType OK
60736
+ * @throws ApiError
60737
+ */
60738
+ postList({ requestBody, }: {
60739
+ /**
60740
+ * The list of <typeparamref name="TObject" />.
60741
+ */
60742
+ requestBody?: Array<VenueTypePost>;
60743
+ }): CancelablePromise<Array<VenueType>>;
60744
+ /**
60745
+ * Patches the resource.
60746
+ * @returns VenueType OK
60747
+ * @throws ApiError
60748
+ */
60749
+ patchWithReferences({ requestBody, }: {
60750
+ /**
60751
+ * The <typeparamref name="TObject" /> model.
60752
+ */
60753
+ requestBody?: VenueTypePatch;
60754
+ }): CancelablePromise<VenueType>;
60755
+ /**
60756
+ * Deletes the resource.
60757
+ * @returns any OK
60758
+ * @throws ApiError
60759
+ */
60760
+ deleteByObject({ requestBody, }: {
60761
+ /**
60762
+ * The <typeparamref name="TObject" /> model.
60763
+ */
60764
+ requestBody?: VenueType;
60765
+ }): CancelablePromise<any>;
60766
+ /**
60767
+ * Gets a list of resources.
60768
+ * @returns VenueTypePage OK
60769
+ * @throws ApiError
60770
+ */
60771
+ getPage({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
60772
+ /**
60773
+ * Gets or sets the page number for paged queries.
60774
+ */
60775
+ pageNumber?: number;
60776
+ /**
60777
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
60778
+ */
60779
+ take?: number;
60780
+ /**
60781
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
60782
+ */
60783
+ skip?: number;
60784
+ /**
60785
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
60786
+ */
60787
+ limitListRequests?: boolean;
60788
+ /**
60789
+ * Gets or sets the Tenant Id.
60790
+ */
60791
+ tenantId?: string;
60792
+ /**
60793
+ * Gets or sets the Modifed By Id.
60794
+ */
60795
+ modifiedById?: string;
60796
+ /**
60797
+ * Gets or sets the Modifed By Ids.
60798
+ */
60799
+ modifiedByIds?: Array<string>;
60800
+ /**
60801
+ * Gets or sets the Date Created greater than equal to.
60802
+ */
60803
+ dateCreatedGte?: string;
60804
+ /**
60805
+ * Gets or sets the Date Created less than equal to.
60806
+ */
60807
+ dateCreatedLte?: string;
60808
+ /**
60809
+ * Gets or sets the queryable only is live status.
60810
+ */
60811
+ isLive?: boolean;
60812
+ /**
60813
+ * Gets or sets the sort order direction.
60814
+ */
60815
+ sortOrderDirection?: SearchSortOrderDirection;
60816
+ }): CancelablePromise<VenueTypePage>;
60817
+ /**
60818
+ * Deletes the resource.
60819
+ * @returns any OK
60820
+ * @throws ApiError
60821
+ */
60822
+ deleteById({ id, }: {
60823
+ /**
60824
+ * The <typeparamref name="TObject" /> id.
60825
+ */
60826
+ id: string;
60827
+ }): CancelablePromise<any>;
60828
+ /**
60829
+ * Gets the resource by its Id.
60830
+ * @returns VenueType OK
60831
+ * @throws ApiError
60832
+ */
60833
+ getObject({ id, }: {
60834
+ /**
60835
+ * The <typeparamref name="TObject" /> id.
60836
+ */
60837
+ id: string;
60838
+ }): CancelablePromise<VenueType>;
60839
+ /**
60840
+ * Returns a value indicating whether the resource is deletable.
60841
+ * @returns boolean OK
60842
+ * @throws ApiError
60843
+ */
60844
+ canDelete({ id, }: {
60845
+ /**
60846
+ * The <typeparamref name="TObject" /> id.
60847
+ */
60848
+ id: string;
60849
+ }): CancelablePromise<boolean>;
60850
+ /**
60851
+ * Returns a value indicating whether the resource exists in the database given the provided search params.
60852
+ * @returns boolean OK
60853
+ * @throws ApiError
60854
+ */
60855
+ exists({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
60856
+ /**
60857
+ * Gets or sets the page number for paged queries.
60858
+ */
60859
+ pageNumber?: number;
60860
+ /**
60861
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
60862
+ */
60863
+ take?: number;
60864
+ /**
60865
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
60866
+ */
60867
+ skip?: number;
60868
+ /**
60869
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
60870
+ */
60871
+ limitListRequests?: boolean;
60872
+ /**
60873
+ * Gets or sets the Tenant Id.
60874
+ */
60875
+ tenantId?: string;
60876
+ /**
60877
+ * Gets or sets the Modifed By Id.
60878
+ */
60879
+ modifiedById?: string;
60880
+ /**
60881
+ * Gets or sets the Modifed By Ids.
60882
+ */
60883
+ modifiedByIds?: Array<string>;
60884
+ /**
60885
+ * Gets or sets the Date Created greater than equal to.
60886
+ */
60887
+ dateCreatedGte?: string;
60888
+ /**
60889
+ * Gets or sets the Date Created less than equal to.
60890
+ */
60891
+ dateCreatedLte?: string;
60892
+ /**
60893
+ * Gets or sets the queryable only is live status.
60894
+ */
60895
+ isLive?: boolean;
60896
+ /**
60897
+ * Gets or sets the sort order direction.
60898
+ */
60899
+ sortOrderDirection?: SearchSortOrderDirection;
60900
+ }): CancelablePromise<boolean>;
60901
+ /**
60902
+ * Returns the number of results in the database given the provided search params.
60903
+ * @returns number OK
60904
+ * @throws ApiError
60905
+ */
60906
+ count({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
60907
+ /**
60908
+ * Gets or sets the page number for paged queries.
60909
+ */
60910
+ pageNumber?: number;
60911
+ /**
60912
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
60913
+ */
60914
+ take?: number;
60915
+ /**
60916
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
60917
+ */
60918
+ skip?: number;
60919
+ /**
60920
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
60921
+ */
60922
+ limitListRequests?: boolean;
60923
+ /**
60924
+ * Gets or sets the Tenant Id.
60925
+ */
60926
+ tenantId?: string;
60927
+ /**
60928
+ * Gets or sets the Modifed By Id.
60929
+ */
60930
+ modifiedById?: string;
60931
+ /**
60932
+ * Gets or sets the Modifed By Ids.
60933
+ */
60934
+ modifiedByIds?: Array<string>;
60935
+ /**
60936
+ * Gets or sets the Date Created greater than equal to.
60937
+ */
60938
+ dateCreatedGte?: string;
60939
+ /**
60940
+ * Gets or sets the Date Created less than equal to.
60941
+ */
60942
+ dateCreatedLte?: string;
60943
+ /**
60944
+ * Gets or sets the queryable only is live status.
60945
+ */
60946
+ isLive?: boolean;
60947
+ /**
60948
+ * Gets or sets the sort order direction.
60949
+ */
60950
+ sortOrderDirection?: SearchSortOrderDirection;
60951
+ }): CancelablePromise<number>;
60952
+ /**
60953
+ * Gets a list of resources unpaged and without references.
60954
+ * @returns VenueType OK
60955
+ * @throws ApiError
60956
+ */
60957
+ getListWithoutReferences({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
60958
+ /**
60959
+ * Gets or sets the page number for paged queries.
60960
+ */
60961
+ pageNumber?: number;
60962
+ /**
60963
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
60964
+ */
60965
+ take?: number;
60966
+ /**
60967
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
60968
+ */
60969
+ skip?: number;
60970
+ /**
60971
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
60972
+ */
60973
+ limitListRequests?: boolean;
60974
+ /**
60975
+ * Gets or sets the Tenant Id.
60976
+ */
60977
+ tenantId?: string;
60978
+ /**
60979
+ * Gets or sets the Modifed By Id.
60980
+ */
60981
+ modifiedById?: string;
60982
+ /**
60983
+ * Gets or sets the Modifed By Ids.
60984
+ */
60985
+ modifiedByIds?: Array<string>;
60986
+ /**
60987
+ * Gets or sets the Date Created greater than equal to.
60988
+ */
60989
+ dateCreatedGte?: string;
60990
+ /**
60991
+ * Gets or sets the Date Created less than equal to.
60992
+ */
60993
+ dateCreatedLte?: string;
60994
+ /**
60995
+ * Gets or sets the queryable only is live status.
60996
+ */
60997
+ isLive?: boolean;
60998
+ /**
60999
+ * Gets or sets the sort order direction.
61000
+ */
61001
+ sortOrderDirection?: SearchSortOrderDirection;
61002
+ }): CancelablePromise<Array<VenueType>>;
61003
+ /**
61004
+ * Gets a list of resources.
61005
+ * @returns VenueType OK
61006
+ * @throws ApiError
61007
+ */
61008
+ getListIdName({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
61009
+ /**
61010
+ * Gets or sets the page number for paged queries.
61011
+ */
61012
+ pageNumber?: number;
61013
+ /**
61014
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
61015
+ */
61016
+ take?: number;
61017
+ /**
61018
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
61019
+ */
61020
+ skip?: number;
61021
+ /**
61022
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
61023
+ */
61024
+ limitListRequests?: boolean;
61025
+ /**
61026
+ * Gets or sets the Tenant Id.
61027
+ */
61028
+ tenantId?: string;
61029
+ /**
61030
+ * Gets or sets the Modifed By Id.
61031
+ */
61032
+ modifiedById?: string;
61033
+ /**
61034
+ * Gets or sets the Modifed By Ids.
61035
+ */
61036
+ modifiedByIds?: Array<string>;
61037
+ /**
61038
+ * Gets or sets the Date Created greater than equal to.
61039
+ */
61040
+ dateCreatedGte?: string;
61041
+ /**
61042
+ * Gets or sets the Date Created less than equal to.
61043
+ */
61044
+ dateCreatedLte?: string;
61045
+ /**
61046
+ * Gets or sets the queryable only is live status.
61047
+ */
61048
+ isLive?: boolean;
61049
+ /**
61050
+ * Gets or sets the sort order direction.
61051
+ */
61052
+ sortOrderDirection?: SearchSortOrderDirection;
61053
+ }): CancelablePromise<Array<VenueType>>;
61054
+ }
61055
+
59836
61056
  declare class WaitlistActivityService {
59837
61057
  readonly httpRequest: BaseHttpRequest;
59838
61058
  constructor(httpRequest: BaseHttpRequest);
@@ -62122,6 +63342,7 @@ declare class ApiClient {
62122
63342
  readonly publicSurveys: PublicSurveysService;
62123
63343
  readonly publicTenants: PublicTenantsService;
62124
63344
  readonly publicVenues: PublicVenuesService;
63345
+ readonly publicVenueTypes: PublicVenueTypesService;
62125
63346
  readonly publicWaitlistActivity: PublicWaitlistActivityService;
62126
63347
  readonly publicWaitlistOpportunity: PublicWaitlistOpportunityService;
62127
63348
  readonly recentOrderActivityReport: RecentOrderActivityReportService;
@@ -62158,6 +63379,7 @@ declare class ApiClient {
62158
63379
  readonly venuePerformance: VenuePerformanceService;
62159
63380
  readonly venues: VenuesService;
62160
63381
  readonly venuesReport: VenuesReportService;
63382
+ readonly venueType: VenueTypeService;
62161
63383
  readonly waitlistActivity: WaitlistActivityService;
62162
63384
  readonly waitlistActivityReport: WaitlistActivityReportService;
62163
63385
  readonly waitlistOpportunity: WaitlistOpportunityService;
@@ -62293,4 +63515,4 @@ type ValidationResultModel = {
62293
63515
  readonly errors?: Array<ValidationError> | null;
62294
63516
  };
62295
63517
 
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 };
63518
+ 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 };