reach-api-sdk 1.0.135 → 1.0.137
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 +1000 -395
- package/dist/reach-sdk.js +1102 -436
- package/package.json +1 -1
- package/src/apiClient.ts +6 -0
- package/src/definition/swagger.yaml +2697 -788
- package/src/index.ts +2 -0
- package/src/models/Activity.ts +4 -0
- package/src/models/OrderItemStatus.ts +1 -0
- package/src/models/TenantPatch.ts +4 -0
- package/src/models/Venue.ts +1 -1
- package/src/services/ActivityService.ts +6 -0
- package/src/services/CoursesService.ts +48 -0
- package/src/services/GenericActivityService.ts +2 -2
- package/src/services/OrderItemsService.ts +41 -0
- package/src/services/PublicCoursesService.ts +24 -0
- package/src/services/PublicGenericActivityService.ts +91 -102
- package/src/services/PublicNetworksService.ts +0 -18
- package/src/services/PublicOpportunityRegisterService.ts +574 -0
- package/src/services/PublicOrderItemsService.ts +538 -0
- package/src/services/PublicOrdersService.ts +6 -6
- package/src/services/PublicSessionsService.ts +42 -36
- package/src/services/PublicVenuesService.ts +3 -3
- package/src/services/SessionsService.ts +34 -72
- package/src/services/VenuesService.ts +4 -4
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -109,6 +109,10 @@ type Activity = {
|
|
|
109
109
|
* Gets or sets a value indicating whether the activity can be assigned to a course.
|
|
110
110
|
*/
|
|
111
111
|
course?: boolean | null;
|
|
112
|
+
/**
|
|
113
|
+
* Gets or sets a value indicating whether the activity is hidden.
|
|
114
|
+
*/
|
|
115
|
+
hidden?: boolean | null;
|
|
112
116
|
/**
|
|
113
117
|
* Gets or sets the activities Icon url.
|
|
114
118
|
*/
|
|
@@ -146,7 +150,11 @@ declare class ActivityService {
|
|
|
146
150
|
* @returns Activity Success
|
|
147
151
|
* @throws ApiError
|
|
148
152
|
*/
|
|
149
|
-
getList({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
153
|
+
getList({ includeHidden, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
154
|
+
/**
|
|
155
|
+
* Gets or sets the queryable hidden state, if true all activities are returned, if false only non hidden activities are returned.
|
|
156
|
+
*/
|
|
157
|
+
includeHidden?: boolean;
|
|
150
158
|
/**
|
|
151
159
|
* Gets or sets the page number for paged queries.
|
|
152
160
|
*/
|
|
@@ -3997,7 +4005,7 @@ type Venue = {
|
|
|
3997
4005
|
*/
|
|
3998
4006
|
readonly activityTypesAvailable?: Array<Activity> | null;
|
|
3999
4007
|
/**
|
|
4000
|
-
* Gets a
|
|
4008
|
+
* Gets a formatted label representation for the activity types available at the venue.
|
|
4001
4009
|
*/
|
|
4002
4010
|
readonly activityTypesAvailableFormatted?: string | null;
|
|
4003
4011
|
/**
|
|
@@ -4939,7 +4947,8 @@ declare enum OrderItemStatus {
|
|
|
4939
4947
|
BOOKED = "Booked",
|
|
4940
4948
|
ATTENDED = "Attended",
|
|
4941
4949
|
OPPORTUNITY_IS_FULL = "OpportunityIsFull",
|
|
4942
|
-
OPPORTUNITY_IS_FULL_DUE_TO_LEASE = "OpportunityIsFullDueToLease"
|
|
4950
|
+
OPPORTUNITY_IS_FULL_DUE_TO_LEASE = "OpportunityIsFullDueToLease",
|
|
4951
|
+
RESCHEDULED = "Rescheduled"
|
|
4943
4952
|
}
|
|
4944
4953
|
|
|
4945
4954
|
/**
|
|
@@ -7503,7 +7512,7 @@ declare class CoursesService {
|
|
|
7503
7512
|
* @returns CoursePage Success
|
|
7504
7513
|
* @throws ApiError
|
|
7505
7514
|
*/
|
|
7506
|
-
getPage({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
7515
|
+
getPage({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
7507
7516
|
/**
|
|
7508
7517
|
* Gets or sets the queryable Course Id.
|
|
7509
7518
|
*/
|
|
@@ -7600,6 +7609,14 @@ declare class CoursesService {
|
|
|
7600
7609
|
* Gets or sets a value indicating whether the course post completion email has been sent.
|
|
7601
7610
|
*/
|
|
7602
7611
|
postCompletionEmailSent?: boolean;
|
|
7612
|
+
/**
|
|
7613
|
+
* Gets or sets SearchGeoCenter.
|
|
7614
|
+
*/
|
|
7615
|
+
searchGeoCenter?: string;
|
|
7616
|
+
/**
|
|
7617
|
+
* Gets or sets Distance.
|
|
7618
|
+
*/
|
|
7619
|
+
distance?: number;
|
|
7603
7620
|
/**
|
|
7604
7621
|
* Gets or sets the page number for paged queries.
|
|
7605
7622
|
*/
|
|
@@ -7683,7 +7700,7 @@ declare class CoursesService {
|
|
|
7683
7700
|
* @returns boolean Success
|
|
7684
7701
|
* @throws ApiError
|
|
7685
7702
|
*/
|
|
7686
|
-
exists({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
7703
|
+
exists({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
7687
7704
|
/**
|
|
7688
7705
|
* Gets or sets the queryable Course Id.
|
|
7689
7706
|
*/
|
|
@@ -7780,6 +7797,14 @@ declare class CoursesService {
|
|
|
7780
7797
|
* Gets or sets a value indicating whether the course post completion email has been sent.
|
|
7781
7798
|
*/
|
|
7782
7799
|
postCompletionEmailSent?: boolean;
|
|
7800
|
+
/**
|
|
7801
|
+
* Gets or sets SearchGeoCenter.
|
|
7802
|
+
*/
|
|
7803
|
+
searchGeoCenter?: string;
|
|
7804
|
+
/**
|
|
7805
|
+
* Gets or sets Distance.
|
|
7806
|
+
*/
|
|
7807
|
+
distance?: number;
|
|
7783
7808
|
/**
|
|
7784
7809
|
* Gets or sets the page number for paged queries.
|
|
7785
7810
|
*/
|
|
@@ -7830,7 +7855,7 @@ declare class CoursesService {
|
|
|
7830
7855
|
* @returns Course Success
|
|
7831
7856
|
* @throws ApiError
|
|
7832
7857
|
*/
|
|
7833
|
-
getListWithoutReferences({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
7858
|
+
getListWithoutReferences({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
7834
7859
|
/**
|
|
7835
7860
|
* Gets or sets the queryable Course Id.
|
|
7836
7861
|
*/
|
|
@@ -7927,6 +7952,14 @@ declare class CoursesService {
|
|
|
7927
7952
|
* Gets or sets a value indicating whether the course post completion email has been sent.
|
|
7928
7953
|
*/
|
|
7929
7954
|
postCompletionEmailSent?: boolean;
|
|
7955
|
+
/**
|
|
7956
|
+
* Gets or sets SearchGeoCenter.
|
|
7957
|
+
*/
|
|
7958
|
+
searchGeoCenter?: string;
|
|
7959
|
+
/**
|
|
7960
|
+
* Gets or sets Distance.
|
|
7961
|
+
*/
|
|
7962
|
+
distance?: number;
|
|
7930
7963
|
/**
|
|
7931
7964
|
* Gets or sets the page number for paged queries.
|
|
7932
7965
|
*/
|
|
@@ -7977,7 +8010,7 @@ declare class CoursesService {
|
|
|
7977
8010
|
* @returns Course Success
|
|
7978
8011
|
* @throws ApiError
|
|
7979
8012
|
*/
|
|
7980
|
-
getListIdName({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8013
|
+
getListIdName({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
7981
8014
|
/**
|
|
7982
8015
|
* Gets or sets the queryable Course Id.
|
|
7983
8016
|
*/
|
|
@@ -8074,6 +8107,14 @@ declare class CoursesService {
|
|
|
8074
8107
|
* Gets or sets a value indicating whether the course post completion email has been sent.
|
|
8075
8108
|
*/
|
|
8076
8109
|
postCompletionEmailSent?: boolean;
|
|
8110
|
+
/**
|
|
8111
|
+
* Gets or sets SearchGeoCenter.
|
|
8112
|
+
*/
|
|
8113
|
+
searchGeoCenter?: string;
|
|
8114
|
+
/**
|
|
8115
|
+
* Gets or sets Distance.
|
|
8116
|
+
*/
|
|
8117
|
+
distance?: number;
|
|
8077
8118
|
/**
|
|
8078
8119
|
* Gets or sets the page number for paged queries.
|
|
8079
8120
|
*/
|
|
@@ -12920,7 +12961,7 @@ declare class GenericActivityService {
|
|
|
12920
12961
|
}): CancelablePromise<GenericActivity>;
|
|
12921
12962
|
/**
|
|
12922
12963
|
* Retrieves a list of upcoming activities.
|
|
12923
|
-
* @returns
|
|
12964
|
+
* @returns GenericActivity Success
|
|
12924
12965
|
* @throws ApiError
|
|
12925
12966
|
*/
|
|
12926
12967
|
getUpcoming({ wildcard, venueId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
@@ -13076,7 +13117,7 @@ declare class GenericActivityService {
|
|
|
13076
13117
|
* Gets or sets the sort order direction.
|
|
13077
13118
|
*/
|
|
13078
13119
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
13079
|
-
}): CancelablePromise<
|
|
13120
|
+
}): CancelablePromise<Array<GenericActivity>>;
|
|
13080
13121
|
/**
|
|
13081
13122
|
* Gets the resource by its Id.
|
|
13082
13123
|
* @returns GenericActivity Success
|
|
@@ -19745,6 +19786,25 @@ type OrderItemPost = {
|
|
|
19745
19786
|
declare class OrderItemsService {
|
|
19746
19787
|
readonly httpRequest: BaseHttpRequest;
|
|
19747
19788
|
constructor(httpRequest: BaseHttpRequest);
|
|
19789
|
+
/**
|
|
19790
|
+
* Reschedules the order item to another scheduled session.
|
|
19791
|
+
* @returns OrderItem Success
|
|
19792
|
+
* @throws ApiError
|
|
19793
|
+
*/
|
|
19794
|
+
reschedule({ orderItemId, scheduledSessionId, xTenantSubdomain, }: {
|
|
19795
|
+
/**
|
|
19796
|
+
* The current register the attendee is assigned to.
|
|
19797
|
+
*/
|
|
19798
|
+
orderItemId: string;
|
|
19799
|
+
/**
|
|
19800
|
+
* The scheduled session the attendee needs to be moved to.
|
|
19801
|
+
*/
|
|
19802
|
+
scheduledSessionId: string;
|
|
19803
|
+
/**
|
|
19804
|
+
* The tenants subdomain.
|
|
19805
|
+
*/
|
|
19806
|
+
xTenantSubdomain?: string;
|
|
19807
|
+
}): CancelablePromise<OrderItem>;
|
|
19748
19808
|
/**
|
|
19749
19809
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
19750
19810
|
* @returns OrderItem Success
|
|
@@ -23157,7 +23217,7 @@ declare class PublicCoursesService {
|
|
|
23157
23217
|
* @returns CoursePage Success
|
|
23158
23218
|
* @throws ApiError
|
|
23159
23219
|
*/
|
|
23160
|
-
getPage({ xTenantSubdomain, id, ids, venueId, programmeId, surveyId, cancellationPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
23220
|
+
getPage({ xTenantSubdomain, id, ids, venueId, programmeId, surveyId, cancellationPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
23161
23221
|
xTenantSubdomain?: string;
|
|
23162
23222
|
/**
|
|
23163
23223
|
* Gets or sets the queryable Course Id.
|
|
@@ -23255,6 +23315,14 @@ declare class PublicCoursesService {
|
|
|
23255
23315
|
* Gets or sets a value indicating whether the course post completion email has been sent.
|
|
23256
23316
|
*/
|
|
23257
23317
|
postCompletionEmailSent?: boolean;
|
|
23318
|
+
/**
|
|
23319
|
+
* Gets or sets SearchGeoCenter.
|
|
23320
|
+
*/
|
|
23321
|
+
searchGeoCenter?: string;
|
|
23322
|
+
/**
|
|
23323
|
+
* Gets or sets Distance.
|
|
23324
|
+
*/
|
|
23325
|
+
distance?: number;
|
|
23258
23326
|
/**
|
|
23259
23327
|
* Gets or sets the page number for paged queries.
|
|
23260
23328
|
*/
|
|
@@ -23365,7 +23433,7 @@ declare class PublicCoursesService {
|
|
|
23365
23433
|
* @returns boolean Success
|
|
23366
23434
|
* @throws ApiError
|
|
23367
23435
|
*/
|
|
23368
|
-
exists({ xTenantSubdomain, id, ids, venueId, programmeId, surveyId, cancellationPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
23436
|
+
exists({ xTenantSubdomain, id, ids, venueId, programmeId, surveyId, cancellationPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
23369
23437
|
/**
|
|
23370
23438
|
* The tenants subdomain.
|
|
23371
23439
|
*/
|
|
@@ -23466,6 +23534,14 @@ declare class PublicCoursesService {
|
|
|
23466
23534
|
* Gets or sets a value indicating whether the course post completion email has been sent.
|
|
23467
23535
|
*/
|
|
23468
23536
|
postCompletionEmailSent?: boolean;
|
|
23537
|
+
/**
|
|
23538
|
+
* Gets or sets SearchGeoCenter.
|
|
23539
|
+
*/
|
|
23540
|
+
searchGeoCenter?: string;
|
|
23541
|
+
/**
|
|
23542
|
+
* Gets or sets Distance.
|
|
23543
|
+
*/
|
|
23544
|
+
distance?: number;
|
|
23469
23545
|
/**
|
|
23470
23546
|
* Gets or sets the page number for paged queries.
|
|
23471
23547
|
*/
|
|
@@ -24028,12 +24104,179 @@ declare class PublicFilestackWebhookService {
|
|
|
24028
24104
|
declare class PublicGenericActivityService {
|
|
24029
24105
|
readonly httpRequest: BaseHttpRequest;
|
|
24030
24106
|
constructor(httpRequest: BaseHttpRequest);
|
|
24107
|
+
/**
|
|
24108
|
+
* @returns GenericActivity Success
|
|
24109
|
+
* @throws ApiError
|
|
24110
|
+
*/
|
|
24111
|
+
getObject({ id, xTenantSubdomain, }: {
|
|
24112
|
+
id: string;
|
|
24113
|
+
xTenantSubdomain?: string;
|
|
24114
|
+
}): CancelablePromise<GenericActivity>;
|
|
24115
|
+
/**
|
|
24116
|
+
* @returns GenericActivityPage Success
|
|
24117
|
+
* @throws ApiError
|
|
24118
|
+
*/
|
|
24119
|
+
getPage({ xTenantSubdomain, wildcard, venueId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
24120
|
+
xTenantSubdomain?: string;
|
|
24121
|
+
/**
|
|
24122
|
+
* Gets or sets the wildcard for use in a query search.
|
|
24123
|
+
*/
|
|
24124
|
+
wildcard?: string;
|
|
24125
|
+
/**
|
|
24126
|
+
* Gets or sets the queryable Venue Id.
|
|
24127
|
+
*/
|
|
24128
|
+
venueId?: string;
|
|
24129
|
+
/**
|
|
24130
|
+
* Gets or sets the queryable Programme Id.
|
|
24131
|
+
*/
|
|
24132
|
+
programmeId?: string;
|
|
24133
|
+
/**
|
|
24134
|
+
* Gets or sets a value indicating whether return online activities.
|
|
24135
|
+
*/
|
|
24136
|
+
online?: boolean;
|
|
24137
|
+
/**
|
|
24138
|
+
* Gets or sets a value indicating whether to include archived activities.
|
|
24139
|
+
*/
|
|
24140
|
+
archived?: boolean;
|
|
24141
|
+
/**
|
|
24142
|
+
* Gets or sets a value indicating whether to include deleted activities.
|
|
24143
|
+
*/
|
|
24144
|
+
deleted?: boolean;
|
|
24145
|
+
/**
|
|
24146
|
+
* Gets or sets the activity type.
|
|
24147
|
+
*/
|
|
24148
|
+
activityType?: ActivityType;
|
|
24149
|
+
/**
|
|
24150
|
+
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
24151
|
+
*/
|
|
24152
|
+
includeNextOpportunity?: boolean;
|
|
24153
|
+
/**
|
|
24154
|
+
* Gets or sets SearchGeoCenter.
|
|
24155
|
+
*/
|
|
24156
|
+
searchGeoCenter?: string;
|
|
24157
|
+
/**
|
|
24158
|
+
* Gets or sets OpenactiveActivityId.
|
|
24159
|
+
*/
|
|
24160
|
+
openactiveActivityId?: string;
|
|
24161
|
+
/**
|
|
24162
|
+
* Gets or sets Activity id.
|
|
24163
|
+
*/
|
|
24164
|
+
activityId?: number;
|
|
24165
|
+
/**
|
|
24166
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
24167
|
+
*/
|
|
24168
|
+
networkId?: string;
|
|
24169
|
+
/**
|
|
24170
|
+
* Gets or sets Lat.
|
|
24171
|
+
*/
|
|
24172
|
+
lat?: number;
|
|
24173
|
+
/**
|
|
24174
|
+
* Gets or sets Lng.
|
|
24175
|
+
*/
|
|
24176
|
+
lng?: number;
|
|
24177
|
+
/**
|
|
24178
|
+
* Gets or sets Distance.
|
|
24179
|
+
*/
|
|
24180
|
+
distance?: number;
|
|
24181
|
+
/**
|
|
24182
|
+
* Gets or sets MinAgeLTE.
|
|
24183
|
+
*/
|
|
24184
|
+
minAgeLte?: number;
|
|
24185
|
+
/**
|
|
24186
|
+
* Gets or sets MinAgeGTE.
|
|
24187
|
+
*/
|
|
24188
|
+
minAgeGte?: number;
|
|
24189
|
+
/**
|
|
24190
|
+
* Gets or sets MaxAgeLTE.
|
|
24191
|
+
*/
|
|
24192
|
+
maxAgeLte?: number;
|
|
24193
|
+
/**
|
|
24194
|
+
* Gets or sets MaxAgeGTE.
|
|
24195
|
+
*/
|
|
24196
|
+
maxAgeGte?: number;
|
|
24197
|
+
/**
|
|
24198
|
+
* Gets or sets PriceTotalGTE.
|
|
24199
|
+
*/
|
|
24200
|
+
priceTotalGte?: number;
|
|
24201
|
+
/**
|
|
24202
|
+
* Gets or sets PriceTotalLTE.
|
|
24203
|
+
*/
|
|
24204
|
+
priceTotalLte?: number;
|
|
24205
|
+
/**
|
|
24206
|
+
* Gets or sets TimeOfDay.
|
|
24207
|
+
*/
|
|
24208
|
+
timeOfDay?: string;
|
|
24209
|
+
/**
|
|
24210
|
+
* Gets or sets DateFrom.
|
|
24211
|
+
*/
|
|
24212
|
+
dateFrom?: string;
|
|
24213
|
+
/**
|
|
24214
|
+
* Gets or sets DateTo.
|
|
24215
|
+
*/
|
|
24216
|
+
dateTo?: string;
|
|
24217
|
+
/**
|
|
24218
|
+
* Gets or sets Gender.
|
|
24219
|
+
*/
|
|
24220
|
+
gender?: Gender;
|
|
24221
|
+
/**
|
|
24222
|
+
* Gets or sets PeriodsOfWeek.
|
|
24223
|
+
*/
|
|
24224
|
+
periodsOfWeek?: PeriodsOfWeek;
|
|
24225
|
+
/**
|
|
24226
|
+
* Gets or sets AdditionalSupport.
|
|
24227
|
+
*/
|
|
24228
|
+
additionalSupport?: Array<string>;
|
|
24229
|
+
/**
|
|
24230
|
+
* Gets or sets the page number for paged queries.
|
|
24231
|
+
*/
|
|
24232
|
+
pageNumber?: number;
|
|
24233
|
+
/**
|
|
24234
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
24235
|
+
*/
|
|
24236
|
+
take?: number;
|
|
24237
|
+
/**
|
|
24238
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
24239
|
+
*/
|
|
24240
|
+
skip?: number;
|
|
24241
|
+
/**
|
|
24242
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
24243
|
+
*/
|
|
24244
|
+
limitListRequests?: boolean;
|
|
24245
|
+
/**
|
|
24246
|
+
* Gets or sets the Tenant Id.
|
|
24247
|
+
*/
|
|
24248
|
+
tenantId?: string;
|
|
24249
|
+
/**
|
|
24250
|
+
* Gets or sets the Modifed By Id.
|
|
24251
|
+
*/
|
|
24252
|
+
modifiedById?: string;
|
|
24253
|
+
/**
|
|
24254
|
+
* Gets or sets the Modifed By Ids.
|
|
24255
|
+
*/
|
|
24256
|
+
modifiedByIds?: Array<string>;
|
|
24257
|
+
/**
|
|
24258
|
+
* Gets or sets the Date Created greater than equal to.
|
|
24259
|
+
*/
|
|
24260
|
+
dateCreatedGte?: string;
|
|
24261
|
+
/**
|
|
24262
|
+
* Gets or sets the Date Created less than equal to.
|
|
24263
|
+
*/
|
|
24264
|
+
dateCreatedLte?: string;
|
|
24265
|
+
/**
|
|
24266
|
+
* Gets or sets the queryable only is live status.
|
|
24267
|
+
*/
|
|
24268
|
+
isLive?: boolean;
|
|
24269
|
+
/**
|
|
24270
|
+
* Gets or sets the sort order direction.
|
|
24271
|
+
*/
|
|
24272
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
24273
|
+
}): CancelablePromise<GenericActivityPage>;
|
|
24031
24274
|
/**
|
|
24032
24275
|
* Get activities for a network.
|
|
24033
24276
|
* @returns GenericActivityPage Success
|
|
24034
24277
|
* @throws ApiError
|
|
24035
24278
|
*/
|
|
24036
|
-
|
|
24279
|
+
getPage1({ wildcard, venueId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
24037
24280
|
/**
|
|
24038
24281
|
* Gets or sets the wildcard for use in a query search.
|
|
24039
24282
|
*/
|
|
@@ -24189,7 +24432,7 @@ declare class PublicGenericActivityService {
|
|
|
24189
24432
|
}): CancelablePromise<GenericActivityPage>;
|
|
24190
24433
|
/**
|
|
24191
24434
|
* Retrieves a list of upcoming activities.
|
|
24192
|
-
* @returns
|
|
24435
|
+
* @returns GenericActivity Success
|
|
24193
24436
|
* @throws ApiError
|
|
24194
24437
|
*/
|
|
24195
24438
|
getUpcoming({ xTenantSubdomain, wildcard, venueId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, activityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, additionalSupport, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
@@ -24349,7 +24592,7 @@ declare class PublicGenericActivityService {
|
|
|
24349
24592
|
* Gets or sets the sort order direction.
|
|
24350
24593
|
*/
|
|
24351
24594
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
24352
|
-
}): CancelablePromise<
|
|
24595
|
+
}): CancelablePromise<Array<GenericActivity>>;
|
|
24353
24596
|
/**
|
|
24354
24597
|
* Retrieves a list of activity facets.
|
|
24355
24598
|
* @returns Activity Success
|
|
@@ -24373,21 +24616,6 @@ declare class PublicGenericActivityService {
|
|
|
24373
24616
|
*/
|
|
24374
24617
|
networkId?: string;
|
|
24375
24618
|
}): CancelablePromise<Array<Activity>>;
|
|
24376
|
-
/**
|
|
24377
|
-
* Gets the resource by its Id.
|
|
24378
|
-
* @returns GenericActivity Success
|
|
24379
|
-
* @throws ApiError
|
|
24380
|
-
*/
|
|
24381
|
-
getObject({ id, xTenantSubdomain, }: {
|
|
24382
|
-
/**
|
|
24383
|
-
* The <typeparamref name="TObject" /> id.
|
|
24384
|
-
*/
|
|
24385
|
-
id: string;
|
|
24386
|
-
/**
|
|
24387
|
-
* The tenants subdomain.
|
|
24388
|
-
*/
|
|
24389
|
-
xTenantSubdomain?: string;
|
|
24390
|
-
}): CancelablePromise<GenericActivity>;
|
|
24391
24619
|
/**
|
|
24392
24620
|
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
24393
24621
|
* @returns boolean Success
|
|
@@ -24551,12 +24779,149 @@ declare class PublicGenericActivityService {
|
|
|
24551
24779
|
*/
|
|
24552
24780
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
24553
24781
|
}): CancelablePromise<boolean>;
|
|
24782
|
+
}
|
|
24783
|
+
|
|
24784
|
+
declare class PublicHealthCheckService {
|
|
24785
|
+
readonly httpRequest: BaseHttpRequest;
|
|
24786
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
24787
|
+
/**
|
|
24788
|
+
* Accepts a ping to check App and Db status.
|
|
24789
|
+
* @returns any Success
|
|
24790
|
+
* @throws ApiError
|
|
24791
|
+
*/
|
|
24792
|
+
getObject(): CancelablePromise<any>;
|
|
24793
|
+
}
|
|
24794
|
+
|
|
24795
|
+
declare class PublicLeasingService {
|
|
24796
|
+
readonly httpRequest: BaseHttpRequest;
|
|
24797
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
24798
|
+
/**
|
|
24799
|
+
* @returns Order Success
|
|
24800
|
+
* @throws ApiError
|
|
24801
|
+
*/
|
|
24802
|
+
getObject({ id, xTenantSubdomain, }: {
|
|
24803
|
+
id: string;
|
|
24804
|
+
xTenantSubdomain?: string;
|
|
24805
|
+
}): CancelablePromise<Order>;
|
|
24806
|
+
/**
|
|
24807
|
+
* Deletes the resource.
|
|
24808
|
+
* @returns any Success
|
|
24809
|
+
* @throws ApiError
|
|
24810
|
+
*/
|
|
24811
|
+
deleteById({ id, xTenantSubdomain, }: {
|
|
24812
|
+
/**
|
|
24813
|
+
* The <typeparamref name="TObject" /> id.
|
|
24814
|
+
*/
|
|
24815
|
+
id: string;
|
|
24816
|
+
/**
|
|
24817
|
+
* The tenants subdomain.
|
|
24818
|
+
*/
|
|
24819
|
+
xTenantSubdomain?: string;
|
|
24820
|
+
}): CancelablePromise<any>;
|
|
24821
|
+
/**
|
|
24822
|
+
* Refreshes a lease and updates any changes />.
|
|
24823
|
+
* @returns any Success
|
|
24824
|
+
* @throws ApiError
|
|
24825
|
+
*/
|
|
24826
|
+
refresh({ orderId, xTenantSubdomain, requestBody, }: {
|
|
24827
|
+
/**
|
|
24828
|
+
* The order Id.
|
|
24829
|
+
*/
|
|
24830
|
+
orderId: string;
|
|
24831
|
+
/**
|
|
24832
|
+
* The tenants subdomain.
|
|
24833
|
+
*/
|
|
24834
|
+
xTenantSubdomain?: string;
|
|
24835
|
+
/**
|
|
24836
|
+
* The order.
|
|
24837
|
+
*/
|
|
24838
|
+
requestBody?: Order;
|
|
24839
|
+
}): CancelablePromise<any>;
|
|
24840
|
+
/**
|
|
24841
|
+
* Gets a Reach.Models.Tenant by its subdomain.
|
|
24842
|
+
* @returns any Success
|
|
24843
|
+
* @throws ApiError
|
|
24844
|
+
*/
|
|
24845
|
+
convertToOrder({ orderId, xTenantSubdomain, requestBody, }: {
|
|
24846
|
+
/**
|
|
24847
|
+
* The tenants subdomain.
|
|
24848
|
+
*/
|
|
24849
|
+
orderId: string;
|
|
24850
|
+
/**
|
|
24851
|
+
* The tenants subdomain.
|
|
24852
|
+
*/
|
|
24853
|
+
xTenantSubdomain?: string;
|
|
24854
|
+
/**
|
|
24855
|
+
* The tenants subdomain.
|
|
24856
|
+
*/
|
|
24857
|
+
requestBody?: Order;
|
|
24858
|
+
}): CancelablePromise<any>;
|
|
24859
|
+
/**
|
|
24860
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
24861
|
+
* @returns Order Success
|
|
24862
|
+
* @throws ApiError
|
|
24863
|
+
*/
|
|
24864
|
+
post({ xTenantSubdomain, requestBody, }: {
|
|
24865
|
+
/**
|
|
24866
|
+
* The tenants subdomain.
|
|
24867
|
+
*/
|
|
24868
|
+
xTenantSubdomain?: string;
|
|
24869
|
+
/**
|
|
24870
|
+
* The <typeparamref name="TObject" /> model.
|
|
24871
|
+
*/
|
|
24872
|
+
requestBody?: OrderPost;
|
|
24873
|
+
}): CancelablePromise<Order>;
|
|
24874
|
+
/**
|
|
24875
|
+
* Patches the resource.
|
|
24876
|
+
* @returns Order Success
|
|
24877
|
+
* @throws ApiError
|
|
24878
|
+
*/
|
|
24879
|
+
patch({ xTenantSubdomain, requestBody, }: {
|
|
24880
|
+
/**
|
|
24881
|
+
* The tenants subdomain.
|
|
24882
|
+
*/
|
|
24883
|
+
xTenantSubdomain?: string;
|
|
24884
|
+
/**
|
|
24885
|
+
* The <typeparamref name="TObject" /> model.
|
|
24886
|
+
*/
|
|
24887
|
+
requestBody?: OrderPatch;
|
|
24888
|
+
}): CancelablePromise<Order>;
|
|
24889
|
+
/**
|
|
24890
|
+
* Inserts a list of resources.
|
|
24891
|
+
* @returns Order Success
|
|
24892
|
+
* @throws ApiError
|
|
24893
|
+
*/
|
|
24894
|
+
postList({ xTenantSubdomain, requestBody, }: {
|
|
24895
|
+
/**
|
|
24896
|
+
* The tenants subdomain.
|
|
24897
|
+
*/
|
|
24898
|
+
xTenantSubdomain?: string;
|
|
24899
|
+
/**
|
|
24900
|
+
* The list of <typeparamref name="TObject" />.
|
|
24901
|
+
*/
|
|
24902
|
+
requestBody?: Array<OrderPost>;
|
|
24903
|
+
}): CancelablePromise<Array<Order>>;
|
|
24904
|
+
/**
|
|
24905
|
+
* Deletes the resource.
|
|
24906
|
+
* @returns any Success
|
|
24907
|
+
* @throws ApiError
|
|
24908
|
+
*/
|
|
24909
|
+
deleteByObject({ xTenantSubdomain, requestBody, }: {
|
|
24910
|
+
/**
|
|
24911
|
+
* The tenants subdomain.
|
|
24912
|
+
*/
|
|
24913
|
+
xTenantSubdomain?: string;
|
|
24914
|
+
/**
|
|
24915
|
+
* The <typeparamref name="TObject" /> model.
|
|
24916
|
+
*/
|
|
24917
|
+
requestBody?: Order;
|
|
24918
|
+
}): CancelablePromise<any>;
|
|
24554
24919
|
/**
|
|
24555
24920
|
* Gets a list of resources.
|
|
24556
|
-
* @returns
|
|
24921
|
+
* @returns OrderPage Success
|
|
24557
24922
|
* @throws ApiError
|
|
24558
24923
|
*/
|
|
24559
|
-
|
|
24924
|
+
getPage({ xTenantSubdomain, wildcard, accessCode, venueId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
24560
24925
|
/**
|
|
24561
24926
|
* The tenants subdomain.
|
|
24562
24927
|
*/
|
|
@@ -24566,57 +24931,273 @@ declare class PublicGenericActivityService {
|
|
|
24566
24931
|
*/
|
|
24567
24932
|
wildcard?: string;
|
|
24568
24933
|
/**
|
|
24569
|
-
* Gets or sets the
|
|
24934
|
+
* Gets or sets the access code for use in a query search.
|
|
24935
|
+
*/
|
|
24936
|
+
accessCode?: string;
|
|
24937
|
+
/**
|
|
24938
|
+
* Gets or sets the venue Id for use in a query search.
|
|
24570
24939
|
*/
|
|
24571
24940
|
venueId?: string;
|
|
24572
24941
|
/**
|
|
24573
|
-
* Gets or sets the
|
|
24942
|
+
* Gets or sets the customer Id for use in a query search.
|
|
24574
24943
|
*/
|
|
24575
|
-
|
|
24944
|
+
customerId?: string;
|
|
24576
24945
|
/**
|
|
24577
|
-
* Gets or sets
|
|
24946
|
+
* Gets or sets the queryable order ids.
|
|
24578
24947
|
*/
|
|
24579
|
-
|
|
24948
|
+
orderIds?: Array<string>;
|
|
24580
24949
|
/**
|
|
24581
|
-
* Gets or sets
|
|
24950
|
+
* Gets or sets the session Id for use in a query search.
|
|
24582
24951
|
*/
|
|
24583
|
-
|
|
24952
|
+
sessionId?: string;
|
|
24584
24953
|
/**
|
|
24585
|
-
* Gets or sets
|
|
24954
|
+
* Gets or sets the facility Id for use in a query search.
|
|
24586
24955
|
*/
|
|
24587
|
-
|
|
24956
|
+
facilityId?: string;
|
|
24588
24957
|
/**
|
|
24589
|
-
* Gets or sets the
|
|
24958
|
+
* Gets or sets the course Id for use in a query search.
|
|
24590
24959
|
*/
|
|
24591
|
-
|
|
24960
|
+
courseId?: string;
|
|
24592
24961
|
/**
|
|
24593
|
-
* Gets or sets
|
|
24962
|
+
* Gets or sets the queryable order stage. This cannot be used in conjunction with IsBookedOrPendingPayment.
|
|
24594
24963
|
*/
|
|
24595
|
-
|
|
24964
|
+
orderStage?: OrderStage;
|
|
24596
24965
|
/**
|
|
24597
|
-
* Gets or sets
|
|
24966
|
+
* Gets or sets a value indicating whether to return orders that are either booked or pending payment. This cannot be used in conjunction with OrderStage.
|
|
24598
24967
|
*/
|
|
24599
|
-
|
|
24968
|
+
isBookedOrPendingPayment?: boolean;
|
|
24600
24969
|
/**
|
|
24601
|
-
* Gets or sets
|
|
24970
|
+
* Gets or sets the queryable order stages.
|
|
24602
24971
|
*/
|
|
24603
|
-
|
|
24972
|
+
orderStages?: Array<OrderStage>;
|
|
24604
24973
|
/**
|
|
24605
|
-
* Gets or sets
|
|
24974
|
+
* Gets or sets the queryable order date creted is greater than or equal to.
|
|
24606
24975
|
*/
|
|
24607
|
-
|
|
24976
|
+
orderDateGte?: string;
|
|
24608
24977
|
/**
|
|
24609
|
-
* Gets or sets
|
|
24978
|
+
* Gets or sets the queryable order date created is less than or equal to.
|
|
24610
24979
|
*/
|
|
24611
|
-
|
|
24980
|
+
orderDateLte?: string;
|
|
24612
24981
|
/**
|
|
24613
|
-
* Gets or sets
|
|
24982
|
+
* Gets or sets the page number for paged queries.
|
|
24614
24983
|
*/
|
|
24615
|
-
|
|
24984
|
+
pageNumber?: number;
|
|
24616
24985
|
/**
|
|
24617
|
-
* Gets or sets
|
|
24986
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
24618
24987
|
*/
|
|
24619
|
-
|
|
24988
|
+
take?: number;
|
|
24989
|
+
/**
|
|
24990
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
24991
|
+
*/
|
|
24992
|
+
skip?: number;
|
|
24993
|
+
/**
|
|
24994
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
24995
|
+
*/
|
|
24996
|
+
limitListRequests?: boolean;
|
|
24997
|
+
/**
|
|
24998
|
+
* Gets or sets the Tenant Id.
|
|
24999
|
+
*/
|
|
25000
|
+
tenantId?: string;
|
|
25001
|
+
/**
|
|
25002
|
+
* Gets or sets the Modifed By Id.
|
|
25003
|
+
*/
|
|
25004
|
+
modifiedById?: string;
|
|
25005
|
+
/**
|
|
25006
|
+
* Gets or sets the Modifed By Ids.
|
|
25007
|
+
*/
|
|
25008
|
+
modifiedByIds?: Array<string>;
|
|
25009
|
+
/**
|
|
25010
|
+
* Gets or sets the Date Created greater than equal to.
|
|
25011
|
+
*/
|
|
25012
|
+
dateCreatedGte?: string;
|
|
25013
|
+
/**
|
|
25014
|
+
* Gets or sets the Date Created less than equal to.
|
|
25015
|
+
*/
|
|
25016
|
+
dateCreatedLte?: string;
|
|
25017
|
+
/**
|
|
25018
|
+
* Gets or sets the queryable only is live status.
|
|
25019
|
+
*/
|
|
25020
|
+
isLive?: boolean;
|
|
25021
|
+
/**
|
|
25022
|
+
* Gets or sets the sort order direction.
|
|
25023
|
+
*/
|
|
25024
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
25025
|
+
}): CancelablePromise<OrderPage>;
|
|
25026
|
+
/**
|
|
25027
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
25028
|
+
* @returns boolean Success
|
|
25029
|
+
* @throws ApiError
|
|
25030
|
+
*/
|
|
25031
|
+
exists({ xTenantSubdomain, wildcard, accessCode, venueId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
25032
|
+
/**
|
|
25033
|
+
* The tenants subdomain.
|
|
25034
|
+
*/
|
|
25035
|
+
xTenantSubdomain?: string;
|
|
25036
|
+
/**
|
|
25037
|
+
* Gets or sets the wildcard for use in a query search.
|
|
25038
|
+
*/
|
|
25039
|
+
wildcard?: string;
|
|
25040
|
+
/**
|
|
25041
|
+
* Gets or sets the access code for use in a query search.
|
|
25042
|
+
*/
|
|
25043
|
+
accessCode?: string;
|
|
25044
|
+
/**
|
|
25045
|
+
* Gets or sets the venue Id for use in a query search.
|
|
25046
|
+
*/
|
|
25047
|
+
venueId?: string;
|
|
25048
|
+
/**
|
|
25049
|
+
* Gets or sets the customer Id for use in a query search.
|
|
25050
|
+
*/
|
|
25051
|
+
customerId?: string;
|
|
25052
|
+
/**
|
|
25053
|
+
* Gets or sets the queryable order ids.
|
|
25054
|
+
*/
|
|
25055
|
+
orderIds?: Array<string>;
|
|
25056
|
+
/**
|
|
25057
|
+
* Gets or sets the session Id for use in a query search.
|
|
25058
|
+
*/
|
|
25059
|
+
sessionId?: string;
|
|
25060
|
+
/**
|
|
25061
|
+
* Gets or sets the facility Id for use in a query search.
|
|
25062
|
+
*/
|
|
25063
|
+
facilityId?: string;
|
|
25064
|
+
/**
|
|
25065
|
+
* Gets or sets the course Id for use in a query search.
|
|
25066
|
+
*/
|
|
25067
|
+
courseId?: string;
|
|
25068
|
+
/**
|
|
25069
|
+
* Gets or sets the queryable order stage. This cannot be used in conjunction with IsBookedOrPendingPayment.
|
|
25070
|
+
*/
|
|
25071
|
+
orderStage?: OrderStage;
|
|
25072
|
+
/**
|
|
25073
|
+
* Gets or sets a value indicating whether to return orders that are either booked or pending payment. This cannot be used in conjunction with OrderStage.
|
|
25074
|
+
*/
|
|
25075
|
+
isBookedOrPendingPayment?: boolean;
|
|
25076
|
+
/**
|
|
25077
|
+
* Gets or sets the queryable order stages.
|
|
25078
|
+
*/
|
|
25079
|
+
orderStages?: Array<OrderStage>;
|
|
25080
|
+
/**
|
|
25081
|
+
* Gets or sets the queryable order date creted is greater than or equal to.
|
|
25082
|
+
*/
|
|
25083
|
+
orderDateGte?: string;
|
|
25084
|
+
/**
|
|
25085
|
+
* Gets or sets the queryable order date created is less than or equal to.
|
|
25086
|
+
*/
|
|
25087
|
+
orderDateLte?: string;
|
|
25088
|
+
/**
|
|
25089
|
+
* Gets or sets the page number for paged queries.
|
|
25090
|
+
*/
|
|
25091
|
+
pageNumber?: number;
|
|
25092
|
+
/**
|
|
25093
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
25094
|
+
*/
|
|
25095
|
+
take?: number;
|
|
25096
|
+
/**
|
|
25097
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
25098
|
+
*/
|
|
25099
|
+
skip?: number;
|
|
25100
|
+
/**
|
|
25101
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
25102
|
+
*/
|
|
25103
|
+
limitListRequests?: boolean;
|
|
25104
|
+
/**
|
|
25105
|
+
* Gets or sets the Tenant Id.
|
|
25106
|
+
*/
|
|
25107
|
+
tenantId?: string;
|
|
25108
|
+
/**
|
|
25109
|
+
* Gets or sets the Modifed By Id.
|
|
25110
|
+
*/
|
|
25111
|
+
modifiedById?: string;
|
|
25112
|
+
/**
|
|
25113
|
+
* Gets or sets the Modifed By Ids.
|
|
25114
|
+
*/
|
|
25115
|
+
modifiedByIds?: Array<string>;
|
|
25116
|
+
/**
|
|
25117
|
+
* Gets or sets the Date Created greater than equal to.
|
|
25118
|
+
*/
|
|
25119
|
+
dateCreatedGte?: string;
|
|
25120
|
+
/**
|
|
25121
|
+
* Gets or sets the Date Created less than equal to.
|
|
25122
|
+
*/
|
|
25123
|
+
dateCreatedLte?: string;
|
|
25124
|
+
/**
|
|
25125
|
+
* Gets or sets the queryable only is live status.
|
|
25126
|
+
*/
|
|
25127
|
+
isLive?: boolean;
|
|
25128
|
+
/**
|
|
25129
|
+
* Gets or sets the sort order direction.
|
|
25130
|
+
*/
|
|
25131
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
25132
|
+
}): CancelablePromise<boolean>;
|
|
25133
|
+
}
|
|
25134
|
+
|
|
25135
|
+
type SessionPage = {
|
|
25136
|
+
pagination: Pagination;
|
|
25137
|
+
readonly items: Array<Session>;
|
|
25138
|
+
};
|
|
25139
|
+
|
|
25140
|
+
declare class PublicNetworksService {
|
|
25141
|
+
readonly httpRequest: BaseHttpRequest;
|
|
25142
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
25143
|
+
/**
|
|
25144
|
+
* GetSessions.
|
|
25145
|
+
* @returns SessionPage Success
|
|
25146
|
+
* @throws ApiError
|
|
25147
|
+
*/
|
|
25148
|
+
getSessions({ ids, venueId, surveyId, cancellationPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
25149
|
+
/**
|
|
25150
|
+
* Gets or sets the queryable session ids.
|
|
25151
|
+
*/
|
|
25152
|
+
ids?: Array<string>;
|
|
25153
|
+
/**
|
|
25154
|
+
* Gets or sets the queryable Venue Id.
|
|
25155
|
+
*/
|
|
25156
|
+
venueId?: string;
|
|
25157
|
+
/**
|
|
25158
|
+
* Gets or sets the queryable Survey Id.
|
|
25159
|
+
*/
|
|
25160
|
+
surveyId?: string;
|
|
25161
|
+
/**
|
|
25162
|
+
* Gets or sets the queryable Cancellation policy Id.
|
|
25163
|
+
*/
|
|
25164
|
+
cancellationPolicyId?: string;
|
|
25165
|
+
/**
|
|
25166
|
+
* Gets or sets a value indicating whether to only return sessions with future slots available.
|
|
25167
|
+
*/
|
|
25168
|
+
futureOnly?: boolean;
|
|
25169
|
+
/**
|
|
25170
|
+
* Gets or sets a value indicating whether return online sessions.
|
|
25171
|
+
*/
|
|
25172
|
+
online?: boolean;
|
|
25173
|
+
/**
|
|
25174
|
+
* Gets or sets the queryable Programme Id.
|
|
25175
|
+
*/
|
|
25176
|
+
programmeId?: string;
|
|
25177
|
+
/**
|
|
25178
|
+
* Gets or sets a value indicating whether to inlcude the sessions next availability.
|
|
25179
|
+
*/
|
|
25180
|
+
includeNextOpportunity?: boolean;
|
|
25181
|
+
/**
|
|
25182
|
+
* Gets or sets a value indicating whether to include templatable sessions.
|
|
25183
|
+
*/
|
|
25184
|
+
allowTemplating?: boolean;
|
|
25185
|
+
/**
|
|
25186
|
+
* Gets or sets a value indicating whether to include archived sessions.
|
|
25187
|
+
*/
|
|
25188
|
+
archived?: boolean;
|
|
25189
|
+
/**
|
|
25190
|
+
* Gets or sets a value indicating whether to include deleted sessions.
|
|
25191
|
+
*/
|
|
25192
|
+
deleted?: boolean;
|
|
25193
|
+
/**
|
|
25194
|
+
* Gets or sets a value indicating this an openactive reaquest.
|
|
25195
|
+
*/
|
|
25196
|
+
openActiveUpdate?: boolean;
|
|
25197
|
+
/**
|
|
25198
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
25199
|
+
*/
|
|
25200
|
+
networkId?: string;
|
|
24620
25201
|
/**
|
|
24621
25202
|
* Gets or sets Distance.
|
|
24622
25203
|
*/
|
|
@@ -24666,9 +25247,9 @@ declare class PublicGenericActivityService {
|
|
|
24666
25247
|
*/
|
|
24667
25248
|
periodsOfWeek?: PeriodsOfWeek;
|
|
24668
25249
|
/**
|
|
24669
|
-
* Gets or sets
|
|
25250
|
+
* Gets or sets SearchGeoCenter.
|
|
24670
25251
|
*/
|
|
24671
|
-
|
|
25252
|
+
searchGeoCenter?: string;
|
|
24672
25253
|
/**
|
|
24673
25254
|
* Gets or sets the page number for paged queries.
|
|
24674
25255
|
*/
|
|
@@ -24713,87 +25294,45 @@ declare class PublicGenericActivityService {
|
|
|
24713
25294
|
* Gets or sets the sort order direction.
|
|
24714
25295
|
*/
|
|
24715
25296
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
24716
|
-
}): CancelablePromise<
|
|
24717
|
-
}
|
|
24718
|
-
|
|
24719
|
-
declare class PublicHealthCheckService {
|
|
24720
|
-
readonly httpRequest: BaseHttpRequest;
|
|
24721
|
-
constructor(httpRequest: BaseHttpRequest);
|
|
25297
|
+
}): CancelablePromise<SessionPage>;
|
|
24722
25298
|
/**
|
|
24723
|
-
*
|
|
24724
|
-
* @returns
|
|
25299
|
+
* GetSessions.
|
|
25300
|
+
* @returns Session Success
|
|
24725
25301
|
* @throws ApiError
|
|
24726
25302
|
*/
|
|
24727
|
-
|
|
25303
|
+
getSession({ sessionId, }: {
|
|
25304
|
+
/**
|
|
25305
|
+
* The Reach.Models.SessionSearchParameters model.
|
|
25306
|
+
*/
|
|
25307
|
+
sessionId: string;
|
|
25308
|
+
}): CancelablePromise<Session>;
|
|
24728
25309
|
}
|
|
24729
25310
|
|
|
24730
|
-
declare class
|
|
25311
|
+
declare class PublicOpportunityRegisterService {
|
|
24731
25312
|
readonly httpRequest: BaseHttpRequest;
|
|
24732
25313
|
constructor(httpRequest: BaseHttpRequest);
|
|
24733
25314
|
/**
|
|
24734
|
-
*
|
|
24735
|
-
* @
|
|
24736
|
-
*/
|
|
24737
|
-
getObject({ id, xTenantSubdomain, }: {
|
|
24738
|
-
id: string;
|
|
24739
|
-
xTenantSubdomain?: string;
|
|
24740
|
-
}): CancelablePromise<Order>;
|
|
24741
|
-
/**
|
|
24742
|
-
* Deletes the resource.
|
|
24743
|
-
* @returns any Success
|
|
24744
|
-
* @throws ApiError
|
|
24745
|
-
*/
|
|
24746
|
-
deleteById({ id, xTenantSubdomain, }: {
|
|
24747
|
-
/**
|
|
24748
|
-
* The <typeparamref name="TObject" /> id.
|
|
24749
|
-
*/
|
|
24750
|
-
id: string;
|
|
24751
|
-
/**
|
|
24752
|
-
* The tenants subdomain.
|
|
24753
|
-
*/
|
|
24754
|
-
xTenantSubdomain?: string;
|
|
24755
|
-
}): CancelablePromise<any>;
|
|
24756
|
-
/**
|
|
24757
|
-
* Refreshes a lease and updates any changes />.
|
|
24758
|
-
* @returns any Success
|
|
25315
|
+
* Moves an attendee from one scheduled sessions opportunity register to another.
|
|
25316
|
+
* @returns OpportunityRegister Success
|
|
24759
25317
|
* @throws ApiError
|
|
24760
25318
|
*/
|
|
24761
|
-
|
|
25319
|
+
move({ opportunityRegisterId, scheduledSessionId, xTenantSubdomain, }: {
|
|
24762
25320
|
/**
|
|
24763
|
-
* The
|
|
24764
|
-
*/
|
|
24765
|
-
orderId: string;
|
|
24766
|
-
/**
|
|
24767
|
-
* The tenants subdomain.
|
|
24768
|
-
*/
|
|
24769
|
-
xTenantSubdomain?: string;
|
|
24770
|
-
/**
|
|
24771
|
-
* The order.
|
|
25321
|
+
* The current register the attendee is assigned to.
|
|
24772
25322
|
*/
|
|
24773
|
-
|
|
24774
|
-
}): CancelablePromise<any>;
|
|
24775
|
-
/**
|
|
24776
|
-
* Gets a Reach.Models.Tenant by its subdomain.
|
|
24777
|
-
* @returns any Success
|
|
24778
|
-
* @throws ApiError
|
|
24779
|
-
*/
|
|
24780
|
-
convertToOrder({ orderId, xTenantSubdomain, requestBody, }: {
|
|
25323
|
+
opportunityRegisterId: string;
|
|
24781
25324
|
/**
|
|
24782
|
-
* The
|
|
25325
|
+
* The scheduled session the attendee needs to be moved to.
|
|
24783
25326
|
*/
|
|
24784
|
-
|
|
25327
|
+
scheduledSessionId: string;
|
|
24785
25328
|
/**
|
|
24786
25329
|
* The tenants subdomain.
|
|
24787
25330
|
*/
|
|
24788
25331
|
xTenantSubdomain?: string;
|
|
24789
|
-
|
|
24790
|
-
* The tenants subdomain.
|
|
24791
|
-
*/
|
|
24792
|
-
requestBody?: Order;
|
|
24793
|
-
}): CancelablePromise<any>;
|
|
25332
|
+
}): CancelablePromise<OpportunityRegister>;
|
|
24794
25333
|
/**
|
|
24795
25334
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
24796
|
-
* @returns
|
|
25335
|
+
* @returns OpportunityRegister Success
|
|
24797
25336
|
* @throws ApiError
|
|
24798
25337
|
*/
|
|
24799
25338
|
post({ xTenantSubdomain, requestBody, }: {
|
|
@@ -24804,11 +25343,11 @@ declare class PublicLeasingService {
|
|
|
24804
25343
|
/**
|
|
24805
25344
|
* The <typeparamref name="TObject" /> model.
|
|
24806
25345
|
*/
|
|
24807
|
-
requestBody?:
|
|
24808
|
-
}): CancelablePromise<
|
|
25346
|
+
requestBody?: OpportunityRegisterPost;
|
|
25347
|
+
}): CancelablePromise<OpportunityRegister>;
|
|
24809
25348
|
/**
|
|
24810
25349
|
* Patches the resource.
|
|
24811
|
-
* @returns
|
|
25350
|
+
* @returns OpportunityRegister Success
|
|
24812
25351
|
* @throws ApiError
|
|
24813
25352
|
*/
|
|
24814
25353
|
patch({ xTenantSubdomain, requestBody, }: {
|
|
@@ -24819,11 +25358,11 @@ declare class PublicLeasingService {
|
|
|
24819
25358
|
/**
|
|
24820
25359
|
* The <typeparamref name="TObject" /> model.
|
|
24821
25360
|
*/
|
|
24822
|
-
requestBody?:
|
|
24823
|
-
}): CancelablePromise<
|
|
25361
|
+
requestBody?: OpportunityRegisterPatch;
|
|
25362
|
+
}): CancelablePromise<OpportunityRegister>;
|
|
24824
25363
|
/**
|
|
24825
25364
|
* Inserts a list of resources.
|
|
24826
|
-
* @returns
|
|
25365
|
+
* @returns OpportunityRegister Success
|
|
24827
25366
|
* @throws ApiError
|
|
24828
25367
|
*/
|
|
24829
25368
|
postList({ xTenantSubdomain, requestBody, }: {
|
|
@@ -24834,8 +25373,8 @@ declare class PublicLeasingService {
|
|
|
24834
25373
|
/**
|
|
24835
25374
|
* The list of <typeparamref name="TObject" />.
|
|
24836
25375
|
*/
|
|
24837
|
-
requestBody?: Array<
|
|
24838
|
-
}): CancelablePromise<Array<
|
|
25376
|
+
requestBody?: Array<OpportunityRegisterPost>;
|
|
25377
|
+
}): CancelablePromise<Array<OpportunityRegister>>;
|
|
24839
25378
|
/**
|
|
24840
25379
|
* Deletes the resource.
|
|
24841
25380
|
* @returns any Success
|
|
@@ -24849,70 +25388,183 @@ declare class PublicLeasingService {
|
|
|
24849
25388
|
/**
|
|
24850
25389
|
* The <typeparamref name="TObject" /> model.
|
|
24851
25390
|
*/
|
|
24852
|
-
requestBody?:
|
|
25391
|
+
requestBody?: OpportunityRegister;
|
|
24853
25392
|
}): CancelablePromise<any>;
|
|
24854
25393
|
/**
|
|
24855
25394
|
* Gets a list of resources.
|
|
24856
|
-
* @returns
|
|
25395
|
+
* @returns OpportunityRegisterPage Success
|
|
24857
25396
|
* @throws ApiError
|
|
24858
25397
|
*/
|
|
24859
|
-
getPage({ xTenantSubdomain,
|
|
25398
|
+
getPage({ xTenantSubdomain, orderItemId, orderItemIds, attendeeId, scheduledSessionId, courseId, confirmed, status, checkedIn, moved, movedFrom, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
24860
25399
|
/**
|
|
24861
25400
|
* The tenants subdomain.
|
|
24862
25401
|
*/
|
|
24863
25402
|
xTenantSubdomain?: string;
|
|
24864
25403
|
/**
|
|
24865
|
-
* Gets or sets the
|
|
25404
|
+
* Gets or sets the queryable order item id.
|
|
24866
25405
|
*/
|
|
24867
|
-
|
|
25406
|
+
orderItemId?: string;
|
|
24868
25407
|
/**
|
|
24869
|
-
* Gets or sets the
|
|
25408
|
+
* Gets or sets the queryable order item ids.
|
|
24870
25409
|
*/
|
|
24871
|
-
|
|
25410
|
+
orderItemIds?: Array<string>;
|
|
24872
25411
|
/**
|
|
24873
|
-
* Gets or sets the
|
|
25412
|
+
* Gets or sets the queryable attendee id.
|
|
24874
25413
|
*/
|
|
24875
|
-
|
|
25414
|
+
attendeeId?: string;
|
|
24876
25415
|
/**
|
|
24877
|
-
* Gets or sets the
|
|
25416
|
+
* Gets or sets the queryable scheduled session id.
|
|
24878
25417
|
*/
|
|
24879
|
-
|
|
25418
|
+
scheduledSessionId?: string;
|
|
24880
25419
|
/**
|
|
24881
|
-
* Gets or sets the queryable
|
|
25420
|
+
* Gets or sets the queryable course id.
|
|
24882
25421
|
*/
|
|
24883
|
-
|
|
25422
|
+
courseId?: string;
|
|
24884
25423
|
/**
|
|
24885
|
-
* Gets or sets the
|
|
25424
|
+
* Gets or sets the queryable attendence confirmed true/false.
|
|
24886
25425
|
*/
|
|
24887
|
-
|
|
25426
|
+
confirmed?: boolean;
|
|
24888
25427
|
/**
|
|
24889
|
-
* Gets or sets the
|
|
25428
|
+
* Gets or sets the queryable opportunity status.
|
|
24890
25429
|
*/
|
|
24891
|
-
|
|
25430
|
+
status?: OpportunityRegisterStatus;
|
|
24892
25431
|
/**
|
|
24893
|
-
* Gets or sets the
|
|
25432
|
+
* Gets or sets the queryable attendee checked in value.
|
|
25433
|
+
*/
|
|
25434
|
+
checkedIn?: boolean;
|
|
25435
|
+
/**
|
|
25436
|
+
* Gets or sets the queryable attendee moved value.
|
|
25437
|
+
*/
|
|
25438
|
+
moved?: boolean;
|
|
25439
|
+
/**
|
|
25440
|
+
* Gets or sets the queryable opportunity register that the attendee was moved from.
|
|
25441
|
+
*/
|
|
25442
|
+
movedFrom?: string;
|
|
25443
|
+
/**
|
|
25444
|
+
* Gets or sets the page number for paged queries.
|
|
25445
|
+
*/
|
|
25446
|
+
pageNumber?: number;
|
|
25447
|
+
/**
|
|
25448
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
25449
|
+
*/
|
|
25450
|
+
take?: number;
|
|
25451
|
+
/**
|
|
25452
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
25453
|
+
*/
|
|
25454
|
+
skip?: number;
|
|
25455
|
+
/**
|
|
25456
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
25457
|
+
*/
|
|
25458
|
+
limitListRequests?: boolean;
|
|
25459
|
+
/**
|
|
25460
|
+
* Gets or sets the Tenant Id.
|
|
25461
|
+
*/
|
|
25462
|
+
tenantId?: string;
|
|
25463
|
+
/**
|
|
25464
|
+
* Gets or sets the Modifed By Id.
|
|
25465
|
+
*/
|
|
25466
|
+
modifiedById?: string;
|
|
25467
|
+
/**
|
|
25468
|
+
* Gets or sets the Modifed By Ids.
|
|
25469
|
+
*/
|
|
25470
|
+
modifiedByIds?: Array<string>;
|
|
25471
|
+
/**
|
|
25472
|
+
* Gets or sets the Date Created greater than equal to.
|
|
25473
|
+
*/
|
|
25474
|
+
dateCreatedGte?: string;
|
|
25475
|
+
/**
|
|
25476
|
+
* Gets or sets the Date Created less than equal to.
|
|
25477
|
+
*/
|
|
25478
|
+
dateCreatedLte?: string;
|
|
25479
|
+
/**
|
|
25480
|
+
* Gets or sets the queryable only is live status.
|
|
25481
|
+
*/
|
|
25482
|
+
isLive?: boolean;
|
|
25483
|
+
/**
|
|
25484
|
+
* Gets or sets the sort order direction.
|
|
25485
|
+
*/
|
|
25486
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
25487
|
+
}): CancelablePromise<OpportunityRegisterPage>;
|
|
25488
|
+
/**
|
|
25489
|
+
* Deletes the resource.
|
|
25490
|
+
* @returns any Success
|
|
25491
|
+
* @throws ApiError
|
|
25492
|
+
*/
|
|
25493
|
+
deleteById({ id, xTenantSubdomain, }: {
|
|
25494
|
+
/**
|
|
25495
|
+
* The <typeparamref name="TObject" /> id.
|
|
25496
|
+
*/
|
|
25497
|
+
id: string;
|
|
25498
|
+
/**
|
|
25499
|
+
* The tenants subdomain.
|
|
25500
|
+
*/
|
|
25501
|
+
xTenantSubdomain?: string;
|
|
25502
|
+
}): CancelablePromise<any>;
|
|
25503
|
+
/**
|
|
25504
|
+
* Gets the resource by its Id.
|
|
25505
|
+
* @returns OpportunityRegister Success
|
|
25506
|
+
* @throws ApiError
|
|
25507
|
+
*/
|
|
25508
|
+
getObject({ id, xTenantSubdomain, }: {
|
|
25509
|
+
/**
|
|
25510
|
+
* The <typeparamref name="TObject" /> id.
|
|
25511
|
+
*/
|
|
25512
|
+
id: string;
|
|
25513
|
+
/**
|
|
25514
|
+
* The tenants subdomain.
|
|
25515
|
+
*/
|
|
25516
|
+
xTenantSubdomain?: string;
|
|
25517
|
+
}): CancelablePromise<OpportunityRegister>;
|
|
25518
|
+
/**
|
|
25519
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
25520
|
+
* @returns boolean Success
|
|
25521
|
+
* @throws ApiError
|
|
25522
|
+
*/
|
|
25523
|
+
exists({ xTenantSubdomain, orderItemId, orderItemIds, attendeeId, scheduledSessionId, courseId, confirmed, status, checkedIn, moved, movedFrom, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
25524
|
+
/**
|
|
25525
|
+
* The tenants subdomain.
|
|
25526
|
+
*/
|
|
25527
|
+
xTenantSubdomain?: string;
|
|
25528
|
+
/**
|
|
25529
|
+
* Gets or sets the queryable order item id.
|
|
25530
|
+
*/
|
|
25531
|
+
orderItemId?: string;
|
|
25532
|
+
/**
|
|
25533
|
+
* Gets or sets the queryable order item ids.
|
|
25534
|
+
*/
|
|
25535
|
+
orderItemIds?: Array<string>;
|
|
25536
|
+
/**
|
|
25537
|
+
* Gets or sets the queryable attendee id.
|
|
25538
|
+
*/
|
|
25539
|
+
attendeeId?: string;
|
|
25540
|
+
/**
|
|
25541
|
+
* Gets or sets the queryable scheduled session id.
|
|
25542
|
+
*/
|
|
25543
|
+
scheduledSessionId?: string;
|
|
25544
|
+
/**
|
|
25545
|
+
* Gets or sets the queryable course id.
|
|
24894
25546
|
*/
|
|
24895
25547
|
courseId?: string;
|
|
24896
25548
|
/**
|
|
24897
|
-
* Gets or sets the queryable
|
|
25549
|
+
* Gets or sets the queryable attendence confirmed true/false.
|
|
24898
25550
|
*/
|
|
24899
|
-
|
|
25551
|
+
confirmed?: boolean;
|
|
24900
25552
|
/**
|
|
24901
|
-
* Gets or sets
|
|
25553
|
+
* Gets or sets the queryable opportunity status.
|
|
24902
25554
|
*/
|
|
24903
|
-
|
|
25555
|
+
status?: OpportunityRegisterStatus;
|
|
24904
25556
|
/**
|
|
24905
|
-
* Gets or sets the queryable
|
|
25557
|
+
* Gets or sets the queryable attendee checked in value.
|
|
24906
25558
|
*/
|
|
24907
|
-
|
|
25559
|
+
checkedIn?: boolean;
|
|
24908
25560
|
/**
|
|
24909
|
-
* Gets or sets the queryable
|
|
25561
|
+
* Gets or sets the queryable attendee moved value.
|
|
24910
25562
|
*/
|
|
24911
|
-
|
|
25563
|
+
moved?: boolean;
|
|
24912
25564
|
/**
|
|
24913
|
-
* Gets or sets the queryable
|
|
25565
|
+
* Gets or sets the queryable opportunity register that the attendee was moved from.
|
|
24914
25566
|
*/
|
|
24915
|
-
|
|
25567
|
+
movedFrom?: string;
|
|
24916
25568
|
/**
|
|
24917
25569
|
* Gets or sets the page number for paged queries.
|
|
24918
25570
|
*/
|
|
@@ -24957,69 +25609,129 @@ declare class PublicLeasingService {
|
|
|
24957
25609
|
* Gets or sets the sort order direction.
|
|
24958
25610
|
*/
|
|
24959
25611
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
24960
|
-
}): CancelablePromise<
|
|
25612
|
+
}): CancelablePromise<boolean>;
|
|
25613
|
+
}
|
|
25614
|
+
|
|
25615
|
+
declare class PublicOrderItemsService {
|
|
25616
|
+
readonly httpRequest: BaseHttpRequest;
|
|
25617
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
24961
25618
|
/**
|
|
24962
|
-
*
|
|
24963
|
-
* @returns
|
|
25619
|
+
* Reschedules the order item to another scheduled session.
|
|
25620
|
+
* @returns OrderItem Success
|
|
24964
25621
|
* @throws ApiError
|
|
24965
25622
|
*/
|
|
24966
|
-
|
|
25623
|
+
reschedule({ orderItemId, scheduledSessionId, xTenantSubdomain, }: {
|
|
25624
|
+
/**
|
|
25625
|
+
* The current register the attendee is assigned to.
|
|
25626
|
+
*/
|
|
25627
|
+
orderItemId: string;
|
|
25628
|
+
/**
|
|
25629
|
+
* The scheduled session the attendee needs to be moved to.
|
|
25630
|
+
*/
|
|
25631
|
+
scheduledSessionId: string;
|
|
24967
25632
|
/**
|
|
24968
25633
|
* The tenants subdomain.
|
|
24969
25634
|
*/
|
|
24970
25635
|
xTenantSubdomain?: string;
|
|
25636
|
+
}): CancelablePromise<OrderItem>;
|
|
25637
|
+
/**
|
|
25638
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
25639
|
+
* @returns OrderItem Success
|
|
25640
|
+
* @throws ApiError
|
|
25641
|
+
*/
|
|
25642
|
+
post({ xTenantSubdomain, requestBody, }: {
|
|
24971
25643
|
/**
|
|
24972
|
-
*
|
|
25644
|
+
* The tenants subdomain.
|
|
24973
25645
|
*/
|
|
24974
|
-
|
|
25646
|
+
xTenantSubdomain?: string;
|
|
24975
25647
|
/**
|
|
24976
|
-
*
|
|
25648
|
+
* The <typeparamref name="TObject" /> model.
|
|
24977
25649
|
*/
|
|
24978
|
-
|
|
25650
|
+
requestBody?: OrderItemPost;
|
|
25651
|
+
}): CancelablePromise<OrderItem>;
|
|
25652
|
+
/**
|
|
25653
|
+
* Patches the resource.
|
|
25654
|
+
* @returns OrderItem Success
|
|
25655
|
+
* @throws ApiError
|
|
25656
|
+
*/
|
|
25657
|
+
patch({ xTenantSubdomain, requestBody, }: {
|
|
24979
25658
|
/**
|
|
24980
|
-
*
|
|
25659
|
+
* The tenants subdomain.
|
|
24981
25660
|
*/
|
|
24982
|
-
|
|
25661
|
+
xTenantSubdomain?: string;
|
|
24983
25662
|
/**
|
|
24984
|
-
*
|
|
25663
|
+
* The <typeparamref name="TObject" /> model.
|
|
24985
25664
|
*/
|
|
24986
|
-
|
|
25665
|
+
requestBody?: OrderItemPatch;
|
|
25666
|
+
}): CancelablePromise<OrderItem>;
|
|
25667
|
+
/**
|
|
25668
|
+
* Inserts a list of resources.
|
|
25669
|
+
* @returns OrderItem Success
|
|
25670
|
+
* @throws ApiError
|
|
25671
|
+
*/
|
|
25672
|
+
postList({ xTenantSubdomain, requestBody, }: {
|
|
24987
25673
|
/**
|
|
24988
|
-
*
|
|
25674
|
+
* The tenants subdomain.
|
|
24989
25675
|
*/
|
|
24990
|
-
|
|
25676
|
+
xTenantSubdomain?: string;
|
|
24991
25677
|
/**
|
|
24992
|
-
*
|
|
25678
|
+
* The list of <typeparamref name="TObject" />.
|
|
24993
25679
|
*/
|
|
24994
|
-
|
|
25680
|
+
requestBody?: Array<OrderItemPost>;
|
|
25681
|
+
}): CancelablePromise<Array<OrderItem>>;
|
|
25682
|
+
/**
|
|
25683
|
+
* Deletes the resource.
|
|
25684
|
+
* @returns any Success
|
|
25685
|
+
* @throws ApiError
|
|
25686
|
+
*/
|
|
25687
|
+
deleteByObject({ xTenantSubdomain, requestBody, }: {
|
|
24995
25688
|
/**
|
|
24996
|
-
*
|
|
25689
|
+
* The tenants subdomain.
|
|
24997
25690
|
*/
|
|
24998
|
-
|
|
25691
|
+
xTenantSubdomain?: string;
|
|
24999
25692
|
/**
|
|
25000
|
-
*
|
|
25693
|
+
* The <typeparamref name="TObject" /> model.
|
|
25001
25694
|
*/
|
|
25002
|
-
|
|
25695
|
+
requestBody?: OrderItem;
|
|
25696
|
+
}): CancelablePromise<any>;
|
|
25697
|
+
/**
|
|
25698
|
+
* Gets a list of resources.
|
|
25699
|
+
* @returns OrderItemPage Success
|
|
25700
|
+
* @throws ApiError
|
|
25701
|
+
*/
|
|
25702
|
+
getPage({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
25003
25703
|
/**
|
|
25004
|
-
*
|
|
25704
|
+
* The tenants subdomain.
|
|
25005
25705
|
*/
|
|
25006
|
-
|
|
25706
|
+
xTenantSubdomain?: string;
|
|
25007
25707
|
/**
|
|
25008
|
-
* Gets or sets
|
|
25708
|
+
* Gets or sets the queryable order item ids.
|
|
25009
25709
|
*/
|
|
25010
|
-
|
|
25710
|
+
ids?: Array<string>;
|
|
25011
25711
|
/**
|
|
25012
|
-
* Gets or sets the queryable order
|
|
25712
|
+
* Gets or sets the queryable order id.
|
|
25013
25713
|
*/
|
|
25014
|
-
|
|
25714
|
+
orderId?: string;
|
|
25015
25715
|
/**
|
|
25016
|
-
* Gets or sets the queryable
|
|
25716
|
+
* Gets or sets the queryable scheduled session id.
|
|
25017
25717
|
*/
|
|
25018
|
-
|
|
25718
|
+
scheduledSessionId?: string;
|
|
25019
25719
|
/**
|
|
25020
|
-
* Gets or sets the queryable
|
|
25720
|
+
* Gets or sets the queryable slot id.
|
|
25021
25721
|
*/
|
|
25022
|
-
|
|
25722
|
+
slotId?: string;
|
|
25723
|
+
/**
|
|
25724
|
+
* Gets or sets the queryable course id.
|
|
25725
|
+
*/
|
|
25726
|
+
courseId?: string;
|
|
25727
|
+
/**
|
|
25728
|
+
* Gets or sets the queryable order item status id.
|
|
25729
|
+
*/
|
|
25730
|
+
status?: OrderItemStatus;
|
|
25731
|
+
/**
|
|
25732
|
+
* Gets or sets the queryable order statuses.
|
|
25733
|
+
*/
|
|
25734
|
+
statuses?: Array<OrderItemStatus>;
|
|
25023
25735
|
/**
|
|
25024
25736
|
* Gets or sets the page number for paged queries.
|
|
25025
25737
|
*/
|
|
@@ -25064,139 +25776,75 @@ declare class PublicLeasingService {
|
|
|
25064
25776
|
* Gets or sets the sort order direction.
|
|
25065
25777
|
*/
|
|
25066
25778
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
25067
|
-
}): CancelablePromise<
|
|
25068
|
-
}
|
|
25069
|
-
|
|
25070
|
-
type SessionPage = {
|
|
25071
|
-
pagination: Pagination;
|
|
25072
|
-
readonly items: Array<Session>;
|
|
25073
|
-
};
|
|
25074
|
-
|
|
25075
|
-
declare class PublicNetworksService {
|
|
25076
|
-
readonly httpRequest: BaseHttpRequest;
|
|
25077
|
-
constructor(httpRequest: BaseHttpRequest);
|
|
25779
|
+
}): CancelablePromise<OrderItemPage>;
|
|
25078
25780
|
/**
|
|
25079
|
-
*
|
|
25080
|
-
* @returns
|
|
25781
|
+
* Deletes the resource.
|
|
25782
|
+
* @returns any Success
|
|
25081
25783
|
* @throws ApiError
|
|
25082
25784
|
*/
|
|
25083
|
-
|
|
25084
|
-
/**
|
|
25085
|
-
* Gets or sets the queryable session ids.
|
|
25086
|
-
*/
|
|
25087
|
-
ids?: Array<string>;
|
|
25088
|
-
/**
|
|
25089
|
-
* Gets or sets the queryable Venue Id.
|
|
25090
|
-
*/
|
|
25091
|
-
venueId?: string;
|
|
25092
|
-
/**
|
|
25093
|
-
* Gets or sets the queryable Survey Id.
|
|
25094
|
-
*/
|
|
25095
|
-
surveyId?: string;
|
|
25096
|
-
/**
|
|
25097
|
-
* Gets or sets the queryable Cancellation policy Id.
|
|
25098
|
-
*/
|
|
25099
|
-
cancellationPolicyId?: string;
|
|
25100
|
-
/**
|
|
25101
|
-
* Gets or sets a value indicating whether to only return sessions with future slots available.
|
|
25102
|
-
*/
|
|
25103
|
-
futureOnly?: boolean;
|
|
25104
|
-
/**
|
|
25105
|
-
* Gets or sets a value indicating whether return online sessions.
|
|
25106
|
-
*/
|
|
25107
|
-
online?: boolean;
|
|
25108
|
-
/**
|
|
25109
|
-
* Gets or sets the queryable Programme Id.
|
|
25110
|
-
*/
|
|
25111
|
-
programmeId?: string;
|
|
25112
|
-
/**
|
|
25113
|
-
* Gets or sets a value indicating whether to inlcude the sessions next availability.
|
|
25114
|
-
*/
|
|
25115
|
-
includeNextOpportunity?: boolean;
|
|
25116
|
-
/**
|
|
25117
|
-
* Gets or sets a value indicating whether to include templatable sessions.
|
|
25118
|
-
*/
|
|
25119
|
-
allowTemplating?: boolean;
|
|
25120
|
-
/**
|
|
25121
|
-
* Gets or sets a value indicating whether to include archived sessions.
|
|
25122
|
-
*/
|
|
25123
|
-
archived?: boolean;
|
|
25124
|
-
/**
|
|
25125
|
-
* Gets or sets a value indicating whether to include deleted sessions.
|
|
25126
|
-
*/
|
|
25127
|
-
deleted?: boolean;
|
|
25128
|
-
/**
|
|
25129
|
-
* Gets or sets a value indicating this an openactive reaquest.
|
|
25130
|
-
*/
|
|
25131
|
-
openActiveUpdate?: boolean;
|
|
25132
|
-
/**
|
|
25133
|
-
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
25134
|
-
*/
|
|
25135
|
-
networkId?: string;
|
|
25136
|
-
/**
|
|
25137
|
-
* Gets or sets Lat.
|
|
25138
|
-
*/
|
|
25139
|
-
lat?: number;
|
|
25140
|
-
/**
|
|
25141
|
-
* Gets or sets Lng.
|
|
25142
|
-
*/
|
|
25143
|
-
lng?: number;
|
|
25144
|
-
/**
|
|
25145
|
-
* Gets or sets Place_Id.
|
|
25146
|
-
*/
|
|
25147
|
-
placeId?: string;
|
|
25148
|
-
/**
|
|
25149
|
-
* Gets or sets Distance.
|
|
25150
|
-
*/
|
|
25151
|
-
distance?: number;
|
|
25785
|
+
deleteById({ id, xTenantSubdomain, }: {
|
|
25152
25786
|
/**
|
|
25153
|
-
*
|
|
25787
|
+
* The <typeparamref name="TObject" /> id.
|
|
25154
25788
|
*/
|
|
25155
|
-
|
|
25789
|
+
id: string;
|
|
25156
25790
|
/**
|
|
25157
|
-
*
|
|
25791
|
+
* The tenants subdomain.
|
|
25158
25792
|
*/
|
|
25159
|
-
|
|
25793
|
+
xTenantSubdomain?: string;
|
|
25794
|
+
}): CancelablePromise<any>;
|
|
25795
|
+
/**
|
|
25796
|
+
* Gets the resource by its Id.
|
|
25797
|
+
* @returns OrderItem Success
|
|
25798
|
+
* @throws ApiError
|
|
25799
|
+
*/
|
|
25800
|
+
getObject({ id, xTenantSubdomain, }: {
|
|
25160
25801
|
/**
|
|
25161
|
-
*
|
|
25802
|
+
* The <typeparamref name="TObject" /> id.
|
|
25162
25803
|
*/
|
|
25163
|
-
|
|
25804
|
+
id: string;
|
|
25164
25805
|
/**
|
|
25165
|
-
*
|
|
25806
|
+
* The tenants subdomain.
|
|
25166
25807
|
*/
|
|
25167
|
-
|
|
25808
|
+
xTenantSubdomain?: string;
|
|
25809
|
+
}): CancelablePromise<OrderItem>;
|
|
25810
|
+
/**
|
|
25811
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
25812
|
+
* @returns boolean Success
|
|
25813
|
+
* @throws ApiError
|
|
25814
|
+
*/
|
|
25815
|
+
exists({ xTenantSubdomain, ids, orderId, scheduledSessionId, slotId, courseId, status, statuses, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
25168
25816
|
/**
|
|
25169
|
-
*
|
|
25817
|
+
* The tenants subdomain.
|
|
25170
25818
|
*/
|
|
25171
|
-
|
|
25819
|
+
xTenantSubdomain?: string;
|
|
25172
25820
|
/**
|
|
25173
|
-
* Gets or sets
|
|
25821
|
+
* Gets or sets the queryable order item ids.
|
|
25174
25822
|
*/
|
|
25175
|
-
|
|
25823
|
+
ids?: Array<string>;
|
|
25176
25824
|
/**
|
|
25177
|
-
* Gets or sets
|
|
25825
|
+
* Gets or sets the queryable order id.
|
|
25178
25826
|
*/
|
|
25179
|
-
|
|
25827
|
+
orderId?: string;
|
|
25180
25828
|
/**
|
|
25181
|
-
* Gets or sets
|
|
25829
|
+
* Gets or sets the queryable scheduled session id.
|
|
25182
25830
|
*/
|
|
25183
|
-
|
|
25831
|
+
scheduledSessionId?: string;
|
|
25184
25832
|
/**
|
|
25185
|
-
* Gets or sets
|
|
25833
|
+
* Gets or sets the queryable slot id.
|
|
25186
25834
|
*/
|
|
25187
|
-
|
|
25835
|
+
slotId?: string;
|
|
25188
25836
|
/**
|
|
25189
|
-
* Gets or sets
|
|
25837
|
+
* Gets or sets the queryable course id.
|
|
25190
25838
|
*/
|
|
25191
|
-
|
|
25839
|
+
courseId?: string;
|
|
25192
25840
|
/**
|
|
25193
|
-
* Gets or sets
|
|
25841
|
+
* Gets or sets the queryable order item status id.
|
|
25194
25842
|
*/
|
|
25195
|
-
|
|
25843
|
+
status?: OrderItemStatus;
|
|
25196
25844
|
/**
|
|
25197
|
-
* Gets or sets
|
|
25845
|
+
* Gets or sets the queryable order statuses.
|
|
25198
25846
|
*/
|
|
25199
|
-
|
|
25847
|
+
statuses?: Array<OrderItemStatus>;
|
|
25200
25848
|
/**
|
|
25201
25849
|
* Gets or sets the page number for paged queries.
|
|
25202
25850
|
*/
|
|
@@ -25241,18 +25889,7 @@ declare class PublicNetworksService {
|
|
|
25241
25889
|
* Gets or sets the sort order direction.
|
|
25242
25890
|
*/
|
|
25243
25891
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
25244
|
-
}): CancelablePromise<
|
|
25245
|
-
/**
|
|
25246
|
-
* GetSessions.
|
|
25247
|
-
* @returns Session Success
|
|
25248
|
-
* @throws ApiError
|
|
25249
|
-
*/
|
|
25250
|
-
getSession({ sessionId, }: {
|
|
25251
|
-
/**
|
|
25252
|
-
* The Reach.Models.SessionSearchParameters model.
|
|
25253
|
-
*/
|
|
25254
|
-
sessionId: string;
|
|
25255
|
-
}): CancelablePromise<Session>;
|
|
25892
|
+
}): CancelablePromise<boolean>;
|
|
25256
25893
|
}
|
|
25257
25894
|
|
|
25258
25895
|
declare class PublicOrdersService {
|
|
@@ -25283,7 +25920,7 @@ declare class PublicOrdersService {
|
|
|
25283
25920
|
}): CancelablePromise<any>;
|
|
25284
25921
|
/**
|
|
25285
25922
|
* Gets an Order and includes checks to ensure it is bookable.
|
|
25286
|
-
* @returns
|
|
25923
|
+
* @returns Order Success
|
|
25287
25924
|
* @throws ApiError
|
|
25288
25925
|
*/
|
|
25289
25926
|
getObjectWithOrderValidation({ id, xTenantSubdomain, }: {
|
|
@@ -25295,10 +25932,10 @@ declare class PublicOrdersService {
|
|
|
25295
25932
|
* The tenants subdomain.
|
|
25296
25933
|
*/
|
|
25297
25934
|
xTenantSubdomain?: string;
|
|
25298
|
-
}): CancelablePromise<
|
|
25935
|
+
}): CancelablePromise<Order>;
|
|
25299
25936
|
/**
|
|
25300
25937
|
* Cancels the order and requests a refund.
|
|
25301
|
-
* @returns
|
|
25938
|
+
* @returns Order Success
|
|
25302
25939
|
* @throws ApiError
|
|
25303
25940
|
*/
|
|
25304
25941
|
cancelWithRefund({ id, xTenantSubdomain, requestBody, }: {
|
|
@@ -25314,10 +25951,10 @@ declare class PublicOrdersService {
|
|
|
25314
25951
|
* The order items in the case of a partial refund.
|
|
25315
25952
|
*/
|
|
25316
25953
|
requestBody?: Array<string>;
|
|
25317
|
-
}): CancelablePromise<
|
|
25954
|
+
}): CancelablePromise<Order>;
|
|
25318
25955
|
/**
|
|
25319
25956
|
* Cancels the order.
|
|
25320
|
-
* @returns
|
|
25957
|
+
* @returns Order Success
|
|
25321
25958
|
* @throws ApiError
|
|
25322
25959
|
*/
|
|
25323
25960
|
cancel({ id, xTenantSubdomain, requestBody, }: {
|
|
@@ -25333,7 +25970,7 @@ declare class PublicOrdersService {
|
|
|
25333
25970
|
* The order items in the case of a partial refund.
|
|
25334
25971
|
*/
|
|
25335
25972
|
requestBody?: Array<string>;
|
|
25336
|
-
}): CancelablePromise<
|
|
25973
|
+
}): CancelablePromise<Order>;
|
|
25337
25974
|
/**
|
|
25338
25975
|
* Update basket for order.
|
|
25339
25976
|
* @returns Order Success
|
|
@@ -26766,7 +27403,7 @@ declare class PublicSessionsService {
|
|
|
26766
27403
|
* @returns SessionPage Success
|
|
26767
27404
|
* @throws ApiError
|
|
26768
27405
|
*/
|
|
26769
|
-
getPage({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId,
|
|
27406
|
+
getPage({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
26770
27407
|
xTenantSubdomain?: string;
|
|
26771
27408
|
/**
|
|
26772
27409
|
* Gets or sets the queryable session ids.
|
|
@@ -26820,18 +27457,6 @@ declare class PublicSessionsService {
|
|
|
26820
27457
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
26821
27458
|
*/
|
|
26822
27459
|
networkId?: string;
|
|
26823
|
-
/**
|
|
26824
|
-
* Gets or sets Lat.
|
|
26825
|
-
*/
|
|
26826
|
-
lat?: number;
|
|
26827
|
-
/**
|
|
26828
|
-
* Gets or sets Lng.
|
|
26829
|
-
*/
|
|
26830
|
-
lng?: number;
|
|
26831
|
-
/**
|
|
26832
|
-
* Gets or sets Place_Id.
|
|
26833
|
-
*/
|
|
26834
|
-
placeId?: string;
|
|
26835
27460
|
/**
|
|
26836
27461
|
* Gets or sets Distance.
|
|
26837
27462
|
*/
|
|
@@ -26944,6 +27569,25 @@ declare class PublicSessionsService {
|
|
|
26944
27569
|
*/
|
|
26945
27570
|
requestBody?: Session;
|
|
26946
27571
|
}): CancelablePromise<any>;
|
|
27572
|
+
/**
|
|
27573
|
+
* Gets a list of valid opportunities for rescheduling, based on the quanity required to reschedule.
|
|
27574
|
+
* @returns ScheduledSession Success
|
|
27575
|
+
* @throws ApiError
|
|
27576
|
+
*/
|
|
27577
|
+
getValidOpportunitiesForReschedule({ sessionId, quantity, xTenantSubdomain, }: {
|
|
27578
|
+
/**
|
|
27579
|
+
* The session Id.
|
|
27580
|
+
*/
|
|
27581
|
+
sessionId: string;
|
|
27582
|
+
/**
|
|
27583
|
+
* The quanity required for reschedule.
|
|
27584
|
+
*/
|
|
27585
|
+
quantity: number;
|
|
27586
|
+
/**
|
|
27587
|
+
* The tenants subdomain.
|
|
27588
|
+
*/
|
|
27589
|
+
xTenantSubdomain?: string;
|
|
27590
|
+
}): CancelablePromise<ScheduledSession>;
|
|
26947
27591
|
/**
|
|
26948
27592
|
* Returns distinct slot dates without time information.
|
|
26949
27593
|
* @returns any Success
|
|
@@ -27145,7 +27789,7 @@ declare class PublicSessionsService {
|
|
|
27145
27789
|
* @returns boolean Success
|
|
27146
27790
|
* @throws ApiError
|
|
27147
27791
|
*/
|
|
27148
|
-
exists({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId,
|
|
27792
|
+
exists({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27149
27793
|
/**
|
|
27150
27794
|
* The tenants subdomain.
|
|
27151
27795
|
*/
|
|
@@ -27202,18 +27846,6 @@ declare class PublicSessionsService {
|
|
|
27202
27846
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
27203
27847
|
*/
|
|
27204
27848
|
networkId?: string;
|
|
27205
|
-
/**
|
|
27206
|
-
* Gets or sets Lat.
|
|
27207
|
-
*/
|
|
27208
|
-
lat?: number;
|
|
27209
|
-
/**
|
|
27210
|
-
* Gets or sets Lng.
|
|
27211
|
-
*/
|
|
27212
|
-
lng?: number;
|
|
27213
|
-
/**
|
|
27214
|
-
* Gets or sets Place_Id.
|
|
27215
|
-
*/
|
|
27216
|
-
placeId?: string;
|
|
27217
27849
|
/**
|
|
27218
27850
|
* Gets or sets Distance.
|
|
27219
27851
|
*/
|
|
@@ -29149,6 +29781,10 @@ type TenantPatch = {
|
|
|
29149
29781
|
* Gets or sets the organisations social media Urls.
|
|
29150
29782
|
*/
|
|
29151
29783
|
instagramUrl?: string | null;
|
|
29784
|
+
/**
|
|
29785
|
+
* Gets or sets the organisations website url.
|
|
29786
|
+
*/
|
|
29787
|
+
websiteUrl?: string | null;
|
|
29152
29788
|
/**
|
|
29153
29789
|
* Gets or sets a value indicating whether the tenant is using a custom cancellation policy.
|
|
29154
29790
|
*/
|
|
@@ -29661,7 +30297,7 @@ declare class PublicVenuesService {
|
|
|
29661
30297
|
getPage({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
29662
30298
|
xTenantSubdomain?: string;
|
|
29663
30299
|
/**
|
|
29664
|
-
* Gets or sets the queryable
|
|
30300
|
+
* Gets or sets the queryable venue ids.
|
|
29665
30301
|
*/
|
|
29666
30302
|
ids?: Array<string>;
|
|
29667
30303
|
/**
|
|
@@ -29795,7 +30431,7 @@ declare class PublicVenuesService {
|
|
|
29795
30431
|
*/
|
|
29796
30432
|
getNetworkPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
29797
30433
|
/**
|
|
29798
|
-
* Gets or sets the queryable
|
|
30434
|
+
* Gets or sets the queryable venue ids.
|
|
29799
30435
|
*/
|
|
29800
30436
|
ids?: Array<string>;
|
|
29801
30437
|
/**
|
|
@@ -29963,7 +30599,7 @@ declare class PublicVenuesService {
|
|
|
29963
30599
|
*/
|
|
29964
30600
|
xTenantSubdomain?: string;
|
|
29965
30601
|
/**
|
|
29966
|
-
* Gets or sets the queryable
|
|
30602
|
+
* Gets or sets the queryable venue ids.
|
|
29967
30603
|
*/
|
|
29968
30604
|
ids?: Array<string>;
|
|
29969
30605
|
/**
|
|
@@ -32917,6 +33553,21 @@ type SessionCreate = {
|
|
|
32917
33553
|
declare class SessionsService {
|
|
32918
33554
|
readonly httpRequest: BaseHttpRequest;
|
|
32919
33555
|
constructor(httpRequest: BaseHttpRequest);
|
|
33556
|
+
/**
|
|
33557
|
+
* Gets a list of valid opportunities for rescheduling, based on the quanity required to reschedule.
|
|
33558
|
+
* @returns ScheduledSession Success
|
|
33559
|
+
* @throws ApiError
|
|
33560
|
+
*/
|
|
33561
|
+
getValidOpportunitiesForReschedule({ sessionId, quantity, }: {
|
|
33562
|
+
/**
|
|
33563
|
+
* The session Id.
|
|
33564
|
+
*/
|
|
33565
|
+
sessionId: string;
|
|
33566
|
+
/**
|
|
33567
|
+
* The quanity required for reschedule.
|
|
33568
|
+
*/
|
|
33569
|
+
quantity: number;
|
|
33570
|
+
}): CancelablePromise<ScheduledSession>;
|
|
32920
33571
|
/**
|
|
32921
33572
|
* Deletes unconfirmed slots for the session />.
|
|
32922
33573
|
* @returns any Success
|
|
@@ -33057,7 +33708,7 @@ declare class SessionsService {
|
|
|
33057
33708
|
* @returns SessionPage Success
|
|
33058
33709
|
* @throws ApiError
|
|
33059
33710
|
*/
|
|
33060
|
-
getPage({ ids, venueId, surveyId, cancellationPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId,
|
|
33711
|
+
getPage({ ids, venueId, surveyId, cancellationPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
33061
33712
|
/**
|
|
33062
33713
|
* Gets or sets the queryable session ids.
|
|
33063
33714
|
*/
|
|
@@ -33110,18 +33761,6 @@ declare class SessionsService {
|
|
|
33110
33761
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
33111
33762
|
*/
|
|
33112
33763
|
networkId?: string;
|
|
33113
|
-
/**
|
|
33114
|
-
* Gets or sets Lat.
|
|
33115
|
-
*/
|
|
33116
|
-
lat?: number;
|
|
33117
|
-
/**
|
|
33118
|
-
* Gets or sets Lng.
|
|
33119
|
-
*/
|
|
33120
|
-
lng?: number;
|
|
33121
|
-
/**
|
|
33122
|
-
* Gets or sets Place_Id.
|
|
33123
|
-
*/
|
|
33124
|
-
placeId?: string;
|
|
33125
33764
|
/**
|
|
33126
33765
|
* Gets or sets Distance.
|
|
33127
33766
|
*/
|
|
@@ -33257,7 +33896,7 @@ declare class SessionsService {
|
|
|
33257
33896
|
* @returns boolean Success
|
|
33258
33897
|
* @throws ApiError
|
|
33259
33898
|
*/
|
|
33260
|
-
exists({ ids, venueId, surveyId, cancellationPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId,
|
|
33899
|
+
exists({ ids, venueId, surveyId, cancellationPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
33261
33900
|
/**
|
|
33262
33901
|
* Gets or sets the queryable session ids.
|
|
33263
33902
|
*/
|
|
@@ -33310,18 +33949,6 @@ declare class SessionsService {
|
|
|
33310
33949
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
33311
33950
|
*/
|
|
33312
33951
|
networkId?: string;
|
|
33313
|
-
/**
|
|
33314
|
-
* Gets or sets Lat.
|
|
33315
|
-
*/
|
|
33316
|
-
lat?: number;
|
|
33317
|
-
/**
|
|
33318
|
-
* Gets or sets Lng.
|
|
33319
|
-
*/
|
|
33320
|
-
lng?: number;
|
|
33321
|
-
/**
|
|
33322
|
-
* Gets or sets Place_Id.
|
|
33323
|
-
*/
|
|
33324
|
-
placeId?: string;
|
|
33325
33952
|
/**
|
|
33326
33953
|
* Gets or sets Distance.
|
|
33327
33954
|
*/
|
|
@@ -33424,7 +34051,7 @@ declare class SessionsService {
|
|
|
33424
34051
|
* @returns Session Success
|
|
33425
34052
|
* @throws ApiError
|
|
33426
34053
|
*/
|
|
33427
|
-
getListWithoutReferences({ ids, venueId, surveyId, cancellationPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId,
|
|
34054
|
+
getListWithoutReferences({ ids, venueId, surveyId, cancellationPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
33428
34055
|
/**
|
|
33429
34056
|
* Gets or sets the queryable session ids.
|
|
33430
34057
|
*/
|
|
@@ -33477,18 +34104,6 @@ declare class SessionsService {
|
|
|
33477
34104
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
33478
34105
|
*/
|
|
33479
34106
|
networkId?: string;
|
|
33480
|
-
/**
|
|
33481
|
-
* Gets or sets Lat.
|
|
33482
|
-
*/
|
|
33483
|
-
lat?: number;
|
|
33484
|
-
/**
|
|
33485
|
-
* Gets or sets Lng.
|
|
33486
|
-
*/
|
|
33487
|
-
lng?: number;
|
|
33488
|
-
/**
|
|
33489
|
-
* Gets or sets Place_Id.
|
|
33490
|
-
*/
|
|
33491
|
-
placeId?: string;
|
|
33492
34107
|
/**
|
|
33493
34108
|
* Gets or sets Distance.
|
|
33494
34109
|
*/
|
|
@@ -33591,7 +34206,7 @@ declare class SessionsService {
|
|
|
33591
34206
|
* @returns Session Success
|
|
33592
34207
|
* @throws ApiError
|
|
33593
34208
|
*/
|
|
33594
|
-
getListIdName({ ids, venueId, surveyId, cancellationPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId,
|
|
34209
|
+
getListIdName({ ids, venueId, surveyId, cancellationPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
33595
34210
|
/**
|
|
33596
34211
|
* Gets or sets the queryable session ids.
|
|
33597
34212
|
*/
|
|
@@ -33644,18 +34259,6 @@ declare class SessionsService {
|
|
|
33644
34259
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
33645
34260
|
*/
|
|
33646
34261
|
networkId?: string;
|
|
33647
|
-
/**
|
|
33648
|
-
* Gets or sets Lat.
|
|
33649
|
-
*/
|
|
33650
|
-
lat?: number;
|
|
33651
|
-
/**
|
|
33652
|
-
* Gets or sets Lng.
|
|
33653
|
-
*/
|
|
33654
|
-
lng?: number;
|
|
33655
|
-
/**
|
|
33656
|
-
* Gets or sets Place_Id.
|
|
33657
|
-
*/
|
|
33658
|
-
placeId?: string;
|
|
33659
34262
|
/**
|
|
33660
34263
|
* Gets or sets Distance.
|
|
33661
34264
|
*/
|
|
@@ -43512,7 +44115,7 @@ declare class VenuesService {
|
|
|
43512
44115
|
*/
|
|
43513
44116
|
getPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
43514
44117
|
/**
|
|
43515
|
-
* Gets or sets the queryable
|
|
44118
|
+
* Gets or sets the queryable venue ids.
|
|
43516
44119
|
*/
|
|
43517
44120
|
ids?: Array<string>;
|
|
43518
44121
|
/**
|
|
@@ -43664,7 +44267,7 @@ declare class VenuesService {
|
|
|
43664
44267
|
*/
|
|
43665
44268
|
exists({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
43666
44269
|
/**
|
|
43667
|
-
* Gets or sets the queryable
|
|
44270
|
+
* Gets or sets the queryable venue ids.
|
|
43668
44271
|
*/
|
|
43669
44272
|
ids?: Array<string>;
|
|
43670
44273
|
/**
|
|
@@ -43783,7 +44386,7 @@ declare class VenuesService {
|
|
|
43783
44386
|
*/
|
|
43784
44387
|
getListWithoutReferences({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
43785
44388
|
/**
|
|
43786
|
-
* Gets or sets the queryable
|
|
44389
|
+
* Gets or sets the queryable venue ids.
|
|
43787
44390
|
*/
|
|
43788
44391
|
ids?: Array<string>;
|
|
43789
44392
|
/**
|
|
@@ -43902,7 +44505,7 @@ declare class VenuesService {
|
|
|
43902
44505
|
*/
|
|
43903
44506
|
getListIdName({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
43904
44507
|
/**
|
|
43905
|
-
* Gets or sets the queryable
|
|
44508
|
+
* Gets or sets the queryable venue ids.
|
|
43906
44509
|
*/
|
|
43907
44510
|
ids?: Array<string>;
|
|
43908
44511
|
/**
|
|
@@ -46434,6 +47037,8 @@ declare class ApiClient {
|
|
|
46434
47037
|
readonly publicHealthCheck: PublicHealthCheckService;
|
|
46435
47038
|
readonly publicLeasing: PublicLeasingService;
|
|
46436
47039
|
readonly publicNetworks: PublicNetworksService;
|
|
47040
|
+
readonly publicOpportunityRegister: PublicOpportunityRegisterService;
|
|
47041
|
+
readonly publicOrderItems: PublicOrderItemsService;
|
|
46437
47042
|
readonly publicOrders: PublicOrdersService;
|
|
46438
47043
|
readonly publicOrderTokens: PublicOrderTokensService;
|
|
46439
47044
|
readonly publicProgrammes: PublicProgrammesService;
|
|
@@ -46612,4 +47217,4 @@ type ValidationResultModel = {
|
|
|
46612
47217
|
readonly errors?: Array<ValidationError> | null;
|
|
46613
47218
|
};
|
|
46614
47219
|
|
|
46615
|
-
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EnglandGolfReportService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPost, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|
|
47220
|
+
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EnglandGolfReportService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPost, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|