reach-api-sdk 1.0.192 → 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.
- package/dist/reach-sdk.d.ts +376 -52
- package/dist/reach-sdk.js +213 -5
- package/package.json +1 -1
- package/src/definition/swagger.yaml +655 -7
- package/src/models/Course.ts +8 -0
- package/src/models/CreateDeal.ts +8 -0
- package/src/models/Deal.ts +8 -0
- package/src/models/GenericActivity.ts +4 -0
- package/src/models/Session.ts +4 -0
- package/src/services/CourseSessionsService.ts +24 -0
- package/src/services/CoursesService.ts +80 -2
- package/src/services/GenericActivityService.ts +60 -0
- package/src/services/OrderItemsService.ts +24 -0
- package/src/services/PublicCalendarService.ts +1 -1
- package/src/services/PublicCoursesService.ts +12 -0
- package/src/services/PublicGenericActivityService.ts +48 -0
- package/src/services/PublicNetworksService.ts +6 -0
- package/src/services/PublicOrderItemsService.ts +12 -0
- package/src/services/PublicScheduledSessionsService.ts +12 -0
- package/src/services/PublicSessionsService.ts +18 -0
- package/src/services/PublicVenuesService.ts +36 -0
- package/src/services/ScheduledSessionsService.ts +24 -0
- package/src/services/SessionsService.ts +82 -4
- package/src/services/VenuesService.ts +48 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -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
|
/**
|
|
@@ -3846,6 +3854,10 @@ type Session = {
|
|
|
3846
3854
|
* Gets or sets the admin contact email.
|
|
3847
3855
|
*/
|
|
3848
3856
|
adminContactEmail?: string | null;
|
|
3857
|
+
/**
|
|
3858
|
+
* Gets or sets a valu indicating whether to send the reminder email.
|
|
3859
|
+
*/
|
|
3860
|
+
sendReminder?: boolean | null;
|
|
3849
3861
|
/**
|
|
3850
3862
|
* Gets or sets the reminder hours before start.
|
|
3851
3863
|
*/
|
|
@@ -5034,6 +5046,10 @@ type Course = {
|
|
|
5034
5046
|
* Gets or sets the admin contact email.
|
|
5035
5047
|
*/
|
|
5036
5048
|
adminContactEmail?: string | null;
|
|
5049
|
+
/**
|
|
5050
|
+
* Gets or sets a valu indicating whether to send the reminder email.
|
|
5051
|
+
*/
|
|
5052
|
+
sendReminder?: boolean | null;
|
|
5037
5053
|
/**
|
|
5038
5054
|
* Gets or sets the reminder hours before start.
|
|
5039
5055
|
*/
|
|
@@ -5154,6 +5170,10 @@ type Course = {
|
|
|
5154
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.
|
|
5155
5171
|
*/
|
|
5156
5172
|
readonly actualRemainingUses?: number | null;
|
|
5173
|
+
/**
|
|
5174
|
+
* Gets the courses total number of sessions.
|
|
5175
|
+
*/
|
|
5176
|
+
readonly totalSessions?: number;
|
|
5157
5177
|
/**
|
|
5158
5178
|
* Gets the courses period label.
|
|
5159
5179
|
*/
|
|
@@ -7458,6 +7478,14 @@ type CreateDeal = {
|
|
|
7458
7478
|
* Gets the venues shortened formatted address.
|
|
7459
7479
|
*/
|
|
7460
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;
|
|
7461
7489
|
};
|
|
7462
7490
|
|
|
7463
7491
|
/**
|
|
@@ -8028,7 +8056,7 @@ declare class CoursesService {
|
|
|
8028
8056
|
*/
|
|
8029
8057
|
batchSendPostActivityCompletionsEmails(): CancelablePromise<any>;
|
|
8030
8058
|
/**
|
|
8031
|
-
*
|
|
8059
|
+
* Assign deal to course />.
|
|
8032
8060
|
* @returns Course OK
|
|
8033
8061
|
* @throws ApiError
|
|
8034
8062
|
*/
|
|
@@ -8043,7 +8071,7 @@ declare class CoursesService {
|
|
|
8043
8071
|
dealId: string;
|
|
8044
8072
|
}): CancelablePromise<Course>;
|
|
8045
8073
|
/**
|
|
8046
|
-
*
|
|
8074
|
+
* Unassign deal from course />.
|
|
8047
8075
|
* @returns Course OK
|
|
8048
8076
|
* @throws ApiError
|
|
8049
8077
|
*/
|
|
@@ -8057,6 +8085,28 @@ declare class CoursesService {
|
|
|
8057
8085
|
*/
|
|
8058
8086
|
dealId: string;
|
|
8059
8087
|
}): CancelablePromise<Course>;
|
|
8088
|
+
/**
|
|
8089
|
+
* Set the course as featured (displays more prominently on the storefront).
|
|
8090
|
+
* @returns Course OK
|
|
8091
|
+
* @throws ApiError
|
|
8092
|
+
*/
|
|
8093
|
+
setFeatured({ id, }: {
|
|
8094
|
+
/**
|
|
8095
|
+
* The course Id.
|
|
8096
|
+
*/
|
|
8097
|
+
id: string;
|
|
8098
|
+
}): CancelablePromise<Course>;
|
|
8099
|
+
/**
|
|
8100
|
+
* Remove the course as featured (displays as standard on the storefront).
|
|
8101
|
+
* @returns Course OK
|
|
8102
|
+
* @throws ApiError
|
|
8103
|
+
*/
|
|
8104
|
+
removeFeatured({ id, }: {
|
|
8105
|
+
/**
|
|
8106
|
+
* The course Id.
|
|
8107
|
+
*/
|
|
8108
|
+
id: string;
|
|
8109
|
+
}): CancelablePromise<Course>;
|
|
8060
8110
|
/**
|
|
8061
8111
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
8062
8112
|
* @returns Course OK
|
|
@@ -8117,7 +8167,7 @@ declare class CoursesService {
|
|
|
8117
8167
|
* @returns CoursePage OK
|
|
8118
8168
|
* @throws ApiError
|
|
8119
8169
|
*/
|
|
8120
|
-
getPage({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8170
|
+
getPage({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8121
8171
|
/**
|
|
8122
8172
|
* Gets or sets the queryable Course Id.
|
|
8123
8173
|
*/
|
|
@@ -8162,6 +8212,10 @@ declare class CoursesService {
|
|
|
8162
8212
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
8163
8213
|
*/
|
|
8164
8214
|
openActiveUpdate?: boolean;
|
|
8215
|
+
/**
|
|
8216
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
8217
|
+
*/
|
|
8218
|
+
dashboardRequest?: boolean;
|
|
8165
8219
|
/**
|
|
8166
8220
|
* Gets or sets the queryable booking status.
|
|
8167
8221
|
*/
|
|
@@ -8321,7 +8375,7 @@ declare class CoursesService {
|
|
|
8321
8375
|
* @returns boolean OK
|
|
8322
8376
|
* @throws ApiError
|
|
8323
8377
|
*/
|
|
8324
|
-
exists({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8378
|
+
exists({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8325
8379
|
/**
|
|
8326
8380
|
* Gets or sets the queryable Course Id.
|
|
8327
8381
|
*/
|
|
@@ -8366,6 +8420,10 @@ declare class CoursesService {
|
|
|
8366
8420
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
8367
8421
|
*/
|
|
8368
8422
|
openActiveUpdate?: boolean;
|
|
8423
|
+
/**
|
|
8424
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
8425
|
+
*/
|
|
8426
|
+
dashboardRequest?: boolean;
|
|
8369
8427
|
/**
|
|
8370
8428
|
* Gets or sets the queryable booking status.
|
|
8371
8429
|
*/
|
|
@@ -8492,7 +8550,7 @@ declare class CoursesService {
|
|
|
8492
8550
|
* @returns Course OK
|
|
8493
8551
|
* @throws ApiError
|
|
8494
8552
|
*/
|
|
8495
|
-
getListWithoutReferences({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8553
|
+
getListWithoutReferences({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8496
8554
|
/**
|
|
8497
8555
|
* Gets or sets the queryable Course Id.
|
|
8498
8556
|
*/
|
|
@@ -8537,6 +8595,10 @@ declare class CoursesService {
|
|
|
8537
8595
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
8538
8596
|
*/
|
|
8539
8597
|
openActiveUpdate?: boolean;
|
|
8598
|
+
/**
|
|
8599
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
8600
|
+
*/
|
|
8601
|
+
dashboardRequest?: boolean;
|
|
8540
8602
|
/**
|
|
8541
8603
|
* Gets or sets the queryable booking status.
|
|
8542
8604
|
*/
|
|
@@ -8663,7 +8725,7 @@ declare class CoursesService {
|
|
|
8663
8725
|
* @returns Course OK
|
|
8664
8726
|
* @throws ApiError
|
|
8665
8727
|
*/
|
|
8666
|
-
getListIdName({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8728
|
+
getListIdName({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8667
8729
|
/**
|
|
8668
8730
|
* Gets or sets the queryable Course Id.
|
|
8669
8731
|
*/
|
|
@@ -8708,6 +8770,10 @@ declare class CoursesService {
|
|
|
8708
8770
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
8709
8771
|
*/
|
|
8710
8772
|
openActiveUpdate?: boolean;
|
|
8773
|
+
/**
|
|
8774
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
8775
|
+
*/
|
|
8776
|
+
dashboardRequest?: boolean;
|
|
8711
8777
|
/**
|
|
8712
8778
|
* Gets or sets the queryable booking status.
|
|
8713
8779
|
*/
|
|
@@ -9009,7 +9075,7 @@ declare class CourseSessionsService {
|
|
|
9009
9075
|
* @returns CourseSessionPage OK
|
|
9010
9076
|
* @throws ApiError
|
|
9011
9077
|
*/
|
|
9012
|
-
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, }: {
|
|
9013
9079
|
/**
|
|
9014
9080
|
* Gets or sets the queryable course session ids.
|
|
9015
9081
|
*/
|
|
@@ -9066,6 +9132,10 @@ declare class CourseSessionsService {
|
|
|
9066
9132
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
9067
9133
|
*/
|
|
9068
9134
|
includeVenue?: boolean;
|
|
9135
|
+
/**
|
|
9136
|
+
* Gets or sets a value indicating whether to include offer detail in the results.
|
|
9137
|
+
*/
|
|
9138
|
+
includeOffers?: boolean;
|
|
9069
9139
|
/**
|
|
9070
9140
|
* Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
|
|
9071
9141
|
*/
|
|
@@ -9153,7 +9223,7 @@ declare class CourseSessionsService {
|
|
|
9153
9223
|
* @returns boolean OK
|
|
9154
9224
|
* @throws ApiError
|
|
9155
9225
|
*/
|
|
9156
|
-
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, }: {
|
|
9157
9227
|
/**
|
|
9158
9228
|
* Gets or sets the queryable course session ids.
|
|
9159
9229
|
*/
|
|
@@ -9210,6 +9280,10 @@ declare class CourseSessionsService {
|
|
|
9210
9280
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
9211
9281
|
*/
|
|
9212
9282
|
includeVenue?: boolean;
|
|
9283
|
+
/**
|
|
9284
|
+
* Gets or sets a value indicating whether to include offer detail in the results.
|
|
9285
|
+
*/
|
|
9286
|
+
includeOffers?: boolean;
|
|
9213
9287
|
/**
|
|
9214
9288
|
* Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
|
|
9215
9289
|
*/
|
|
@@ -9264,7 +9338,7 @@ declare class CourseSessionsService {
|
|
|
9264
9338
|
* @returns CourseSession OK
|
|
9265
9339
|
* @throws ApiError
|
|
9266
9340
|
*/
|
|
9267
|
-
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, }: {
|
|
9268
9342
|
/**
|
|
9269
9343
|
* Gets or sets the queryable course session ids.
|
|
9270
9344
|
*/
|
|
@@ -9321,6 +9395,10 @@ declare class CourseSessionsService {
|
|
|
9321
9395
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
9322
9396
|
*/
|
|
9323
9397
|
includeVenue?: boolean;
|
|
9398
|
+
/**
|
|
9399
|
+
* Gets or sets a value indicating whether to include offer detail in the results.
|
|
9400
|
+
*/
|
|
9401
|
+
includeOffers?: boolean;
|
|
9324
9402
|
/**
|
|
9325
9403
|
* Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
|
|
9326
9404
|
*/
|
|
@@ -9375,7 +9453,7 @@ declare class CourseSessionsService {
|
|
|
9375
9453
|
* @returns CourseSession OK
|
|
9376
9454
|
* @throws ApiError
|
|
9377
9455
|
*/
|
|
9378
|
-
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, }: {
|
|
9379
9457
|
/**
|
|
9380
9458
|
* Gets or sets the queryable course session ids.
|
|
9381
9459
|
*/
|
|
@@ -9432,6 +9510,10 @@ declare class CourseSessionsService {
|
|
|
9432
9510
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
9433
9511
|
*/
|
|
9434
9512
|
includeVenue?: boolean;
|
|
9513
|
+
/**
|
|
9514
|
+
* Gets or sets a value indicating whether to include offer detail in the results.
|
|
9515
|
+
*/
|
|
9516
|
+
includeOffers?: boolean;
|
|
9435
9517
|
/**
|
|
9436
9518
|
* Gets or sets a value indicating whether to exclude course sessions whose courses have been archived.
|
|
9437
9519
|
*/
|
|
@@ -14279,6 +14361,10 @@ type GenericActivity = {
|
|
|
14279
14361
|
* Gets or sets a value indicating whether there is an age restriction.
|
|
14280
14362
|
*/
|
|
14281
14363
|
noAgeRestriction?: boolean;
|
|
14364
|
+
/**
|
|
14365
|
+
* Gets or sets a value indicating whether the activity should be featured on the storefront.
|
|
14366
|
+
*/
|
|
14367
|
+
featured?: boolean;
|
|
14282
14368
|
/**
|
|
14283
14369
|
* Gets or sets the start date.
|
|
14284
14370
|
*/
|
|
@@ -14397,7 +14483,7 @@ declare class GenericActivityService {
|
|
|
14397
14483
|
* @returns GenericActivity OK
|
|
14398
14484
|
* @throws ApiError
|
|
14399
14485
|
*/
|
|
14400
|
-
getUpcoming({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, 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, }: {
|
|
14401
14487
|
/**
|
|
14402
14488
|
* Gets or sets the wildcard for use in a query search.
|
|
14403
14489
|
*/
|
|
@@ -14434,6 +14520,10 @@ declare class GenericActivityService {
|
|
|
14434
14520
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
14435
14521
|
*/
|
|
14436
14522
|
includeNextOpportunity?: boolean;
|
|
14523
|
+
/**
|
|
14524
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
14525
|
+
*/
|
|
14526
|
+
featured?: boolean;
|
|
14437
14527
|
/**
|
|
14438
14528
|
* Gets or sets SearchGeoCenter.
|
|
14439
14529
|
*/
|
|
@@ -14518,6 +14608,10 @@ declare class GenericActivityService {
|
|
|
14518
14608
|
* Gets or sets AmenityId.
|
|
14519
14609
|
*/
|
|
14520
14610
|
amenity?: Array<number>;
|
|
14611
|
+
/**
|
|
14612
|
+
* Gets or sets the Programme ids.
|
|
14613
|
+
*/
|
|
14614
|
+
programmeIds?: Array<string>;
|
|
14521
14615
|
/**
|
|
14522
14616
|
* Gets or sets the page number for paged queries.
|
|
14523
14617
|
*/
|
|
@@ -14579,7 +14673,7 @@ declare class GenericActivityService {
|
|
|
14579
14673
|
* @returns boolean OK
|
|
14580
14674
|
* @throws ApiError
|
|
14581
14675
|
*/
|
|
14582
|
-
exists({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, 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, }: {
|
|
14583
14677
|
/**
|
|
14584
14678
|
* Gets or sets the wildcard for use in a query search.
|
|
14585
14679
|
*/
|
|
@@ -14616,6 +14710,10 @@ declare class GenericActivityService {
|
|
|
14616
14710
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
14617
14711
|
*/
|
|
14618
14712
|
includeNextOpportunity?: boolean;
|
|
14713
|
+
/**
|
|
14714
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
14715
|
+
*/
|
|
14716
|
+
featured?: boolean;
|
|
14619
14717
|
/**
|
|
14620
14718
|
* Gets or sets SearchGeoCenter.
|
|
14621
14719
|
*/
|
|
@@ -14700,6 +14798,10 @@ declare class GenericActivityService {
|
|
|
14700
14798
|
* Gets or sets AmenityId.
|
|
14701
14799
|
*/
|
|
14702
14800
|
amenity?: Array<number>;
|
|
14801
|
+
/**
|
|
14802
|
+
* Gets or sets the Programme ids.
|
|
14803
|
+
*/
|
|
14804
|
+
programmeIds?: Array<string>;
|
|
14703
14805
|
/**
|
|
14704
14806
|
* Gets or sets the page number for paged queries.
|
|
14705
14807
|
*/
|
|
@@ -14750,7 +14852,7 @@ declare class GenericActivityService {
|
|
|
14750
14852
|
* @returns GenericActivityPage OK
|
|
14751
14853
|
* @throws ApiError
|
|
14752
14854
|
*/
|
|
14753
|
-
getPage({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, 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, }: {
|
|
14754
14856
|
/**
|
|
14755
14857
|
* Gets or sets the wildcard for use in a query search.
|
|
14756
14858
|
*/
|
|
@@ -14787,6 +14889,10 @@ declare class GenericActivityService {
|
|
|
14787
14889
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
14788
14890
|
*/
|
|
14789
14891
|
includeNextOpportunity?: boolean;
|
|
14892
|
+
/**
|
|
14893
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
14894
|
+
*/
|
|
14895
|
+
featured?: boolean;
|
|
14790
14896
|
/**
|
|
14791
14897
|
* Gets or sets SearchGeoCenter.
|
|
14792
14898
|
*/
|
|
@@ -14871,6 +14977,10 @@ declare class GenericActivityService {
|
|
|
14871
14977
|
* Gets or sets AmenityId.
|
|
14872
14978
|
*/
|
|
14873
14979
|
amenity?: Array<number>;
|
|
14980
|
+
/**
|
|
14981
|
+
* Gets or sets the Programme ids.
|
|
14982
|
+
*/
|
|
14983
|
+
programmeIds?: Array<string>;
|
|
14874
14984
|
/**
|
|
14875
14985
|
* Gets or sets the page number for paged queries.
|
|
14876
14986
|
*/
|
|
@@ -14921,7 +15031,7 @@ declare class GenericActivityService {
|
|
|
14921
15031
|
* @returns GenericActivity OK
|
|
14922
15032
|
* @throws ApiError
|
|
14923
15033
|
*/
|
|
14924
|
-
getListWithoutReferences({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, 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, }: {
|
|
14925
15035
|
/**
|
|
14926
15036
|
* Gets or sets the wildcard for use in a query search.
|
|
14927
15037
|
*/
|
|
@@ -14958,6 +15068,10 @@ declare class GenericActivityService {
|
|
|
14958
15068
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
14959
15069
|
*/
|
|
14960
15070
|
includeNextOpportunity?: boolean;
|
|
15071
|
+
/**
|
|
15072
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
15073
|
+
*/
|
|
15074
|
+
featured?: boolean;
|
|
14961
15075
|
/**
|
|
14962
15076
|
* Gets or sets SearchGeoCenter.
|
|
14963
15077
|
*/
|
|
@@ -15042,6 +15156,10 @@ declare class GenericActivityService {
|
|
|
15042
15156
|
* Gets or sets AmenityId.
|
|
15043
15157
|
*/
|
|
15044
15158
|
amenity?: Array<number>;
|
|
15159
|
+
/**
|
|
15160
|
+
* Gets or sets the Programme ids.
|
|
15161
|
+
*/
|
|
15162
|
+
programmeIds?: Array<string>;
|
|
15045
15163
|
/**
|
|
15046
15164
|
* Gets or sets the page number for paged queries.
|
|
15047
15165
|
*/
|
|
@@ -15092,7 +15210,7 @@ declare class GenericActivityService {
|
|
|
15092
15210
|
* @returns GenericActivity OK
|
|
15093
15211
|
* @throws ApiError
|
|
15094
15212
|
*/
|
|
15095
|
-
getListIdName({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, 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, }: {
|
|
15096
15214
|
/**
|
|
15097
15215
|
* Gets or sets the wildcard for use in a query search.
|
|
15098
15216
|
*/
|
|
@@ -15129,6 +15247,10 @@ declare class GenericActivityService {
|
|
|
15129
15247
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
15130
15248
|
*/
|
|
15131
15249
|
includeNextOpportunity?: boolean;
|
|
15250
|
+
/**
|
|
15251
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
15252
|
+
*/
|
|
15253
|
+
featured?: boolean;
|
|
15132
15254
|
/**
|
|
15133
15255
|
* Gets or sets SearchGeoCenter.
|
|
15134
15256
|
*/
|
|
@@ -15213,6 +15335,10 @@ declare class GenericActivityService {
|
|
|
15213
15335
|
* Gets or sets AmenityId.
|
|
15214
15336
|
*/
|
|
15215
15337
|
amenity?: Array<number>;
|
|
15338
|
+
/**
|
|
15339
|
+
* Gets or sets the Programme ids.
|
|
15340
|
+
*/
|
|
15341
|
+
programmeIds?: Array<string>;
|
|
15216
15342
|
/**
|
|
15217
15343
|
* Gets or sets the page number for paged queries.
|
|
15218
15344
|
*/
|
|
@@ -22082,7 +22208,7 @@ declare class OrderItemsService {
|
|
|
22082
22208
|
* @returns OrderItemPage OK
|
|
22083
22209
|
* @throws ApiError
|
|
22084
22210
|
*/
|
|
22085
|
-
getPage({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22211
|
+
getPage({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22086
22212
|
/**
|
|
22087
22213
|
* Gets or sets the queryable order item ids.
|
|
22088
22214
|
*/
|
|
@@ -22127,6 +22253,10 @@ declare class OrderItemsService {
|
|
|
22127
22253
|
* Gets or sets the end user identity Id for use in a query search.
|
|
22128
22254
|
*/
|
|
22129
22255
|
endUserIdentityId?: string;
|
|
22256
|
+
/**
|
|
22257
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
22258
|
+
*/
|
|
22259
|
+
dashboardRequest?: boolean;
|
|
22130
22260
|
/**
|
|
22131
22261
|
* Gets or sets the page number for paged queries.
|
|
22132
22262
|
*/
|
|
@@ -22210,7 +22340,7 @@ declare class OrderItemsService {
|
|
|
22210
22340
|
* @returns boolean OK
|
|
22211
22341
|
* @throws ApiError
|
|
22212
22342
|
*/
|
|
22213
|
-
exists({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22343
|
+
exists({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22214
22344
|
/**
|
|
22215
22345
|
* Gets or sets the queryable order item ids.
|
|
22216
22346
|
*/
|
|
@@ -22255,6 +22385,10 @@ declare class OrderItemsService {
|
|
|
22255
22385
|
* Gets or sets the end user identity Id for use in a query search.
|
|
22256
22386
|
*/
|
|
22257
22387
|
endUserIdentityId?: string;
|
|
22388
|
+
/**
|
|
22389
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
22390
|
+
*/
|
|
22391
|
+
dashboardRequest?: boolean;
|
|
22258
22392
|
/**
|
|
22259
22393
|
* Gets or sets the page number for paged queries.
|
|
22260
22394
|
*/
|
|
@@ -22305,7 +22439,7 @@ declare class OrderItemsService {
|
|
|
22305
22439
|
* @returns OrderItem OK
|
|
22306
22440
|
* @throws ApiError
|
|
22307
22441
|
*/
|
|
22308
|
-
getListWithoutReferences({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22442
|
+
getListWithoutReferences({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22309
22443
|
/**
|
|
22310
22444
|
* Gets or sets the queryable order item ids.
|
|
22311
22445
|
*/
|
|
@@ -22350,6 +22484,10 @@ declare class OrderItemsService {
|
|
|
22350
22484
|
* Gets or sets the end user identity Id for use in a query search.
|
|
22351
22485
|
*/
|
|
22352
22486
|
endUserIdentityId?: string;
|
|
22487
|
+
/**
|
|
22488
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
22489
|
+
*/
|
|
22490
|
+
dashboardRequest?: boolean;
|
|
22353
22491
|
/**
|
|
22354
22492
|
* Gets or sets the page number for paged queries.
|
|
22355
22493
|
*/
|
|
@@ -22400,7 +22538,7 @@ declare class OrderItemsService {
|
|
|
22400
22538
|
* @returns OrderItem OK
|
|
22401
22539
|
* @throws ApiError
|
|
22402
22540
|
*/
|
|
22403
|
-
getListIdName({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22541
|
+
getListIdName({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22404
22542
|
/**
|
|
22405
22543
|
* Gets or sets the queryable order item ids.
|
|
22406
22544
|
*/
|
|
@@ -22445,6 +22583,10 @@ declare class OrderItemsService {
|
|
|
22445
22583
|
* Gets or sets the end user identity Id for use in a query search.
|
|
22446
22584
|
*/
|
|
22447
22585
|
endUserIdentityId?: string;
|
|
22586
|
+
/**
|
|
22587
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
22588
|
+
*/
|
|
22589
|
+
dashboardRequest?: boolean;
|
|
22448
22590
|
/**
|
|
22449
22591
|
* Gets or sets the page number for paged queries.
|
|
22450
22592
|
*/
|
|
@@ -27556,7 +27698,7 @@ declare class PublicCoursesService {
|
|
|
27556
27698
|
* @returns CoursePage OK
|
|
27557
27699
|
* @throws ApiError
|
|
27558
27700
|
*/
|
|
27559
|
-
getPage({ xTenantSubdomain, id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27701
|
+
getPage({ xTenantSubdomain, id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27560
27702
|
xTenantSubdomain?: string;
|
|
27561
27703
|
/**
|
|
27562
27704
|
* Gets or sets the queryable Course Id.
|
|
@@ -27602,6 +27744,10 @@ declare class PublicCoursesService {
|
|
|
27602
27744
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
27603
27745
|
*/
|
|
27604
27746
|
openActiveUpdate?: boolean;
|
|
27747
|
+
/**
|
|
27748
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
27749
|
+
*/
|
|
27750
|
+
dashboardRequest?: boolean;
|
|
27605
27751
|
/**
|
|
27606
27752
|
* Gets or sets the queryable booking status.
|
|
27607
27753
|
*/
|
|
@@ -27788,7 +27934,7 @@ declare class PublicCoursesService {
|
|
|
27788
27934
|
* @returns boolean OK
|
|
27789
27935
|
* @throws ApiError
|
|
27790
27936
|
*/
|
|
27791
|
-
exists({ xTenantSubdomain, id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27937
|
+
exists({ xTenantSubdomain, id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, featured, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27792
27938
|
/**
|
|
27793
27939
|
* The tenants subdomain.
|
|
27794
27940
|
*/
|
|
@@ -27837,6 +27983,10 @@ declare class PublicCoursesService {
|
|
|
27837
27983
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
27838
27984
|
*/
|
|
27839
27985
|
openActiveUpdate?: boolean;
|
|
27986
|
+
/**
|
|
27987
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
27988
|
+
*/
|
|
27989
|
+
dashboardRequest?: boolean;
|
|
27840
27990
|
/**
|
|
27841
27991
|
* Gets or sets the queryable booking status.
|
|
27842
27992
|
*/
|
|
@@ -28518,7 +28668,7 @@ declare class PublicGenericActivityService {
|
|
|
28518
28668
|
* @returns GenericActivityPage OK
|
|
28519
28669
|
* @throws ApiError
|
|
28520
28670
|
*/
|
|
28521
|
-
getPage({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, 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, }: {
|
|
28522
28672
|
xTenantSubdomain?: string;
|
|
28523
28673
|
/**
|
|
28524
28674
|
* Gets or sets the wildcard for use in a query search.
|
|
@@ -28556,6 +28706,10 @@ declare class PublicGenericActivityService {
|
|
|
28556
28706
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
28557
28707
|
*/
|
|
28558
28708
|
includeNextOpportunity?: boolean;
|
|
28709
|
+
/**
|
|
28710
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
28711
|
+
*/
|
|
28712
|
+
featured?: boolean;
|
|
28559
28713
|
/**
|
|
28560
28714
|
* Gets or sets SearchGeoCenter.
|
|
28561
28715
|
*/
|
|
@@ -28640,6 +28794,10 @@ declare class PublicGenericActivityService {
|
|
|
28640
28794
|
* Gets or sets AmenityId.
|
|
28641
28795
|
*/
|
|
28642
28796
|
amenity?: Array<number>;
|
|
28797
|
+
/**
|
|
28798
|
+
* Gets or sets the Programme ids.
|
|
28799
|
+
*/
|
|
28800
|
+
programmeIds?: Array<string>;
|
|
28643
28801
|
/**
|
|
28644
28802
|
* Gets or sets the page number for paged queries.
|
|
28645
28803
|
*/
|
|
@@ -28690,7 +28848,7 @@ declare class PublicGenericActivityService {
|
|
|
28690
28848
|
* @returns GenericActivityPage OK
|
|
28691
28849
|
* @throws ApiError
|
|
28692
28850
|
*/
|
|
28693
|
-
getPage1({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, 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, }: {
|
|
28694
28852
|
/**
|
|
28695
28853
|
* Gets or sets the wildcard for use in a query search.
|
|
28696
28854
|
*/
|
|
@@ -28727,6 +28885,10 @@ declare class PublicGenericActivityService {
|
|
|
28727
28885
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
28728
28886
|
*/
|
|
28729
28887
|
includeNextOpportunity?: boolean;
|
|
28888
|
+
/**
|
|
28889
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
28890
|
+
*/
|
|
28891
|
+
featured?: boolean;
|
|
28730
28892
|
/**
|
|
28731
28893
|
* Gets or sets SearchGeoCenter.
|
|
28732
28894
|
*/
|
|
@@ -28811,6 +28973,10 @@ declare class PublicGenericActivityService {
|
|
|
28811
28973
|
* Gets or sets AmenityId.
|
|
28812
28974
|
*/
|
|
28813
28975
|
amenity?: Array<number>;
|
|
28976
|
+
/**
|
|
28977
|
+
* Gets or sets the Programme ids.
|
|
28978
|
+
*/
|
|
28979
|
+
programmeIds?: Array<string>;
|
|
28814
28980
|
/**
|
|
28815
28981
|
* Gets or sets the page number for paged queries.
|
|
28816
28982
|
*/
|
|
@@ -28861,7 +29027,7 @@ declare class PublicGenericActivityService {
|
|
|
28861
29027
|
* @returns GenericActivity OK
|
|
28862
29028
|
* @throws ApiError
|
|
28863
29029
|
*/
|
|
28864
|
-
getUpcoming({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, 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, }: {
|
|
28865
29031
|
/**
|
|
28866
29032
|
* The tenants subdomain.
|
|
28867
29033
|
*/
|
|
@@ -28902,6 +29068,10 @@ declare class PublicGenericActivityService {
|
|
|
28902
29068
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
28903
29069
|
*/
|
|
28904
29070
|
includeNextOpportunity?: boolean;
|
|
29071
|
+
/**
|
|
29072
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
29073
|
+
*/
|
|
29074
|
+
featured?: boolean;
|
|
28905
29075
|
/**
|
|
28906
29076
|
* Gets or sets SearchGeoCenter.
|
|
28907
29077
|
*/
|
|
@@ -28986,6 +29156,10 @@ declare class PublicGenericActivityService {
|
|
|
28986
29156
|
* Gets or sets AmenityId.
|
|
28987
29157
|
*/
|
|
28988
29158
|
amenity?: Array<number>;
|
|
29159
|
+
/**
|
|
29160
|
+
* Gets or sets the Programme ids.
|
|
29161
|
+
*/
|
|
29162
|
+
programmeIds?: Array<string>;
|
|
28989
29163
|
/**
|
|
28990
29164
|
* Gets or sets the page number for paged queries.
|
|
28991
29165
|
*/
|
|
@@ -29059,7 +29233,7 @@ declare class PublicGenericActivityService {
|
|
|
29059
29233
|
* @returns boolean OK
|
|
29060
29234
|
* @throws ApiError
|
|
29061
29235
|
*/
|
|
29062
|
-
exists({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, 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, }: {
|
|
29063
29237
|
/**
|
|
29064
29238
|
* The tenants subdomain.
|
|
29065
29239
|
*/
|
|
@@ -29100,6 +29274,10 @@ declare class PublicGenericActivityService {
|
|
|
29100
29274
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
29101
29275
|
*/
|
|
29102
29276
|
includeNextOpportunity?: boolean;
|
|
29277
|
+
/**
|
|
29278
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
29279
|
+
*/
|
|
29280
|
+
featured?: boolean;
|
|
29103
29281
|
/**
|
|
29104
29282
|
* Gets or sets SearchGeoCenter.
|
|
29105
29283
|
*/
|
|
@@ -29184,6 +29362,10 @@ declare class PublicGenericActivityService {
|
|
|
29184
29362
|
* Gets or sets AmenityId.
|
|
29185
29363
|
*/
|
|
29186
29364
|
amenity?: Array<number>;
|
|
29365
|
+
/**
|
|
29366
|
+
* Gets or sets the Programme ids.
|
|
29367
|
+
*/
|
|
29368
|
+
programmeIds?: Array<string>;
|
|
29187
29369
|
/**
|
|
29188
29370
|
* Gets or sets the page number for paged queries.
|
|
29189
29371
|
*/
|
|
@@ -29672,7 +29854,7 @@ declare class PublicNetworksService {
|
|
|
29672
29854
|
* @returns SessionPage OK
|
|
29673
29855
|
* @throws ApiError
|
|
29674
29856
|
*/
|
|
29675
|
-
getSessions({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
29857
|
+
getSessions({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
29676
29858
|
/**
|
|
29677
29859
|
* Gets or sets the queryable session ids.
|
|
29678
29860
|
*/
|
|
@@ -29729,6 +29911,10 @@ declare class PublicNetworksService {
|
|
|
29729
29911
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
29730
29912
|
*/
|
|
29731
29913
|
openActiveUpdate?: boolean;
|
|
29914
|
+
/**
|
|
29915
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
29916
|
+
*/
|
|
29917
|
+
dashboardRequest?: boolean;
|
|
29732
29918
|
/**
|
|
29733
29919
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
29734
29920
|
*/
|
|
@@ -30162,7 +30348,7 @@ declare class PublicOrderItemsService {
|
|
|
30162
30348
|
* @returns OrderItemPage OK
|
|
30163
30349
|
* @throws ApiError
|
|
30164
30350
|
*/
|
|
30165
|
-
getPage({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
30351
|
+
getPage({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
30166
30352
|
xTenantSubdomain?: string;
|
|
30167
30353
|
/**
|
|
30168
30354
|
* Gets or sets the queryable order item ids.
|
|
@@ -30208,6 +30394,10 @@ declare class PublicOrderItemsService {
|
|
|
30208
30394
|
* Gets or sets the end user identity Id for use in a query search.
|
|
30209
30395
|
*/
|
|
30210
30396
|
endUserIdentityId?: string;
|
|
30397
|
+
/**
|
|
30398
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
30399
|
+
*/
|
|
30400
|
+
dashboardRequest?: boolean;
|
|
30211
30401
|
/**
|
|
30212
30402
|
* Gets or sets the page number for paged queries.
|
|
30213
30403
|
*/
|
|
@@ -30367,7 +30557,7 @@ declare class PublicOrderItemsService {
|
|
|
30367
30557
|
* @returns boolean OK
|
|
30368
30558
|
* @throws ApiError
|
|
30369
30559
|
*/
|
|
30370
|
-
exists({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
30560
|
+
exists({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
30371
30561
|
/**
|
|
30372
30562
|
* The tenants subdomain.
|
|
30373
30563
|
*/
|
|
@@ -30416,6 +30606,10 @@ declare class PublicOrderItemsService {
|
|
|
30416
30606
|
* Gets or sets the end user identity Id for use in a query search.
|
|
30417
30607
|
*/
|
|
30418
30608
|
endUserIdentityId?: string;
|
|
30609
|
+
/**
|
|
30610
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
30611
|
+
*/
|
|
30612
|
+
dashboardRequest?: boolean;
|
|
30419
30613
|
/**
|
|
30420
30614
|
* Gets or sets the page number for paged queries.
|
|
30421
30615
|
*/
|
|
@@ -31946,7 +32140,7 @@ declare class PublicScheduledSessionsService {
|
|
|
31946
32140
|
* @returns ScheduledSessionPage OK
|
|
31947
32141
|
* @throws ApiError
|
|
31948
32142
|
*/
|
|
31949
|
-
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, }: {
|
|
31950
32144
|
xTenantSubdomain?: string;
|
|
31951
32145
|
/**
|
|
31952
32146
|
* Gets or sets the queryable scheduled session ids.
|
|
@@ -32024,6 +32218,10 @@ declare class PublicScheduledSessionsService {
|
|
|
32024
32218
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
32025
32219
|
*/
|
|
32026
32220
|
includeVenue?: boolean;
|
|
32221
|
+
/**
|
|
32222
|
+
* Gets or sets a value indicating whether to include offer detail in the results.
|
|
32223
|
+
*/
|
|
32224
|
+
includeOffers?: boolean;
|
|
32027
32225
|
/**
|
|
32028
32226
|
* Gets or sets a value indicating whether to include order detail in the results.
|
|
32029
32227
|
*/
|
|
@@ -32162,7 +32360,7 @@ declare class PublicScheduledSessionsService {
|
|
|
32162
32360
|
* @returns boolean OK
|
|
32163
32361
|
* @throws ApiError
|
|
32164
32362
|
*/
|
|
32165
|
-
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, }: {
|
|
32166
32364
|
/**
|
|
32167
32365
|
* The tenants subdomain.
|
|
32168
32366
|
*/
|
|
@@ -32243,6 +32441,10 @@ declare class PublicScheduledSessionsService {
|
|
|
32243
32441
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
32244
32442
|
*/
|
|
32245
32443
|
includeVenue?: boolean;
|
|
32444
|
+
/**
|
|
32445
|
+
* Gets or sets a value indicating whether to include offer detail in the results.
|
|
32446
|
+
*/
|
|
32447
|
+
includeOffers?: boolean;
|
|
32246
32448
|
/**
|
|
32247
32449
|
* Gets or sets a value indicating whether to include order detail in the results.
|
|
32248
32450
|
*/
|
|
@@ -32504,7 +32706,7 @@ declare class PublicSessionsService {
|
|
|
32504
32706
|
* @returns SessionPage OK
|
|
32505
32707
|
* @throws ApiError
|
|
32506
32708
|
*/
|
|
32507
|
-
getPage({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32709
|
+
getPage({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32508
32710
|
xTenantSubdomain?: string;
|
|
32509
32711
|
/**
|
|
32510
32712
|
* Gets or sets the queryable session ids.
|
|
@@ -32562,6 +32764,10 @@ declare class PublicSessionsService {
|
|
|
32562
32764
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
32563
32765
|
*/
|
|
32564
32766
|
openActiveUpdate?: boolean;
|
|
32767
|
+
/**
|
|
32768
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
32769
|
+
*/
|
|
32770
|
+
dashboardRequest?: boolean;
|
|
32565
32771
|
/**
|
|
32566
32772
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
32567
32773
|
*/
|
|
@@ -32710,7 +32916,7 @@ declare class PublicSessionsService {
|
|
|
32710
32916
|
* @returns any OK
|
|
32711
32917
|
* @throws ApiError
|
|
32712
32918
|
*/
|
|
32713
|
-
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, }: {
|
|
32714
32920
|
/**
|
|
32715
32921
|
* The tenants subdomain.
|
|
32716
32922
|
*/
|
|
@@ -32791,6 +32997,10 @@ declare class PublicSessionsService {
|
|
|
32791
32997
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
32792
32998
|
*/
|
|
32793
32999
|
includeVenue?: boolean;
|
|
33000
|
+
/**
|
|
33001
|
+
* Gets or sets a value indicating whether to include offer detail in the results.
|
|
33002
|
+
*/
|
|
33003
|
+
includeOffers?: boolean;
|
|
32794
33004
|
/**
|
|
32795
33005
|
* Gets or sets a value indicating whether to include order detail in the results.
|
|
32796
33006
|
*/
|
|
@@ -32914,7 +33124,7 @@ declare class PublicSessionsService {
|
|
|
32914
33124
|
* @returns boolean OK
|
|
32915
33125
|
* @throws ApiError
|
|
32916
33126
|
*/
|
|
32917
|
-
exists({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
33127
|
+
exists({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32918
33128
|
/**
|
|
32919
33129
|
* The tenants subdomain.
|
|
32920
33130
|
*/
|
|
@@ -32975,6 +33185,10 @@ declare class PublicSessionsService {
|
|
|
32975
33185
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
32976
33186
|
*/
|
|
32977
33187
|
openActiveUpdate?: boolean;
|
|
33188
|
+
/**
|
|
33189
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
33190
|
+
*/
|
|
33191
|
+
dashboardRequest?: boolean;
|
|
32978
33192
|
/**
|
|
32979
33193
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
32980
33194
|
*/
|
|
@@ -35500,7 +35714,7 @@ declare class PublicVenuesService {
|
|
|
35500
35714
|
* @returns VenuePage OK
|
|
35501
35715
|
* @throws ApiError
|
|
35502
35716
|
*/
|
|
35503
|
-
getPage({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, 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, }: {
|
|
35504
35718
|
xTenantSubdomain?: string;
|
|
35505
35719
|
/**
|
|
35506
35720
|
* Gets or sets the queryable venue ids.
|
|
@@ -35574,6 +35788,14 @@ declare class PublicVenuesService {
|
|
|
35574
35788
|
* Gets or sets Distance.
|
|
35575
35789
|
*/
|
|
35576
35790
|
distance?: number;
|
|
35791
|
+
/**
|
|
35792
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
35793
|
+
*/
|
|
35794
|
+
dashboardRequest?: boolean;
|
|
35795
|
+
/**
|
|
35796
|
+
* Gets or sets the programme ids.
|
|
35797
|
+
*/
|
|
35798
|
+
programmeIds?: Array<string>;
|
|
35577
35799
|
/**
|
|
35578
35800
|
* Gets or sets the page number for paged queries.
|
|
35579
35801
|
*/
|
|
@@ -35639,7 +35861,7 @@ declare class PublicVenuesService {
|
|
|
35639
35861
|
* @returns VenuePage OK
|
|
35640
35862
|
* @throws ApiError
|
|
35641
35863
|
*/
|
|
35642
|
-
getNetworkPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, 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, }: {
|
|
35643
35865
|
/**
|
|
35644
35866
|
* Gets or sets the queryable venue ids.
|
|
35645
35867
|
*/
|
|
@@ -35712,6 +35934,14 @@ declare class PublicVenuesService {
|
|
|
35712
35934
|
* Gets or sets Distance.
|
|
35713
35935
|
*/
|
|
35714
35936
|
distance?: number;
|
|
35937
|
+
/**
|
|
35938
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
35939
|
+
*/
|
|
35940
|
+
dashboardRequest?: boolean;
|
|
35941
|
+
/**
|
|
35942
|
+
* Gets or sets the programme ids.
|
|
35943
|
+
*/
|
|
35944
|
+
programmeIds?: Array<string>;
|
|
35715
35945
|
/**
|
|
35716
35946
|
* Gets or sets the page number for paged queries.
|
|
35717
35947
|
*/
|
|
@@ -35807,7 +36037,7 @@ declare class PublicVenuesService {
|
|
|
35807
36037
|
* @returns boolean OK
|
|
35808
36038
|
* @throws ApiError
|
|
35809
36039
|
*/
|
|
35810
|
-
exists({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, 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, }: {
|
|
35811
36041
|
/**
|
|
35812
36042
|
* The tenants subdomain.
|
|
35813
36043
|
*/
|
|
@@ -35884,6 +36114,14 @@ declare class PublicVenuesService {
|
|
|
35884
36114
|
* Gets or sets Distance.
|
|
35885
36115
|
*/
|
|
35886
36116
|
distance?: number;
|
|
36117
|
+
/**
|
|
36118
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
36119
|
+
*/
|
|
36120
|
+
dashboardRequest?: boolean;
|
|
36121
|
+
/**
|
|
36122
|
+
* Gets or sets the programme ids.
|
|
36123
|
+
*/
|
|
36124
|
+
programmeIds?: Array<string>;
|
|
35887
36125
|
/**
|
|
35888
36126
|
* Gets or sets the page number for paged queries.
|
|
35889
36127
|
*/
|
|
@@ -38275,7 +38513,7 @@ declare class ScheduledSessionsService {
|
|
|
38275
38513
|
* @returns ScheduledSessionPage OK
|
|
38276
38514
|
* @throws ApiError
|
|
38277
38515
|
*/
|
|
38278
|
-
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, }: {
|
|
38279
38517
|
/**
|
|
38280
38518
|
* Gets or sets the queryable scheduled session ids.
|
|
38281
38519
|
*/
|
|
@@ -38352,6 +38590,10 @@ declare class ScheduledSessionsService {
|
|
|
38352
38590
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
38353
38591
|
*/
|
|
38354
38592
|
includeVenue?: boolean;
|
|
38593
|
+
/**
|
|
38594
|
+
* Gets or sets a value indicating whether to include offer detail in the results.
|
|
38595
|
+
*/
|
|
38596
|
+
includeOffers?: boolean;
|
|
38355
38597
|
/**
|
|
38356
38598
|
* Gets or sets a value indicating whether to include order detail in the results.
|
|
38357
38599
|
*/
|
|
@@ -38463,7 +38705,7 @@ declare class ScheduledSessionsService {
|
|
|
38463
38705
|
* @returns boolean OK
|
|
38464
38706
|
* @throws ApiError
|
|
38465
38707
|
*/
|
|
38466
|
-
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, }: {
|
|
38467
38709
|
/**
|
|
38468
38710
|
* Gets or sets the queryable scheduled session ids.
|
|
38469
38711
|
*/
|
|
@@ -38540,6 +38782,10 @@ declare class ScheduledSessionsService {
|
|
|
38540
38782
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
38541
38783
|
*/
|
|
38542
38784
|
includeVenue?: boolean;
|
|
38785
|
+
/**
|
|
38786
|
+
* Gets or sets a value indicating whether to include offer detail in the results.
|
|
38787
|
+
*/
|
|
38788
|
+
includeOffers?: boolean;
|
|
38543
38789
|
/**
|
|
38544
38790
|
* Gets or sets a value indicating whether to include order detail in the results.
|
|
38545
38791
|
*/
|
|
@@ -38618,7 +38864,7 @@ declare class ScheduledSessionsService {
|
|
|
38618
38864
|
* @returns ScheduledSession OK
|
|
38619
38865
|
* @throws ApiError
|
|
38620
38866
|
*/
|
|
38621
|
-
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, }: {
|
|
38622
38868
|
/**
|
|
38623
38869
|
* Gets or sets the queryable scheduled session ids.
|
|
38624
38870
|
*/
|
|
@@ -38695,6 +38941,10 @@ declare class ScheduledSessionsService {
|
|
|
38695
38941
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
38696
38942
|
*/
|
|
38697
38943
|
includeVenue?: boolean;
|
|
38944
|
+
/**
|
|
38945
|
+
* Gets or sets a value indicating whether to include offer detail in the results.
|
|
38946
|
+
*/
|
|
38947
|
+
includeOffers?: boolean;
|
|
38698
38948
|
/**
|
|
38699
38949
|
* Gets or sets a value indicating whether to include order detail in the results.
|
|
38700
38950
|
*/
|
|
@@ -38773,7 +39023,7 @@ declare class ScheduledSessionsService {
|
|
|
38773
39023
|
* @returns ScheduledSession OK
|
|
38774
39024
|
* @throws ApiError
|
|
38775
39025
|
*/
|
|
38776
|
-
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, }: {
|
|
38777
39027
|
/**
|
|
38778
39028
|
* Gets or sets the queryable scheduled session ids.
|
|
38779
39029
|
*/
|
|
@@ -38850,6 +39100,10 @@ declare class ScheduledSessionsService {
|
|
|
38850
39100
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
38851
39101
|
*/
|
|
38852
39102
|
includeVenue?: boolean;
|
|
39103
|
+
/**
|
|
39104
|
+
* Gets or sets a value indicating whether to include offer detail in the results.
|
|
39105
|
+
*/
|
|
39106
|
+
includeOffers?: boolean;
|
|
38853
39107
|
/**
|
|
38854
39108
|
* Gets or sets a value indicating whether to include order detail in the results.
|
|
38855
39109
|
*/
|
|
@@ -39632,13 +39886,13 @@ declare class SessionsService {
|
|
|
39632
39886
|
*/
|
|
39633
39887
|
generateId(): CancelablePromise<string>;
|
|
39634
39888
|
/**
|
|
39635
|
-
*
|
|
39889
|
+
* Assign deal to session.
|
|
39636
39890
|
* @returns Session OK
|
|
39637
39891
|
* @throws ApiError
|
|
39638
39892
|
*/
|
|
39639
39893
|
assignDeal({ sessionId, dealId, }: {
|
|
39640
39894
|
/**
|
|
39641
|
-
* The
|
|
39895
|
+
* The session Id.
|
|
39642
39896
|
*/
|
|
39643
39897
|
sessionId: string;
|
|
39644
39898
|
/**
|
|
@@ -39647,13 +39901,13 @@ declare class SessionsService {
|
|
|
39647
39901
|
dealId: string;
|
|
39648
39902
|
}): CancelablePromise<Session>;
|
|
39649
39903
|
/**
|
|
39650
|
-
*
|
|
39904
|
+
* Unassign deal from session.
|
|
39651
39905
|
* @returns Session OK
|
|
39652
39906
|
* @throws ApiError
|
|
39653
39907
|
*/
|
|
39654
39908
|
unassignDeal({ sessionId, dealId, }: {
|
|
39655
39909
|
/**
|
|
39656
|
-
* The
|
|
39910
|
+
* The session Id.
|
|
39657
39911
|
*/
|
|
39658
39912
|
sessionId: string;
|
|
39659
39913
|
/**
|
|
@@ -39661,6 +39915,28 @@ declare class SessionsService {
|
|
|
39661
39915
|
*/
|
|
39662
39916
|
dealId: string;
|
|
39663
39917
|
}): CancelablePromise<Session>;
|
|
39918
|
+
/**
|
|
39919
|
+
* Set the session as featured (displays more prominently on the storefront).
|
|
39920
|
+
* @returns Session OK
|
|
39921
|
+
* @throws ApiError
|
|
39922
|
+
*/
|
|
39923
|
+
setFeatured({ id, }: {
|
|
39924
|
+
/**
|
|
39925
|
+
* The session Id.
|
|
39926
|
+
*/
|
|
39927
|
+
id: string;
|
|
39928
|
+
}): CancelablePromise<Session>;
|
|
39929
|
+
/**
|
|
39930
|
+
* Remove the session as featured (displays as standard on the storefront).
|
|
39931
|
+
* @returns Session OK
|
|
39932
|
+
* @throws ApiError
|
|
39933
|
+
*/
|
|
39934
|
+
removeFeatured({ id, }: {
|
|
39935
|
+
/**
|
|
39936
|
+
* The session Id.
|
|
39937
|
+
*/
|
|
39938
|
+
id: string;
|
|
39939
|
+
}): CancelablePromise<Session>;
|
|
39664
39940
|
/**
|
|
39665
39941
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
39666
39942
|
* @returns Session OK
|
|
@@ -39721,7 +39997,7 @@ declare class SessionsService {
|
|
|
39721
39997
|
* @returns SessionPage OK
|
|
39722
39998
|
* @throws ApiError
|
|
39723
39999
|
*/
|
|
39724
|
-
getPage({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
40000
|
+
getPage({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39725
40001
|
/**
|
|
39726
40002
|
* Gets or sets the queryable session ids.
|
|
39727
40003
|
*/
|
|
@@ -39778,6 +40054,10 @@ declare class SessionsService {
|
|
|
39778
40054
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
39779
40055
|
*/
|
|
39780
40056
|
openActiveUpdate?: boolean;
|
|
40057
|
+
/**
|
|
40058
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
40059
|
+
*/
|
|
40060
|
+
dashboardRequest?: boolean;
|
|
39781
40061
|
/**
|
|
39782
40062
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
39783
40063
|
*/
|
|
@@ -39925,7 +40205,7 @@ declare class SessionsService {
|
|
|
39925
40205
|
* @returns boolean OK
|
|
39926
40206
|
* @throws ApiError
|
|
39927
40207
|
*/
|
|
39928
|
-
exists({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
40208
|
+
exists({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
39929
40209
|
/**
|
|
39930
40210
|
* Gets or sets the queryable session ids.
|
|
39931
40211
|
*/
|
|
@@ -39982,6 +40262,10 @@ declare class SessionsService {
|
|
|
39982
40262
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
39983
40263
|
*/
|
|
39984
40264
|
openActiveUpdate?: boolean;
|
|
40265
|
+
/**
|
|
40266
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
40267
|
+
*/
|
|
40268
|
+
dashboardRequest?: boolean;
|
|
39985
40269
|
/**
|
|
39986
40270
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
39987
40271
|
*/
|
|
@@ -40096,7 +40380,7 @@ declare class SessionsService {
|
|
|
40096
40380
|
* @returns Session OK
|
|
40097
40381
|
* @throws ApiError
|
|
40098
40382
|
*/
|
|
40099
|
-
getListWithoutReferences({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
40383
|
+
getListWithoutReferences({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
40100
40384
|
/**
|
|
40101
40385
|
* Gets or sets the queryable session ids.
|
|
40102
40386
|
*/
|
|
@@ -40153,6 +40437,10 @@ declare class SessionsService {
|
|
|
40153
40437
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
40154
40438
|
*/
|
|
40155
40439
|
openActiveUpdate?: boolean;
|
|
40440
|
+
/**
|
|
40441
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
40442
|
+
*/
|
|
40443
|
+
dashboardRequest?: boolean;
|
|
40156
40444
|
/**
|
|
40157
40445
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
40158
40446
|
*/
|
|
@@ -40267,7 +40555,7 @@ declare class SessionsService {
|
|
|
40267
40555
|
* @returns Session OK
|
|
40268
40556
|
* @throws ApiError
|
|
40269
40557
|
*/
|
|
40270
|
-
getListIdName({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
40558
|
+
getListIdName({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, featured, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, dashboardRequest, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, templateFieldPermissionsId, templateFieldPermissionsIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
40271
40559
|
/**
|
|
40272
40560
|
* Gets or sets the queryable session ids.
|
|
40273
40561
|
*/
|
|
@@ -40324,6 +40612,10 @@ declare class SessionsService {
|
|
|
40324
40612
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
40325
40613
|
*/
|
|
40326
40614
|
openActiveUpdate?: boolean;
|
|
40615
|
+
/**
|
|
40616
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
40617
|
+
*/
|
|
40618
|
+
dashboardRequest?: boolean;
|
|
40327
40619
|
/**
|
|
40328
40620
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
40329
40621
|
*/
|
|
@@ -52390,7 +52682,7 @@ declare class VenuesService {
|
|
|
52390
52682
|
* @returns VenuePage OK
|
|
52391
52683
|
* @throws ApiError
|
|
52392
52684
|
*/
|
|
52393
|
-
getPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, 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, }: {
|
|
52394
52686
|
/**
|
|
52395
52687
|
* Gets or sets the queryable venue ids.
|
|
52396
52688
|
*/
|
|
@@ -52463,6 +52755,14 @@ declare class VenuesService {
|
|
|
52463
52755
|
* Gets or sets Distance.
|
|
52464
52756
|
*/
|
|
52465
52757
|
distance?: number;
|
|
52758
|
+
/**
|
|
52759
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
52760
|
+
*/
|
|
52761
|
+
dashboardRequest?: boolean;
|
|
52762
|
+
/**
|
|
52763
|
+
* Gets or sets the programme ids.
|
|
52764
|
+
*/
|
|
52765
|
+
programmeIds?: Array<string>;
|
|
52466
52766
|
/**
|
|
52467
52767
|
* Gets or sets the page number for paged queries.
|
|
52468
52768
|
*/
|
|
@@ -52546,7 +52846,7 @@ declare class VenuesService {
|
|
|
52546
52846
|
* @returns boolean OK
|
|
52547
52847
|
* @throws ApiError
|
|
52548
52848
|
*/
|
|
52549
|
-
exists({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, 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, }: {
|
|
52550
52850
|
/**
|
|
52551
52851
|
* Gets or sets the queryable venue ids.
|
|
52552
52852
|
*/
|
|
@@ -52619,6 +52919,14 @@ declare class VenuesService {
|
|
|
52619
52919
|
* Gets or sets Distance.
|
|
52620
52920
|
*/
|
|
52621
52921
|
distance?: number;
|
|
52922
|
+
/**
|
|
52923
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
52924
|
+
*/
|
|
52925
|
+
dashboardRequest?: boolean;
|
|
52926
|
+
/**
|
|
52927
|
+
* Gets or sets the programme ids.
|
|
52928
|
+
*/
|
|
52929
|
+
programmeIds?: Array<string>;
|
|
52622
52930
|
/**
|
|
52623
52931
|
* Gets or sets the page number for paged queries.
|
|
52624
52932
|
*/
|
|
@@ -52669,7 +52977,7 @@ declare class VenuesService {
|
|
|
52669
52977
|
* @returns Venue OK
|
|
52670
52978
|
* @throws ApiError
|
|
52671
52979
|
*/
|
|
52672
|
-
getListWithoutReferences({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, 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, }: {
|
|
52673
52981
|
/**
|
|
52674
52982
|
* Gets or sets the queryable venue ids.
|
|
52675
52983
|
*/
|
|
@@ -52742,6 +53050,14 @@ declare class VenuesService {
|
|
|
52742
53050
|
* Gets or sets Distance.
|
|
52743
53051
|
*/
|
|
52744
53052
|
distance?: number;
|
|
53053
|
+
/**
|
|
53054
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
53055
|
+
*/
|
|
53056
|
+
dashboardRequest?: boolean;
|
|
53057
|
+
/**
|
|
53058
|
+
* Gets or sets the programme ids.
|
|
53059
|
+
*/
|
|
53060
|
+
programmeIds?: Array<string>;
|
|
52745
53061
|
/**
|
|
52746
53062
|
* Gets or sets the page number for paged queries.
|
|
52747
53063
|
*/
|
|
@@ -52792,7 +53108,7 @@ declare class VenuesService {
|
|
|
52792
53108
|
* @returns Venue OK
|
|
52793
53109
|
* @throws ApiError
|
|
52794
53110
|
*/
|
|
52795
|
-
getListIdName({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, 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, }: {
|
|
52796
53112
|
/**
|
|
52797
53113
|
* Gets or sets the queryable venue ids.
|
|
52798
53114
|
*/
|
|
@@ -52865,6 +53181,14 @@ declare class VenuesService {
|
|
|
52865
53181
|
* Gets or sets Distance.
|
|
52866
53182
|
*/
|
|
52867
53183
|
distance?: number;
|
|
53184
|
+
/**
|
|
53185
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
53186
|
+
*/
|
|
53187
|
+
dashboardRequest?: boolean;
|
|
53188
|
+
/**
|
|
53189
|
+
* Gets or sets the programme ids.
|
|
53190
|
+
*/
|
|
53191
|
+
programmeIds?: Array<string>;
|
|
52868
53192
|
/**
|
|
52869
53193
|
* Gets or sets the page number for paged queries.
|
|
52870
53194
|
*/
|