reach-api-sdk 1.0.193 → 1.0.194

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.
@@ -2208,6 +2208,14 @@ type Deal = {
2208
2208
  * Gets the venues shortened formatted address.
2209
2209
  */
2210
2210
  readonly typeLabel?: string | null;
2211
+ /**
2212
+ * Gets a value indicating whether the deal is a promotional deal (manually entered by the user).
2213
+ */
2214
+ readonly isPromotional?: boolean;
2215
+ /**
2216
+ * Gets the user-friendly label for the deal type.
2217
+ */
2218
+ readonly typeDisplayName?: string | null;
2211
2219
  };
2212
2220
 
2213
2221
  /**
@@ -5162,6 +5170,10 @@ type Course = {
5162
5170
  * Gets the slots remaining uses when also considering Order leases. This is computed at runtime since order leases expire silently, that is, there is no process that recalculates remaining uses when an Order lease expiry is reached.
5163
5171
  */
5164
5172
  readonly actualRemainingUses?: number | null;
5173
+ /**
5174
+ * Gets the courses total number of sessions.
5175
+ */
5176
+ readonly totalSessions?: number;
5165
5177
  /**
5166
5178
  * Gets the courses period label.
5167
5179
  */
@@ -7466,6 +7478,14 @@ type CreateDeal = {
7466
7478
  * Gets the venues shortened formatted address.
7467
7479
  */
7468
7480
  readonly typeLabel?: string | null;
7481
+ /**
7482
+ * Gets a value indicating whether the deal is a promotional deal (manually entered by the user).
7483
+ */
7484
+ readonly isPromotional?: boolean;
7485
+ /**
7486
+ * Gets the user-friendly label for the deal type.
7487
+ */
7488
+ readonly typeDisplayName?: string | null;
7469
7489
  };
7470
7490
 
7471
7491
  /**
@@ -9055,7 +9075,7 @@ declare class CourseSessionsService {
9055
9075
  * @returns CourseSessionPage OK
9056
9076
  * @throws ApiError
9057
9077
  */
9058
- getPage({ ids, venueId, programmeId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, includeVenue, excludeArchived, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9078
+ getPage({ ids, venueId, programmeId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, includeVenue, includeOffers, excludeArchived, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9059
9079
  /**
9060
9080
  * Gets or sets the queryable course session ids.
9061
9081
  */
@@ -9112,6 +9132,10 @@ declare class CourseSessionsService {
9112
9132
  * Gets or sets a value indicating whether to include venue detail in the results.
9113
9133
  */
9114
9134
  includeVenue?: boolean;
9135
+ /**
9136
+ * Gets or sets a value indicating whether to include offer detail in the results.
9137
+ */
9138
+ includeOffers?: boolean;
9115
9139
  /**
9116
9140
  * Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
9117
9141
  */
@@ -9199,7 +9223,7 @@ declare class CourseSessionsService {
9199
9223
  * @returns boolean OK
9200
9224
  * @throws ApiError
9201
9225
  */
9202
- exists({ ids, venueId, programmeId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, includeVenue, excludeArchived, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9226
+ exists({ ids, venueId, programmeId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, includeVenue, includeOffers, excludeArchived, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9203
9227
  /**
9204
9228
  * Gets or sets the queryable course session ids.
9205
9229
  */
@@ -9256,6 +9280,10 @@ declare class CourseSessionsService {
9256
9280
  * Gets or sets a value indicating whether to include venue detail in the results.
9257
9281
  */
9258
9282
  includeVenue?: boolean;
9283
+ /**
9284
+ * Gets or sets a value indicating whether to include offer detail in the results.
9285
+ */
9286
+ includeOffers?: boolean;
9259
9287
  /**
9260
9288
  * Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
9261
9289
  */
@@ -9310,7 +9338,7 @@ declare class CourseSessionsService {
9310
9338
  * @returns CourseSession OK
9311
9339
  * @throws ApiError
9312
9340
  */
9313
- getListWithoutReferences({ ids, venueId, programmeId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, includeVenue, excludeArchived, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9341
+ getListWithoutReferences({ ids, venueId, programmeId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, includeVenue, includeOffers, excludeArchived, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9314
9342
  /**
9315
9343
  * Gets or sets the queryable course session ids.
9316
9344
  */
@@ -9367,6 +9395,10 @@ declare class CourseSessionsService {
9367
9395
  * Gets or sets a value indicating whether to include venue detail in the results.
9368
9396
  */
9369
9397
  includeVenue?: boolean;
9398
+ /**
9399
+ * Gets or sets a value indicating whether to include offer detail in the results.
9400
+ */
9401
+ includeOffers?: boolean;
9370
9402
  /**
9371
9403
  * Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
9372
9404
  */
@@ -9421,7 +9453,7 @@ declare class CourseSessionsService {
9421
9453
  * @returns CourseSession OK
9422
9454
  * @throws ApiError
9423
9455
  */
9424
- getListIdName({ ids, venueId, programmeId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, includeVenue, excludeArchived, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9456
+ getListIdName({ ids, venueId, programmeId, courseId, courseIds, scheduleId, status, statuses, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, futureOnly, includeVenue, includeOffers, excludeArchived, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9425
9457
  /**
9426
9458
  * Gets or sets the queryable course session ids.
9427
9459
  */
@@ -9478,6 +9510,10 @@ declare class CourseSessionsService {
9478
9510
  * Gets or sets a value indicating whether to include venue detail in the results.
9479
9511
  */
9480
9512
  includeVenue?: boolean;
9513
+ /**
9514
+ * Gets or sets a value indicating whether to include offer detail in the results.
9515
+ */
9516
+ includeOffers?: boolean;
9481
9517
  /**
9482
9518
  * Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
9483
9519
  */
@@ -14447,7 +14483,7 @@ declare class GenericActivityService {
14447
14483
  * @returns GenericActivity OK
14448
14484
  * @throws ApiError
14449
14485
  */
14450
- getUpcoming({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14486
+ getUpcoming({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14451
14487
  /**
14452
14488
  * Gets or sets the wildcard for use in a query search.
14453
14489
  */
@@ -14572,6 +14608,10 @@ declare class GenericActivityService {
14572
14608
  * Gets or sets AmenityId.
14573
14609
  */
14574
14610
  amenity?: Array<number>;
14611
+ /**
14612
+ * Gets or sets the Programme ids.
14613
+ */
14614
+ programmeIds?: Array<string>;
14575
14615
  /**
14576
14616
  * Gets or sets the page number for paged queries.
14577
14617
  */
@@ -14633,7 +14673,7 @@ declare class GenericActivityService {
14633
14673
  * @returns boolean OK
14634
14674
  * @throws ApiError
14635
14675
  */
14636
- exists({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14676
+ exists({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14637
14677
  /**
14638
14678
  * Gets or sets the wildcard for use in a query search.
14639
14679
  */
@@ -14758,6 +14798,10 @@ declare class GenericActivityService {
14758
14798
  * Gets or sets AmenityId.
14759
14799
  */
14760
14800
  amenity?: Array<number>;
14801
+ /**
14802
+ * Gets or sets the Programme ids.
14803
+ */
14804
+ programmeIds?: Array<string>;
14761
14805
  /**
14762
14806
  * Gets or sets the page number for paged queries.
14763
14807
  */
@@ -14808,7 +14852,7 @@ declare class GenericActivityService {
14808
14852
  * @returns GenericActivityPage OK
14809
14853
  * @throws ApiError
14810
14854
  */
14811
- getPage({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14855
+ getPage({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14812
14856
  /**
14813
14857
  * Gets or sets the wildcard for use in a query search.
14814
14858
  */
@@ -14933,6 +14977,10 @@ declare class GenericActivityService {
14933
14977
  * Gets or sets AmenityId.
14934
14978
  */
14935
14979
  amenity?: Array<number>;
14980
+ /**
14981
+ * Gets or sets the Programme ids.
14982
+ */
14983
+ programmeIds?: Array<string>;
14936
14984
  /**
14937
14985
  * Gets or sets the page number for paged queries.
14938
14986
  */
@@ -14983,7 +15031,7 @@ declare class GenericActivityService {
14983
15031
  * @returns GenericActivity OK
14984
15032
  * @throws ApiError
14985
15033
  */
14986
- getListWithoutReferences({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
15034
+ getListWithoutReferences({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
14987
15035
  /**
14988
15036
  * Gets or sets the wildcard for use in a query search.
14989
15037
  */
@@ -15108,6 +15156,10 @@ declare class GenericActivityService {
15108
15156
  * Gets or sets AmenityId.
15109
15157
  */
15110
15158
  amenity?: Array<number>;
15159
+ /**
15160
+ * Gets or sets the Programme ids.
15161
+ */
15162
+ programmeIds?: Array<string>;
15111
15163
  /**
15112
15164
  * Gets or sets the page number for paged queries.
15113
15165
  */
@@ -15158,7 +15210,7 @@ declare class GenericActivityService {
15158
15210
  * @returns GenericActivity OK
15159
15211
  * @throws ApiError
15160
15212
  */
15161
- getListIdName({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
15213
+ getListIdName({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
15162
15214
  /**
15163
15215
  * Gets or sets the wildcard for use in a query search.
15164
15216
  */
@@ -15283,6 +15335,10 @@ declare class GenericActivityService {
15283
15335
  * Gets or sets AmenityId.
15284
15336
  */
15285
15337
  amenity?: Array<number>;
15338
+ /**
15339
+ * Gets or sets the Programme ids.
15340
+ */
15341
+ programmeIds?: Array<string>;
15286
15342
  /**
15287
15343
  * Gets or sets the page number for paged queries.
15288
15344
  */
@@ -28612,7 +28668,7 @@ declare class PublicGenericActivityService {
28612
28668
  * @returns GenericActivityPage OK
28613
28669
  * @throws ApiError
28614
28670
  */
28615
- getPage({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
28671
+ getPage({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
28616
28672
  xTenantSubdomain?: string;
28617
28673
  /**
28618
28674
  * Gets or sets the wildcard for use in a query search.
@@ -28738,6 +28794,10 @@ declare class PublicGenericActivityService {
28738
28794
  * Gets or sets AmenityId.
28739
28795
  */
28740
28796
  amenity?: Array<number>;
28797
+ /**
28798
+ * Gets or sets the Programme ids.
28799
+ */
28800
+ programmeIds?: Array<string>;
28741
28801
  /**
28742
28802
  * Gets or sets the page number for paged queries.
28743
28803
  */
@@ -28788,7 +28848,7 @@ declare class PublicGenericActivityService {
28788
28848
  * @returns GenericActivityPage OK
28789
28849
  * @throws ApiError
28790
28850
  */
28791
- getPage1({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
28851
+ getPage1({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
28792
28852
  /**
28793
28853
  * Gets or sets the wildcard for use in a query search.
28794
28854
  */
@@ -28913,6 +28973,10 @@ declare class PublicGenericActivityService {
28913
28973
  * Gets or sets AmenityId.
28914
28974
  */
28915
28975
  amenity?: Array<number>;
28976
+ /**
28977
+ * Gets or sets the Programme ids.
28978
+ */
28979
+ programmeIds?: Array<string>;
28916
28980
  /**
28917
28981
  * Gets or sets the page number for paged queries.
28918
28982
  */
@@ -28963,7 +29027,7 @@ declare class PublicGenericActivityService {
28963
29027
  * @returns GenericActivity OK
28964
29028
  * @throws ApiError
28965
29029
  */
28966
- getUpcoming({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
29030
+ getUpcoming({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
28967
29031
  /**
28968
29032
  * The tenants subdomain.
28969
29033
  */
@@ -29092,6 +29156,10 @@ declare class PublicGenericActivityService {
29092
29156
  * Gets or sets AmenityId.
29093
29157
  */
29094
29158
  amenity?: Array<number>;
29159
+ /**
29160
+ * Gets or sets the Programme ids.
29161
+ */
29162
+ programmeIds?: Array<string>;
29095
29163
  /**
29096
29164
  * Gets or sets the page number for paged queries.
29097
29165
  */
@@ -29165,7 +29233,7 @@ declare class PublicGenericActivityService {
29165
29233
  * @returns boolean OK
29166
29234
  * @throws ApiError
29167
29235
  */
29168
- exists({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
29236
+ exists({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
29169
29237
  /**
29170
29238
  * The tenants subdomain.
29171
29239
  */
@@ -29294,6 +29362,10 @@ declare class PublicGenericActivityService {
29294
29362
  * Gets or sets AmenityId.
29295
29363
  */
29296
29364
  amenity?: Array<number>;
29365
+ /**
29366
+ * Gets or sets the Programme ids.
29367
+ */
29368
+ programmeIds?: Array<string>;
29297
29369
  /**
29298
29370
  * Gets or sets the page number for paged queries.
29299
29371
  */
@@ -32068,7 +32140,7 @@ declare class PublicScheduledSessionsService {
32068
32140
  * @returns ScheduledSessionPage OK
32069
32141
  * @throws ApiError
32070
32142
  */
32071
- getPage({ xTenantSubdomain, ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
32143
+ getPage({ xTenantSubdomain, ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOffers, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
32072
32144
  xTenantSubdomain?: string;
32073
32145
  /**
32074
32146
  * Gets or sets the queryable scheduled session ids.
@@ -32146,6 +32218,10 @@ declare class PublicScheduledSessionsService {
32146
32218
  * Gets or sets a value indicating whether to include venue detail in the results.
32147
32219
  */
32148
32220
  includeVenue?: boolean;
32221
+ /**
32222
+ * Gets or sets a value indicating whether to include offer detail in the results.
32223
+ */
32224
+ includeOffers?: boolean;
32149
32225
  /**
32150
32226
  * Gets or sets a value indicating whether to include order detail in the results.
32151
32227
  */
@@ -32284,7 +32360,7 @@ declare class PublicScheduledSessionsService {
32284
32360
  * @returns boolean OK
32285
32361
  * @throws ApiError
32286
32362
  */
32287
- exists({ xTenantSubdomain, ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
32363
+ exists({ xTenantSubdomain, ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOffers, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
32288
32364
  /**
32289
32365
  * The tenants subdomain.
32290
32366
  */
@@ -32365,6 +32441,10 @@ declare class PublicScheduledSessionsService {
32365
32441
  * Gets or sets a value indicating whether to include venue detail in the results.
32366
32442
  */
32367
32443
  includeVenue?: boolean;
32444
+ /**
32445
+ * Gets or sets a value indicating whether to include offer detail in the results.
32446
+ */
32447
+ includeOffers?: boolean;
32368
32448
  /**
32369
32449
  * Gets or sets a value indicating whether to include order detail in the results.
32370
32450
  */
@@ -32836,7 +32916,7 @@ declare class PublicSessionsService {
32836
32916
  * @returns any OK
32837
32917
  * @throws ApiError
32838
32918
  */
32839
- getDistinctSlotDates({ xTenantSubdomain, ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
32919
+ getDistinctSlotDates({ xTenantSubdomain, ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOffers, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
32840
32920
  /**
32841
32921
  * The tenants subdomain.
32842
32922
  */
@@ -32917,6 +32997,10 @@ declare class PublicSessionsService {
32917
32997
  * Gets or sets a value indicating whether to include venue detail in the results.
32918
32998
  */
32919
32999
  includeVenue?: boolean;
33000
+ /**
33001
+ * Gets or sets a value indicating whether to include offer detail in the results.
33002
+ */
33003
+ includeOffers?: boolean;
32920
33004
  /**
32921
33005
  * Gets or sets a value indicating whether to include order detail in the results.
32922
33006
  */
@@ -35630,7 +35714,7 @@ declare class PublicVenuesService {
35630
35714
  * @returns VenuePage OK
35631
35715
  * @throws ApiError
35632
35716
  */
35633
- getPage({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
35717
+ getPage({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
35634
35718
  xTenantSubdomain?: string;
35635
35719
  /**
35636
35720
  * Gets or sets the queryable venue ids.
@@ -35708,6 +35792,10 @@ declare class PublicVenuesService {
35708
35792
  * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
35709
35793
  */
35710
35794
  dashboardRequest?: boolean;
35795
+ /**
35796
+ * Gets or sets the programme ids.
35797
+ */
35798
+ programmeIds?: Array<string>;
35711
35799
  /**
35712
35800
  * Gets or sets the page number for paged queries.
35713
35801
  */
@@ -35773,7 +35861,7 @@ declare class PublicVenuesService {
35773
35861
  * @returns VenuePage OK
35774
35862
  * @throws ApiError
35775
35863
  */
35776
- getNetworkPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
35864
+ getNetworkPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
35777
35865
  /**
35778
35866
  * Gets or sets the queryable venue ids.
35779
35867
  */
@@ -35850,6 +35938,10 @@ declare class PublicVenuesService {
35850
35938
  * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
35851
35939
  */
35852
35940
  dashboardRequest?: boolean;
35941
+ /**
35942
+ * Gets or sets the programme ids.
35943
+ */
35944
+ programmeIds?: Array<string>;
35853
35945
  /**
35854
35946
  * Gets or sets the page number for paged queries.
35855
35947
  */
@@ -35945,7 +36037,7 @@ declare class PublicVenuesService {
35945
36037
  * @returns boolean OK
35946
36038
  * @throws ApiError
35947
36039
  */
35948
- exists({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
36040
+ exists({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
35949
36041
  /**
35950
36042
  * The tenants subdomain.
35951
36043
  */
@@ -36026,6 +36118,10 @@ declare class PublicVenuesService {
36026
36118
  * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
36027
36119
  */
36028
36120
  dashboardRequest?: boolean;
36121
+ /**
36122
+ * Gets or sets the programme ids.
36123
+ */
36124
+ programmeIds?: Array<string>;
36029
36125
  /**
36030
36126
  * Gets or sets the page number for paged queries.
36031
36127
  */
@@ -38417,7 +38513,7 @@ declare class ScheduledSessionsService {
38417
38513
  * @returns ScheduledSessionPage OK
38418
38514
  * @throws ApiError
38419
38515
  */
38420
- getPage({ ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38516
+ getPage({ ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOffers, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38421
38517
  /**
38422
38518
  * Gets or sets the queryable scheduled session ids.
38423
38519
  */
@@ -38494,6 +38590,10 @@ declare class ScheduledSessionsService {
38494
38590
  * Gets or sets a value indicating whether to include venue detail in the results.
38495
38591
  */
38496
38592
  includeVenue?: boolean;
38593
+ /**
38594
+ * Gets or sets a value indicating whether to include offer detail in the results.
38595
+ */
38596
+ includeOffers?: boolean;
38497
38597
  /**
38498
38598
  * Gets or sets a value indicating whether to include order detail in the results.
38499
38599
  */
@@ -38605,7 +38705,7 @@ declare class ScheduledSessionsService {
38605
38705
  * @returns boolean OK
38606
38706
  * @throws ApiError
38607
38707
  */
38608
- exists({ ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38708
+ exists({ ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOffers, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38609
38709
  /**
38610
38710
  * Gets or sets the queryable scheduled session ids.
38611
38711
  */
@@ -38682,6 +38782,10 @@ declare class ScheduledSessionsService {
38682
38782
  * Gets or sets a value indicating whether to include venue detail in the results.
38683
38783
  */
38684
38784
  includeVenue?: boolean;
38785
+ /**
38786
+ * Gets or sets a value indicating whether to include offer detail in the results.
38787
+ */
38788
+ includeOffers?: boolean;
38685
38789
  /**
38686
38790
  * Gets or sets a value indicating whether to include order detail in the results.
38687
38791
  */
@@ -38760,7 +38864,7 @@ declare class ScheduledSessionsService {
38760
38864
  * @returns ScheduledSession OK
38761
38865
  * @throws ApiError
38762
38866
  */
38763
- getListWithoutReferences({ ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38867
+ getListWithoutReferences({ ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOffers, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38764
38868
  /**
38765
38869
  * Gets or sets the queryable scheduled session ids.
38766
38870
  */
@@ -38837,6 +38941,10 @@ declare class ScheduledSessionsService {
38837
38941
  * Gets or sets a value indicating whether to include venue detail in the results.
38838
38942
  */
38839
38943
  includeVenue?: boolean;
38944
+ /**
38945
+ * Gets or sets a value indicating whether to include offer detail in the results.
38946
+ */
38947
+ includeOffers?: boolean;
38840
38948
  /**
38841
38949
  * Gets or sets a value indicating whether to include order detail in the results.
38842
38950
  */
@@ -38915,7 +39023,7 @@ declare class ScheduledSessionsService {
38915
39023
  * @returns ScheduledSession OK
38916
39024
  * @throws ApiError
38917
39025
  */
38918
- getListIdName({ ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
39026
+ getListIdName({ ids, venueId, programmeId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, bookableOnly, includeImages, includeVenue, includeOffers, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38919
39027
  /**
38920
39028
  * Gets or sets the queryable scheduled session ids.
38921
39029
  */
@@ -38992,6 +39100,10 @@ declare class ScheduledSessionsService {
38992
39100
  * Gets or sets a value indicating whether to include venue detail in the results.
38993
39101
  */
38994
39102
  includeVenue?: boolean;
39103
+ /**
39104
+ * Gets or sets a value indicating whether to include offer detail in the results.
39105
+ */
39106
+ includeOffers?: boolean;
38995
39107
  /**
38996
39108
  * Gets or sets a value indicating whether to include order detail in the results.
38997
39109
  */
@@ -52570,7 +52682,7 @@ declare class VenuesService {
52570
52682
  * @returns VenuePage OK
52571
52683
  * @throws ApiError
52572
52684
  */
52573
- getPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
52685
+ getPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
52574
52686
  /**
52575
52687
  * Gets or sets the queryable venue ids.
52576
52688
  */
@@ -52647,6 +52759,10 @@ declare class VenuesService {
52647
52759
  * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
52648
52760
  */
52649
52761
  dashboardRequest?: boolean;
52762
+ /**
52763
+ * Gets or sets the programme ids.
52764
+ */
52765
+ programmeIds?: Array<string>;
52650
52766
  /**
52651
52767
  * Gets or sets the page number for paged queries.
52652
52768
  */
@@ -52730,7 +52846,7 @@ declare class VenuesService {
52730
52846
  * @returns boolean OK
52731
52847
  * @throws ApiError
52732
52848
  */
52733
- exists({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
52849
+ exists({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
52734
52850
  /**
52735
52851
  * Gets or sets the queryable venue ids.
52736
52852
  */
@@ -52807,6 +52923,10 @@ declare class VenuesService {
52807
52923
  * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
52808
52924
  */
52809
52925
  dashboardRequest?: boolean;
52926
+ /**
52927
+ * Gets or sets the programme ids.
52928
+ */
52929
+ programmeIds?: Array<string>;
52810
52930
  /**
52811
52931
  * Gets or sets the page number for paged queries.
52812
52932
  */
@@ -52857,7 +52977,7 @@ declare class VenuesService {
52857
52977
  * @returns Venue OK
52858
52978
  * @throws ApiError
52859
52979
  */
52860
- getListWithoutReferences({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
52980
+ getListWithoutReferences({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
52861
52981
  /**
52862
52982
  * Gets or sets the queryable venue ids.
52863
52983
  */
@@ -52934,6 +53054,10 @@ declare class VenuesService {
52934
53054
  * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
52935
53055
  */
52936
53056
  dashboardRequest?: boolean;
53057
+ /**
53058
+ * Gets or sets the programme ids.
53059
+ */
53060
+ programmeIds?: Array<string>;
52937
53061
  /**
52938
53062
  * Gets or sets the page number for paged queries.
52939
53063
  */
@@ -52984,7 +53108,7 @@ declare class VenuesService {
52984
53108
  * @returns Venue OK
52985
53109
  * @throws ApiError
52986
53110
  */
52987
- getListIdName({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
53111
+ getListIdName({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
52988
53112
  /**
52989
53113
  * Gets or sets the queryable venue ids.
52990
53114
  */
@@ -53061,6 +53185,10 @@ declare class VenuesService {
53061
53185
  * Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
53062
53186
  */
53063
53187
  dashboardRequest?: boolean;
53188
+ /**
53189
+ * Gets or sets the programme ids.
53190
+ */
53191
+ programmeIds?: Array<string>;
53064
53192
  /**
53065
53193
  * Gets or sets the page number for paged queries.
53066
53194
  */