reach-api-sdk 1.0.192 → 1.0.193
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 +237 -41
- package/dist/reach-sdk.js +158 -4
- package/package.json +1 -1
- package/src/definition/swagger.yaml +445 -6
- package/src/models/Course.ts +4 -0
- package/src/models/GenericActivity.ts +4 -0
- package/src/models/Session.ts +4 -0
- package/src/services/CoursesService.ts +80 -2
- package/src/services/GenericActivityService.ts +30 -0
- package/src/services/OrderItemsService.ts +24 -0
- package/src/services/PublicCoursesService.ts +12 -0
- package/src/services/PublicGenericActivityService.ts +24 -0
- package/src/services/PublicNetworksService.ts +6 -0
- package/src/services/PublicOrderItemsService.ts +12 -0
- package/src/services/PublicSessionsService.ts +12 -0
- package/src/services/PublicVenuesService.ts +18 -0
- package/src/services/SessionsService.ts +82 -4
- package/src/services/VenuesService.ts +24 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -3846,6 +3846,10 @@ type Session = {
|
|
|
3846
3846
|
* Gets or sets the admin contact email.
|
|
3847
3847
|
*/
|
|
3848
3848
|
adminContactEmail?: string | null;
|
|
3849
|
+
/**
|
|
3850
|
+
* Gets or sets a valu indicating whether to send the reminder email.
|
|
3851
|
+
*/
|
|
3852
|
+
sendReminder?: boolean | null;
|
|
3849
3853
|
/**
|
|
3850
3854
|
* Gets or sets the reminder hours before start.
|
|
3851
3855
|
*/
|
|
@@ -5034,6 +5038,10 @@ type Course = {
|
|
|
5034
5038
|
* Gets or sets the admin contact email.
|
|
5035
5039
|
*/
|
|
5036
5040
|
adminContactEmail?: string | null;
|
|
5041
|
+
/**
|
|
5042
|
+
* Gets or sets a valu indicating whether to send the reminder email.
|
|
5043
|
+
*/
|
|
5044
|
+
sendReminder?: boolean | null;
|
|
5037
5045
|
/**
|
|
5038
5046
|
* Gets or sets the reminder hours before start.
|
|
5039
5047
|
*/
|
|
@@ -8028,7 +8036,7 @@ declare class CoursesService {
|
|
|
8028
8036
|
*/
|
|
8029
8037
|
batchSendPostActivityCompletionsEmails(): CancelablePromise<any>;
|
|
8030
8038
|
/**
|
|
8031
|
-
*
|
|
8039
|
+
* Assign deal to course />.
|
|
8032
8040
|
* @returns Course OK
|
|
8033
8041
|
* @throws ApiError
|
|
8034
8042
|
*/
|
|
@@ -8043,7 +8051,7 @@ declare class CoursesService {
|
|
|
8043
8051
|
dealId: string;
|
|
8044
8052
|
}): CancelablePromise<Course>;
|
|
8045
8053
|
/**
|
|
8046
|
-
*
|
|
8054
|
+
* Unassign deal from course />.
|
|
8047
8055
|
* @returns Course OK
|
|
8048
8056
|
* @throws ApiError
|
|
8049
8057
|
*/
|
|
@@ -8057,6 +8065,28 @@ declare class CoursesService {
|
|
|
8057
8065
|
*/
|
|
8058
8066
|
dealId: string;
|
|
8059
8067
|
}): CancelablePromise<Course>;
|
|
8068
|
+
/**
|
|
8069
|
+
* Set the course as featured (displays more prominently on the storefront).
|
|
8070
|
+
* @returns Course OK
|
|
8071
|
+
* @throws ApiError
|
|
8072
|
+
*/
|
|
8073
|
+
setFeatured({ id, }: {
|
|
8074
|
+
/**
|
|
8075
|
+
* The course Id.
|
|
8076
|
+
*/
|
|
8077
|
+
id: string;
|
|
8078
|
+
}): CancelablePromise<Course>;
|
|
8079
|
+
/**
|
|
8080
|
+
* Remove the course as featured (displays as standard on the storefront).
|
|
8081
|
+
* @returns Course OK
|
|
8082
|
+
* @throws ApiError
|
|
8083
|
+
*/
|
|
8084
|
+
removeFeatured({ id, }: {
|
|
8085
|
+
/**
|
|
8086
|
+
* The course Id.
|
|
8087
|
+
*/
|
|
8088
|
+
id: string;
|
|
8089
|
+
}): CancelablePromise<Course>;
|
|
8060
8090
|
/**
|
|
8061
8091
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
8062
8092
|
* @returns Course OK
|
|
@@ -8117,7 +8147,7 @@ declare class CoursesService {
|
|
|
8117
8147
|
* @returns CoursePage OK
|
|
8118
8148
|
* @throws ApiError
|
|
8119
8149
|
*/
|
|
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, }: {
|
|
8150
|
+
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
8151
|
/**
|
|
8122
8152
|
* Gets or sets the queryable Course Id.
|
|
8123
8153
|
*/
|
|
@@ -8162,6 +8192,10 @@ declare class CoursesService {
|
|
|
8162
8192
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
8163
8193
|
*/
|
|
8164
8194
|
openActiveUpdate?: boolean;
|
|
8195
|
+
/**
|
|
8196
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
8197
|
+
*/
|
|
8198
|
+
dashboardRequest?: boolean;
|
|
8165
8199
|
/**
|
|
8166
8200
|
* Gets or sets the queryable booking status.
|
|
8167
8201
|
*/
|
|
@@ -8321,7 +8355,7 @@ declare class CoursesService {
|
|
|
8321
8355
|
* @returns boolean OK
|
|
8322
8356
|
* @throws ApiError
|
|
8323
8357
|
*/
|
|
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, }: {
|
|
8358
|
+
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
8359
|
/**
|
|
8326
8360
|
* Gets or sets the queryable Course Id.
|
|
8327
8361
|
*/
|
|
@@ -8366,6 +8400,10 @@ declare class CoursesService {
|
|
|
8366
8400
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
8367
8401
|
*/
|
|
8368
8402
|
openActiveUpdate?: boolean;
|
|
8403
|
+
/**
|
|
8404
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
8405
|
+
*/
|
|
8406
|
+
dashboardRequest?: boolean;
|
|
8369
8407
|
/**
|
|
8370
8408
|
* Gets or sets the queryable booking status.
|
|
8371
8409
|
*/
|
|
@@ -8492,7 +8530,7 @@ declare class CoursesService {
|
|
|
8492
8530
|
* @returns Course OK
|
|
8493
8531
|
* @throws ApiError
|
|
8494
8532
|
*/
|
|
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, }: {
|
|
8533
|
+
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
8534
|
/**
|
|
8497
8535
|
* Gets or sets the queryable Course Id.
|
|
8498
8536
|
*/
|
|
@@ -8537,6 +8575,10 @@ declare class CoursesService {
|
|
|
8537
8575
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
8538
8576
|
*/
|
|
8539
8577
|
openActiveUpdate?: boolean;
|
|
8578
|
+
/**
|
|
8579
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
8580
|
+
*/
|
|
8581
|
+
dashboardRequest?: boolean;
|
|
8540
8582
|
/**
|
|
8541
8583
|
* Gets or sets the queryable booking status.
|
|
8542
8584
|
*/
|
|
@@ -8663,7 +8705,7 @@ declare class CoursesService {
|
|
|
8663
8705
|
* @returns Course OK
|
|
8664
8706
|
* @throws ApiError
|
|
8665
8707
|
*/
|
|
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, }: {
|
|
8708
|
+
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
8709
|
/**
|
|
8668
8710
|
* Gets or sets the queryable Course Id.
|
|
8669
8711
|
*/
|
|
@@ -8708,6 +8750,10 @@ declare class CoursesService {
|
|
|
8708
8750
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
8709
8751
|
*/
|
|
8710
8752
|
openActiveUpdate?: boolean;
|
|
8753
|
+
/**
|
|
8754
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
8755
|
+
*/
|
|
8756
|
+
dashboardRequest?: boolean;
|
|
8711
8757
|
/**
|
|
8712
8758
|
* Gets or sets the queryable booking status.
|
|
8713
8759
|
*/
|
|
@@ -14279,6 +14325,10 @@ type GenericActivity = {
|
|
|
14279
14325
|
* Gets or sets a value indicating whether there is an age restriction.
|
|
14280
14326
|
*/
|
|
14281
14327
|
noAgeRestriction?: boolean;
|
|
14328
|
+
/**
|
|
14329
|
+
* Gets or sets a value indicating whether the activity should be featured on the storefront.
|
|
14330
|
+
*/
|
|
14331
|
+
featured?: boolean;
|
|
14282
14332
|
/**
|
|
14283
14333
|
* Gets or sets the start date.
|
|
14284
14334
|
*/
|
|
@@ -14397,7 +14447,7 @@ declare class GenericActivityService {
|
|
|
14397
14447
|
* @returns GenericActivity OK
|
|
14398
14448
|
* @throws ApiError
|
|
14399
14449
|
*/
|
|
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, }: {
|
|
14450
|
+
getUpcoming({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
14401
14451
|
/**
|
|
14402
14452
|
* Gets or sets the wildcard for use in a query search.
|
|
14403
14453
|
*/
|
|
@@ -14434,6 +14484,10 @@ declare class GenericActivityService {
|
|
|
14434
14484
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
14435
14485
|
*/
|
|
14436
14486
|
includeNextOpportunity?: boolean;
|
|
14487
|
+
/**
|
|
14488
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
14489
|
+
*/
|
|
14490
|
+
featured?: boolean;
|
|
14437
14491
|
/**
|
|
14438
14492
|
* Gets or sets SearchGeoCenter.
|
|
14439
14493
|
*/
|
|
@@ -14579,7 +14633,7 @@ declare class GenericActivityService {
|
|
|
14579
14633
|
* @returns boolean OK
|
|
14580
14634
|
* @throws ApiError
|
|
14581
14635
|
*/
|
|
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, }: {
|
|
14636
|
+
exists({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
14583
14637
|
/**
|
|
14584
14638
|
* Gets or sets the wildcard for use in a query search.
|
|
14585
14639
|
*/
|
|
@@ -14616,6 +14670,10 @@ declare class GenericActivityService {
|
|
|
14616
14670
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
14617
14671
|
*/
|
|
14618
14672
|
includeNextOpportunity?: boolean;
|
|
14673
|
+
/**
|
|
14674
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
14675
|
+
*/
|
|
14676
|
+
featured?: boolean;
|
|
14619
14677
|
/**
|
|
14620
14678
|
* Gets or sets SearchGeoCenter.
|
|
14621
14679
|
*/
|
|
@@ -14750,7 +14808,7 @@ declare class GenericActivityService {
|
|
|
14750
14808
|
* @returns GenericActivityPage OK
|
|
14751
14809
|
* @throws ApiError
|
|
14752
14810
|
*/
|
|
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, }: {
|
|
14811
|
+
getPage({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
14754
14812
|
/**
|
|
14755
14813
|
* Gets or sets the wildcard for use in a query search.
|
|
14756
14814
|
*/
|
|
@@ -14787,6 +14845,10 @@ declare class GenericActivityService {
|
|
|
14787
14845
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
14788
14846
|
*/
|
|
14789
14847
|
includeNextOpportunity?: boolean;
|
|
14848
|
+
/**
|
|
14849
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
14850
|
+
*/
|
|
14851
|
+
featured?: boolean;
|
|
14790
14852
|
/**
|
|
14791
14853
|
* Gets or sets SearchGeoCenter.
|
|
14792
14854
|
*/
|
|
@@ -14921,7 +14983,7 @@ declare class GenericActivityService {
|
|
|
14921
14983
|
* @returns GenericActivity OK
|
|
14922
14984
|
* @throws ApiError
|
|
14923
14985
|
*/
|
|
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, }: {
|
|
14986
|
+
getListWithoutReferences({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
14925
14987
|
/**
|
|
14926
14988
|
* Gets or sets the wildcard for use in a query search.
|
|
14927
14989
|
*/
|
|
@@ -14958,6 +15020,10 @@ declare class GenericActivityService {
|
|
|
14958
15020
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
14959
15021
|
*/
|
|
14960
15022
|
includeNextOpportunity?: boolean;
|
|
15023
|
+
/**
|
|
15024
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
15025
|
+
*/
|
|
15026
|
+
featured?: boolean;
|
|
14961
15027
|
/**
|
|
14962
15028
|
* Gets or sets SearchGeoCenter.
|
|
14963
15029
|
*/
|
|
@@ -15092,7 +15158,7 @@ declare class GenericActivityService {
|
|
|
15092
15158
|
* @returns GenericActivity OK
|
|
15093
15159
|
* @throws ApiError
|
|
15094
15160
|
*/
|
|
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, }: {
|
|
15161
|
+
getListIdName({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
15096
15162
|
/**
|
|
15097
15163
|
* Gets or sets the wildcard for use in a query search.
|
|
15098
15164
|
*/
|
|
@@ -15129,6 +15195,10 @@ declare class GenericActivityService {
|
|
|
15129
15195
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
15130
15196
|
*/
|
|
15131
15197
|
includeNextOpportunity?: boolean;
|
|
15198
|
+
/**
|
|
15199
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
15200
|
+
*/
|
|
15201
|
+
featured?: boolean;
|
|
15132
15202
|
/**
|
|
15133
15203
|
* Gets or sets SearchGeoCenter.
|
|
15134
15204
|
*/
|
|
@@ -22082,7 +22152,7 @@ declare class OrderItemsService {
|
|
|
22082
22152
|
* @returns OrderItemPage OK
|
|
22083
22153
|
* @throws ApiError
|
|
22084
22154
|
*/
|
|
22085
|
-
getPage({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22155
|
+
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
22156
|
/**
|
|
22087
22157
|
* Gets or sets the queryable order item ids.
|
|
22088
22158
|
*/
|
|
@@ -22127,6 +22197,10 @@ declare class OrderItemsService {
|
|
|
22127
22197
|
* Gets or sets the end user identity Id for use in a query search.
|
|
22128
22198
|
*/
|
|
22129
22199
|
endUserIdentityId?: string;
|
|
22200
|
+
/**
|
|
22201
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
22202
|
+
*/
|
|
22203
|
+
dashboardRequest?: boolean;
|
|
22130
22204
|
/**
|
|
22131
22205
|
* Gets or sets the page number for paged queries.
|
|
22132
22206
|
*/
|
|
@@ -22210,7 +22284,7 @@ declare class OrderItemsService {
|
|
|
22210
22284
|
* @returns boolean OK
|
|
22211
22285
|
* @throws ApiError
|
|
22212
22286
|
*/
|
|
22213
|
-
exists({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22287
|
+
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
22288
|
/**
|
|
22215
22289
|
* Gets or sets the queryable order item ids.
|
|
22216
22290
|
*/
|
|
@@ -22255,6 +22329,10 @@ declare class OrderItemsService {
|
|
|
22255
22329
|
* Gets or sets the end user identity Id for use in a query search.
|
|
22256
22330
|
*/
|
|
22257
22331
|
endUserIdentityId?: string;
|
|
22332
|
+
/**
|
|
22333
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
22334
|
+
*/
|
|
22335
|
+
dashboardRequest?: boolean;
|
|
22258
22336
|
/**
|
|
22259
22337
|
* Gets or sets the page number for paged queries.
|
|
22260
22338
|
*/
|
|
@@ -22305,7 +22383,7 @@ declare class OrderItemsService {
|
|
|
22305
22383
|
* @returns OrderItem OK
|
|
22306
22384
|
* @throws ApiError
|
|
22307
22385
|
*/
|
|
22308
|
-
getListWithoutReferences({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22386
|
+
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
22387
|
/**
|
|
22310
22388
|
* Gets or sets the queryable order item ids.
|
|
22311
22389
|
*/
|
|
@@ -22350,6 +22428,10 @@ declare class OrderItemsService {
|
|
|
22350
22428
|
* Gets or sets the end user identity Id for use in a query search.
|
|
22351
22429
|
*/
|
|
22352
22430
|
endUserIdentityId?: string;
|
|
22431
|
+
/**
|
|
22432
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
22433
|
+
*/
|
|
22434
|
+
dashboardRequest?: boolean;
|
|
22353
22435
|
/**
|
|
22354
22436
|
* Gets or sets the page number for paged queries.
|
|
22355
22437
|
*/
|
|
@@ -22400,7 +22482,7 @@ declare class OrderItemsService {
|
|
|
22400
22482
|
* @returns OrderItem OK
|
|
22401
22483
|
* @throws ApiError
|
|
22402
22484
|
*/
|
|
22403
|
-
getListIdName({ ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, parentOrderItemId, orderByOpportunityStartdate, eventTiming, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22485
|
+
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
22486
|
/**
|
|
22405
22487
|
* Gets or sets the queryable order item ids.
|
|
22406
22488
|
*/
|
|
@@ -22445,6 +22527,10 @@ declare class OrderItemsService {
|
|
|
22445
22527
|
* Gets or sets the end user identity Id for use in a query search.
|
|
22446
22528
|
*/
|
|
22447
22529
|
endUserIdentityId?: string;
|
|
22530
|
+
/**
|
|
22531
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
22532
|
+
*/
|
|
22533
|
+
dashboardRequest?: boolean;
|
|
22448
22534
|
/**
|
|
22449
22535
|
* Gets or sets the page number for paged queries.
|
|
22450
22536
|
*/
|
|
@@ -27556,7 +27642,7 @@ declare class PublicCoursesService {
|
|
|
27556
27642
|
* @returns CoursePage OK
|
|
27557
27643
|
* @throws ApiError
|
|
27558
27644
|
*/
|
|
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, }: {
|
|
27645
|
+
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
27646
|
xTenantSubdomain?: string;
|
|
27561
27647
|
/**
|
|
27562
27648
|
* Gets or sets the queryable Course Id.
|
|
@@ -27602,6 +27688,10 @@ declare class PublicCoursesService {
|
|
|
27602
27688
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
27603
27689
|
*/
|
|
27604
27690
|
openActiveUpdate?: boolean;
|
|
27691
|
+
/**
|
|
27692
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
27693
|
+
*/
|
|
27694
|
+
dashboardRequest?: boolean;
|
|
27605
27695
|
/**
|
|
27606
27696
|
* Gets or sets the queryable booking status.
|
|
27607
27697
|
*/
|
|
@@ -27788,7 +27878,7 @@ declare class PublicCoursesService {
|
|
|
27788
27878
|
* @returns boolean OK
|
|
27789
27879
|
* @throws ApiError
|
|
27790
27880
|
*/
|
|
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, }: {
|
|
27881
|
+
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
27882
|
/**
|
|
27793
27883
|
* The tenants subdomain.
|
|
27794
27884
|
*/
|
|
@@ -27837,6 +27927,10 @@ declare class PublicCoursesService {
|
|
|
27837
27927
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
27838
27928
|
*/
|
|
27839
27929
|
openActiveUpdate?: boolean;
|
|
27930
|
+
/**
|
|
27931
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
27932
|
+
*/
|
|
27933
|
+
dashboardRequest?: boolean;
|
|
27840
27934
|
/**
|
|
27841
27935
|
* Gets or sets the queryable booking status.
|
|
27842
27936
|
*/
|
|
@@ -28518,7 +28612,7 @@ declare class PublicGenericActivityService {
|
|
|
28518
28612
|
* @returns GenericActivityPage OK
|
|
28519
28613
|
* @throws ApiError
|
|
28520
28614
|
*/
|
|
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, }: {
|
|
28615
|
+
getPage({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28522
28616
|
xTenantSubdomain?: string;
|
|
28523
28617
|
/**
|
|
28524
28618
|
* Gets or sets the wildcard for use in a query search.
|
|
@@ -28556,6 +28650,10 @@ declare class PublicGenericActivityService {
|
|
|
28556
28650
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
28557
28651
|
*/
|
|
28558
28652
|
includeNextOpportunity?: boolean;
|
|
28653
|
+
/**
|
|
28654
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
28655
|
+
*/
|
|
28656
|
+
featured?: boolean;
|
|
28559
28657
|
/**
|
|
28560
28658
|
* Gets or sets SearchGeoCenter.
|
|
28561
28659
|
*/
|
|
@@ -28690,7 +28788,7 @@ declare class PublicGenericActivityService {
|
|
|
28690
28788
|
* @returns GenericActivityPage OK
|
|
28691
28789
|
* @throws ApiError
|
|
28692
28790
|
*/
|
|
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, }: {
|
|
28791
|
+
getPage1({ wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28694
28792
|
/**
|
|
28695
28793
|
* Gets or sets the wildcard for use in a query search.
|
|
28696
28794
|
*/
|
|
@@ -28727,6 +28825,10 @@ declare class PublicGenericActivityService {
|
|
|
28727
28825
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
28728
28826
|
*/
|
|
28729
28827
|
includeNextOpportunity?: boolean;
|
|
28828
|
+
/**
|
|
28829
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
28830
|
+
*/
|
|
28831
|
+
featured?: boolean;
|
|
28730
28832
|
/**
|
|
28731
28833
|
* Gets or sets SearchGeoCenter.
|
|
28732
28834
|
*/
|
|
@@ -28861,7 +28963,7 @@ declare class PublicGenericActivityService {
|
|
|
28861
28963
|
* @returns GenericActivity OK
|
|
28862
28964
|
* @throws ApiError
|
|
28863
28965
|
*/
|
|
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, }: {
|
|
28966
|
+
getUpcoming({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28865
28967
|
/**
|
|
28866
28968
|
* The tenants subdomain.
|
|
28867
28969
|
*/
|
|
@@ -28902,6 +29004,10 @@ declare class PublicGenericActivityService {
|
|
|
28902
29004
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
28903
29005
|
*/
|
|
28904
29006
|
includeNextOpportunity?: boolean;
|
|
29007
|
+
/**
|
|
29008
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
29009
|
+
*/
|
|
29010
|
+
featured?: boolean;
|
|
28905
29011
|
/**
|
|
28906
29012
|
* Gets or sets SearchGeoCenter.
|
|
28907
29013
|
*/
|
|
@@ -29059,7 +29165,7 @@ declare class PublicGenericActivityService {
|
|
|
29059
29165
|
* @returns boolean OK
|
|
29060
29166
|
* @throws ApiError
|
|
29061
29167
|
*/
|
|
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, }: {
|
|
29168
|
+
exists({ xTenantSubdomain, wildcard, venueId, providerId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, featured, searchGeoCenter, openactiveActivityId, activityId, activityIds, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, amenity, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
29063
29169
|
/**
|
|
29064
29170
|
* The tenants subdomain.
|
|
29065
29171
|
*/
|
|
@@ -29100,6 +29206,10 @@ declare class PublicGenericActivityService {
|
|
|
29100
29206
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
29101
29207
|
*/
|
|
29102
29208
|
includeNextOpportunity?: boolean;
|
|
29209
|
+
/**
|
|
29210
|
+
* Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
29211
|
+
*/
|
|
29212
|
+
featured?: boolean;
|
|
29103
29213
|
/**
|
|
29104
29214
|
* Gets or sets SearchGeoCenter.
|
|
29105
29215
|
*/
|
|
@@ -29672,7 +29782,7 @@ declare class PublicNetworksService {
|
|
|
29672
29782
|
* @returns SessionPage OK
|
|
29673
29783
|
* @throws ApiError
|
|
29674
29784
|
*/
|
|
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, }: {
|
|
29785
|
+
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
29786
|
/**
|
|
29677
29787
|
* Gets or sets the queryable session ids.
|
|
29678
29788
|
*/
|
|
@@ -29729,6 +29839,10 @@ declare class PublicNetworksService {
|
|
|
29729
29839
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
29730
29840
|
*/
|
|
29731
29841
|
openActiveUpdate?: boolean;
|
|
29842
|
+
/**
|
|
29843
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
29844
|
+
*/
|
|
29845
|
+
dashboardRequest?: boolean;
|
|
29732
29846
|
/**
|
|
29733
29847
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
29734
29848
|
*/
|
|
@@ -30162,7 +30276,7 @@ declare class PublicOrderItemsService {
|
|
|
30162
30276
|
* @returns OrderItemPage OK
|
|
30163
30277
|
* @throws ApiError
|
|
30164
30278
|
*/
|
|
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, }: {
|
|
30279
|
+
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
30280
|
xTenantSubdomain?: string;
|
|
30167
30281
|
/**
|
|
30168
30282
|
* Gets or sets the queryable order item ids.
|
|
@@ -30208,6 +30322,10 @@ declare class PublicOrderItemsService {
|
|
|
30208
30322
|
* Gets or sets the end user identity Id for use in a query search.
|
|
30209
30323
|
*/
|
|
30210
30324
|
endUserIdentityId?: string;
|
|
30325
|
+
/**
|
|
30326
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
30327
|
+
*/
|
|
30328
|
+
dashboardRequest?: boolean;
|
|
30211
30329
|
/**
|
|
30212
30330
|
* Gets or sets the page number for paged queries.
|
|
30213
30331
|
*/
|
|
@@ -30367,7 +30485,7 @@ declare class PublicOrderItemsService {
|
|
|
30367
30485
|
* @returns boolean OK
|
|
30368
30486
|
* @throws ApiError
|
|
30369
30487
|
*/
|
|
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, }: {
|
|
30488
|
+
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
30489
|
/**
|
|
30372
30490
|
* The tenants subdomain.
|
|
30373
30491
|
*/
|
|
@@ -30416,6 +30534,10 @@ declare class PublicOrderItemsService {
|
|
|
30416
30534
|
* Gets or sets the end user identity Id for use in a query search.
|
|
30417
30535
|
*/
|
|
30418
30536
|
endUserIdentityId?: string;
|
|
30537
|
+
/**
|
|
30538
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
30539
|
+
*/
|
|
30540
|
+
dashboardRequest?: boolean;
|
|
30419
30541
|
/**
|
|
30420
30542
|
* Gets or sets the page number for paged queries.
|
|
30421
30543
|
*/
|
|
@@ -32504,7 +32626,7 @@ declare class PublicSessionsService {
|
|
|
32504
32626
|
* @returns SessionPage OK
|
|
32505
32627
|
* @throws ApiError
|
|
32506
32628
|
*/
|
|
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, }: {
|
|
32629
|
+
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
32630
|
xTenantSubdomain?: string;
|
|
32509
32631
|
/**
|
|
32510
32632
|
* Gets or sets the queryable session ids.
|
|
@@ -32562,6 +32684,10 @@ declare class PublicSessionsService {
|
|
|
32562
32684
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
32563
32685
|
*/
|
|
32564
32686
|
openActiveUpdate?: boolean;
|
|
32687
|
+
/**
|
|
32688
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
32689
|
+
*/
|
|
32690
|
+
dashboardRequest?: boolean;
|
|
32565
32691
|
/**
|
|
32566
32692
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
32567
32693
|
*/
|
|
@@ -32914,7 +33040,7 @@ declare class PublicSessionsService {
|
|
|
32914
33040
|
* @returns boolean OK
|
|
32915
33041
|
* @throws ApiError
|
|
32916
33042
|
*/
|
|
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, }: {
|
|
33043
|
+
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
33044
|
/**
|
|
32919
33045
|
* The tenants subdomain.
|
|
32920
33046
|
*/
|
|
@@ -32975,6 +33101,10 @@ declare class PublicSessionsService {
|
|
|
32975
33101
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
32976
33102
|
*/
|
|
32977
33103
|
openActiveUpdate?: boolean;
|
|
33104
|
+
/**
|
|
33105
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
33106
|
+
*/
|
|
33107
|
+
dashboardRequest?: boolean;
|
|
32978
33108
|
/**
|
|
32979
33109
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
32980
33110
|
*/
|
|
@@ -35500,7 +35630,7 @@ declare class PublicVenuesService {
|
|
|
35500
35630
|
* @returns VenuePage OK
|
|
35501
35631
|
* @throws ApiError
|
|
35502
35632
|
*/
|
|
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, }: {
|
|
35633
|
+
getPage({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
35504
35634
|
xTenantSubdomain?: string;
|
|
35505
35635
|
/**
|
|
35506
35636
|
* Gets or sets the queryable venue ids.
|
|
@@ -35574,6 +35704,10 @@ declare class PublicVenuesService {
|
|
|
35574
35704
|
* Gets or sets Distance.
|
|
35575
35705
|
*/
|
|
35576
35706
|
distance?: number;
|
|
35707
|
+
/**
|
|
35708
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
35709
|
+
*/
|
|
35710
|
+
dashboardRequest?: boolean;
|
|
35577
35711
|
/**
|
|
35578
35712
|
* Gets or sets the page number for paged queries.
|
|
35579
35713
|
*/
|
|
@@ -35639,7 +35773,7 @@ declare class PublicVenuesService {
|
|
|
35639
35773
|
* @returns VenuePage OK
|
|
35640
35774
|
* @throws ApiError
|
|
35641
35775
|
*/
|
|
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, }: {
|
|
35776
|
+
getNetworkPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
35643
35777
|
/**
|
|
35644
35778
|
* Gets or sets the queryable venue ids.
|
|
35645
35779
|
*/
|
|
@@ -35712,6 +35846,10 @@ declare class PublicVenuesService {
|
|
|
35712
35846
|
* Gets or sets Distance.
|
|
35713
35847
|
*/
|
|
35714
35848
|
distance?: number;
|
|
35849
|
+
/**
|
|
35850
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
35851
|
+
*/
|
|
35852
|
+
dashboardRequest?: boolean;
|
|
35715
35853
|
/**
|
|
35716
35854
|
* Gets or sets the page number for paged queries.
|
|
35717
35855
|
*/
|
|
@@ -35807,7 +35945,7 @@ declare class PublicVenuesService {
|
|
|
35807
35945
|
* @returns boolean OK
|
|
35808
35946
|
* @throws ApiError
|
|
35809
35947
|
*/
|
|
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, }: {
|
|
35948
|
+
exists({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
35811
35949
|
/**
|
|
35812
35950
|
* The tenants subdomain.
|
|
35813
35951
|
*/
|
|
@@ -35884,6 +36022,10 @@ declare class PublicVenuesService {
|
|
|
35884
36022
|
* Gets or sets Distance.
|
|
35885
36023
|
*/
|
|
35886
36024
|
distance?: number;
|
|
36025
|
+
/**
|
|
36026
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
36027
|
+
*/
|
|
36028
|
+
dashboardRequest?: boolean;
|
|
35887
36029
|
/**
|
|
35888
36030
|
* Gets or sets the page number for paged queries.
|
|
35889
36031
|
*/
|
|
@@ -39632,13 +39774,13 @@ declare class SessionsService {
|
|
|
39632
39774
|
*/
|
|
39633
39775
|
generateId(): CancelablePromise<string>;
|
|
39634
39776
|
/**
|
|
39635
|
-
*
|
|
39777
|
+
* Assign deal to session.
|
|
39636
39778
|
* @returns Session OK
|
|
39637
39779
|
* @throws ApiError
|
|
39638
39780
|
*/
|
|
39639
39781
|
assignDeal({ sessionId, dealId, }: {
|
|
39640
39782
|
/**
|
|
39641
|
-
* The
|
|
39783
|
+
* The session Id.
|
|
39642
39784
|
*/
|
|
39643
39785
|
sessionId: string;
|
|
39644
39786
|
/**
|
|
@@ -39647,13 +39789,13 @@ declare class SessionsService {
|
|
|
39647
39789
|
dealId: string;
|
|
39648
39790
|
}): CancelablePromise<Session>;
|
|
39649
39791
|
/**
|
|
39650
|
-
*
|
|
39792
|
+
* Unassign deal from session.
|
|
39651
39793
|
* @returns Session OK
|
|
39652
39794
|
* @throws ApiError
|
|
39653
39795
|
*/
|
|
39654
39796
|
unassignDeal({ sessionId, dealId, }: {
|
|
39655
39797
|
/**
|
|
39656
|
-
* The
|
|
39798
|
+
* The session Id.
|
|
39657
39799
|
*/
|
|
39658
39800
|
sessionId: string;
|
|
39659
39801
|
/**
|
|
@@ -39661,6 +39803,28 @@ declare class SessionsService {
|
|
|
39661
39803
|
*/
|
|
39662
39804
|
dealId: string;
|
|
39663
39805
|
}): CancelablePromise<Session>;
|
|
39806
|
+
/**
|
|
39807
|
+
* Set the session as featured (displays more prominently on the storefront).
|
|
39808
|
+
* @returns Session OK
|
|
39809
|
+
* @throws ApiError
|
|
39810
|
+
*/
|
|
39811
|
+
setFeatured({ id, }: {
|
|
39812
|
+
/**
|
|
39813
|
+
* The session Id.
|
|
39814
|
+
*/
|
|
39815
|
+
id: string;
|
|
39816
|
+
}): CancelablePromise<Session>;
|
|
39817
|
+
/**
|
|
39818
|
+
* Remove the session as featured (displays as standard on the storefront).
|
|
39819
|
+
* @returns Session OK
|
|
39820
|
+
* @throws ApiError
|
|
39821
|
+
*/
|
|
39822
|
+
removeFeatured({ id, }: {
|
|
39823
|
+
/**
|
|
39824
|
+
* The session Id.
|
|
39825
|
+
*/
|
|
39826
|
+
id: string;
|
|
39827
|
+
}): CancelablePromise<Session>;
|
|
39664
39828
|
/**
|
|
39665
39829
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
39666
39830
|
* @returns Session OK
|
|
@@ -39721,7 +39885,7 @@ declare class SessionsService {
|
|
|
39721
39885
|
* @returns SessionPage OK
|
|
39722
39886
|
* @throws ApiError
|
|
39723
39887
|
*/
|
|
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, }: {
|
|
39888
|
+
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
39889
|
/**
|
|
39726
39890
|
* Gets or sets the queryable session ids.
|
|
39727
39891
|
*/
|
|
@@ -39778,6 +39942,10 @@ declare class SessionsService {
|
|
|
39778
39942
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
39779
39943
|
*/
|
|
39780
39944
|
openActiveUpdate?: boolean;
|
|
39945
|
+
/**
|
|
39946
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
39947
|
+
*/
|
|
39948
|
+
dashboardRequest?: boolean;
|
|
39781
39949
|
/**
|
|
39782
39950
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
39783
39951
|
*/
|
|
@@ -39925,7 +40093,7 @@ declare class SessionsService {
|
|
|
39925
40093
|
* @returns boolean OK
|
|
39926
40094
|
* @throws ApiError
|
|
39927
40095
|
*/
|
|
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, }: {
|
|
40096
|
+
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
40097
|
/**
|
|
39930
40098
|
* Gets or sets the queryable session ids.
|
|
39931
40099
|
*/
|
|
@@ -39982,6 +40150,10 @@ declare class SessionsService {
|
|
|
39982
40150
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
39983
40151
|
*/
|
|
39984
40152
|
openActiveUpdate?: boolean;
|
|
40153
|
+
/**
|
|
40154
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
40155
|
+
*/
|
|
40156
|
+
dashboardRequest?: boolean;
|
|
39985
40157
|
/**
|
|
39986
40158
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
39987
40159
|
*/
|
|
@@ -40096,7 +40268,7 @@ declare class SessionsService {
|
|
|
40096
40268
|
* @returns Session OK
|
|
40097
40269
|
* @throws ApiError
|
|
40098
40270
|
*/
|
|
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, }: {
|
|
40271
|
+
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
40272
|
/**
|
|
40101
40273
|
* Gets or sets the queryable session ids.
|
|
40102
40274
|
*/
|
|
@@ -40153,6 +40325,10 @@ declare class SessionsService {
|
|
|
40153
40325
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
40154
40326
|
*/
|
|
40155
40327
|
openActiveUpdate?: boolean;
|
|
40328
|
+
/**
|
|
40329
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
40330
|
+
*/
|
|
40331
|
+
dashboardRequest?: boolean;
|
|
40156
40332
|
/**
|
|
40157
40333
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
40158
40334
|
*/
|
|
@@ -40267,7 +40443,7 @@ declare class SessionsService {
|
|
|
40267
40443
|
* @returns Session OK
|
|
40268
40444
|
* @throws ApiError
|
|
40269
40445
|
*/
|
|
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, }: {
|
|
40446
|
+
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
40447
|
/**
|
|
40272
40448
|
* Gets or sets the queryable session ids.
|
|
40273
40449
|
*/
|
|
@@ -40324,6 +40500,10 @@ declare class SessionsService {
|
|
|
40324
40500
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
40325
40501
|
*/
|
|
40326
40502
|
openActiveUpdate?: boolean;
|
|
40503
|
+
/**
|
|
40504
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
40505
|
+
*/
|
|
40506
|
+
dashboardRequest?: boolean;
|
|
40327
40507
|
/**
|
|
40328
40508
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
40329
40509
|
*/
|
|
@@ -52390,7 +52570,7 @@ declare class VenuesService {
|
|
|
52390
52570
|
* @returns VenuePage OK
|
|
52391
52571
|
* @throws ApiError
|
|
52392
52572
|
*/
|
|
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, }: {
|
|
52573
|
+
getPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
52394
52574
|
/**
|
|
52395
52575
|
* Gets or sets the queryable venue ids.
|
|
52396
52576
|
*/
|
|
@@ -52463,6 +52643,10 @@ declare class VenuesService {
|
|
|
52463
52643
|
* Gets or sets Distance.
|
|
52464
52644
|
*/
|
|
52465
52645
|
distance?: number;
|
|
52646
|
+
/**
|
|
52647
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
52648
|
+
*/
|
|
52649
|
+
dashboardRequest?: boolean;
|
|
52466
52650
|
/**
|
|
52467
52651
|
* Gets or sets the page number for paged queries.
|
|
52468
52652
|
*/
|
|
@@ -52546,7 +52730,7 @@ declare class VenuesService {
|
|
|
52546
52730
|
* @returns boolean OK
|
|
52547
52731
|
* @throws ApiError
|
|
52548
52732
|
*/
|
|
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, }: {
|
|
52733
|
+
exists({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
52550
52734
|
/**
|
|
52551
52735
|
* Gets or sets the queryable venue ids.
|
|
52552
52736
|
*/
|
|
@@ -52619,6 +52803,10 @@ declare class VenuesService {
|
|
|
52619
52803
|
* Gets or sets Distance.
|
|
52620
52804
|
*/
|
|
52621
52805
|
distance?: number;
|
|
52806
|
+
/**
|
|
52807
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
52808
|
+
*/
|
|
52809
|
+
dashboardRequest?: boolean;
|
|
52622
52810
|
/**
|
|
52623
52811
|
* Gets or sets the page number for paged queries.
|
|
52624
52812
|
*/
|
|
@@ -52669,7 +52857,7 @@ declare class VenuesService {
|
|
|
52669
52857
|
* @returns Venue OK
|
|
52670
52858
|
* @throws ApiError
|
|
52671
52859
|
*/
|
|
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, }: {
|
|
52860
|
+
getListWithoutReferences({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
52673
52861
|
/**
|
|
52674
52862
|
* Gets or sets the queryable venue ids.
|
|
52675
52863
|
*/
|
|
@@ -52742,6 +52930,10 @@ declare class VenuesService {
|
|
|
52742
52930
|
* Gets or sets Distance.
|
|
52743
52931
|
*/
|
|
52744
52932
|
distance?: number;
|
|
52933
|
+
/**
|
|
52934
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
52935
|
+
*/
|
|
52936
|
+
dashboardRequest?: boolean;
|
|
52745
52937
|
/**
|
|
52746
52938
|
* Gets or sets the page number for paged queries.
|
|
52747
52939
|
*/
|
|
@@ -52792,7 +52984,7 @@ declare class VenuesService {
|
|
|
52792
52984
|
* @returns Venue OK
|
|
52793
52985
|
* @throws ApiError
|
|
52794
52986
|
*/
|
|
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, }: {
|
|
52987
|
+
getListIdName({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, archived, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
52796
52988
|
/**
|
|
52797
52989
|
* Gets or sets the queryable venue ids.
|
|
52798
52990
|
*/
|
|
@@ -52865,6 +53057,10 @@ declare class VenuesService {
|
|
|
52865
53057
|
* Gets or sets Distance.
|
|
52866
53058
|
*/
|
|
52867
53059
|
distance?: number;
|
|
53060
|
+
/**
|
|
53061
|
+
* Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
53062
|
+
*/
|
|
53063
|
+
dashboardRequest?: boolean;
|
|
52868
53064
|
/**
|
|
52869
53065
|
* Gets or sets the page number for paged queries.
|
|
52870
53066
|
*/
|