reach-api-sdk 1.0.93 → 1.0.94
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 +953 -20
- package/dist/reach-sdk.js +494 -2
- package/package.json +1 -1
- package/src/apiClient.ts +3 -0
- package/src/definition/swagger.yaml +1399 -0
- package/src/index.ts +2 -0
- package/src/models/GenericActivity.ts +10 -0
- package/src/models/PeriodsOfWeek.ts +12 -0
- package/src/models/Survey.ts +8 -0
- package/src/services/GenericActivityService.ts +410 -0
- package/src/services/PublicGenericActivityService.ts +247 -0
- package/src/services/PublicNetworksService.ts +126 -0
- package/src/services/PublicSessionsService.ts +194 -0
- package/src/services/PublicSurveysService.ts +12 -0
- package/src/services/SessionsService.ts +386 -0
- package/src/services/SurveysService.ts +24 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -9871,6 +9871,15 @@ type GenericActivity = {
|
|
|
9871
9871
|
*/
|
|
9872
9872
|
deleted?: boolean | null;
|
|
9873
9873
|
activityType?: ActivityType;
|
|
9874
|
+
gender?: Gender;
|
|
9875
|
+
/**
|
|
9876
|
+
* Gets or sets the min age.
|
|
9877
|
+
*/
|
|
9878
|
+
minAge?: number | null;
|
|
9879
|
+
/**
|
|
9880
|
+
* Gets or sets the max age.
|
|
9881
|
+
*/
|
|
9882
|
+
maxAge?: number | null;
|
|
9874
9883
|
/**
|
|
9875
9884
|
* Gets or sets the start date.
|
|
9876
9885
|
*/
|
|
@@ -9930,6 +9939,14 @@ type GenericActivityPost = {
|
|
|
9930
9939
|
tenantId: string;
|
|
9931
9940
|
};
|
|
9932
9941
|
|
|
9942
|
+
/**
|
|
9943
|
+
* Controls the customer cancellation options.
|
|
9944
|
+
*/
|
|
9945
|
+
declare enum PeriodsOfWeek {
|
|
9946
|
+
WEEKENDS = "Weekends",
|
|
9947
|
+
WEEKDAYS = "Weekdays"
|
|
9948
|
+
}
|
|
9949
|
+
|
|
9933
9950
|
/**
|
|
9934
9951
|
* Post model for creating a template from an activity.
|
|
9935
9952
|
*/
|
|
@@ -10022,7 +10039,7 @@ declare class GenericActivityService {
|
|
|
10022
10039
|
* @returns boolean Success
|
|
10023
10040
|
* @throws ApiError
|
|
10024
10041
|
*/
|
|
10025
|
-
exists({ wildcard, venueId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10042
|
+
exists({ wildcard, venueId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10026
10043
|
/**
|
|
10027
10044
|
* Gets or sets the wildcard for use in a query search.
|
|
10028
10045
|
*/
|
|
@@ -10055,6 +10072,74 @@ declare class GenericActivityService {
|
|
|
10055
10072
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
10056
10073
|
*/
|
|
10057
10074
|
includeNextOpportunity?: boolean;
|
|
10075
|
+
/**
|
|
10076
|
+
* Gets or sets SearchGeoCenter.
|
|
10077
|
+
*/
|
|
10078
|
+
searchGeoCenter?: string;
|
|
10079
|
+
/**
|
|
10080
|
+
* Gets or sets OpenactiveActivityId.
|
|
10081
|
+
*/
|
|
10082
|
+
openactiveActivityId?: string;
|
|
10083
|
+
/**
|
|
10084
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
10085
|
+
*/
|
|
10086
|
+
networkId?: string;
|
|
10087
|
+
/**
|
|
10088
|
+
* Gets or sets Lat.
|
|
10089
|
+
*/
|
|
10090
|
+
lat?: number;
|
|
10091
|
+
/**
|
|
10092
|
+
* Gets or sets Lng.
|
|
10093
|
+
*/
|
|
10094
|
+
lng?: number;
|
|
10095
|
+
/**
|
|
10096
|
+
* Gets or sets Distance.
|
|
10097
|
+
*/
|
|
10098
|
+
distance?: number;
|
|
10099
|
+
/**
|
|
10100
|
+
* Gets or sets MinAgeLTE.
|
|
10101
|
+
*/
|
|
10102
|
+
minAgeLte?: number;
|
|
10103
|
+
/**
|
|
10104
|
+
* Gets or sets MinAgeGTE.
|
|
10105
|
+
*/
|
|
10106
|
+
minAgeGte?: number;
|
|
10107
|
+
/**
|
|
10108
|
+
* Gets or sets MaxAgeLTE.
|
|
10109
|
+
*/
|
|
10110
|
+
maxAgeLte?: number;
|
|
10111
|
+
/**
|
|
10112
|
+
* Gets or sets MaxAgeGTE.
|
|
10113
|
+
*/
|
|
10114
|
+
maxAgeGte?: number;
|
|
10115
|
+
/**
|
|
10116
|
+
* Gets or sets PriceTotalGTE.
|
|
10117
|
+
*/
|
|
10118
|
+
priceTotalGte?: number;
|
|
10119
|
+
/**
|
|
10120
|
+
* Gets or sets PriceTotalLTE.
|
|
10121
|
+
*/
|
|
10122
|
+
priceTotalLte?: number;
|
|
10123
|
+
/**
|
|
10124
|
+
* Gets or sets TimeOfDay.
|
|
10125
|
+
*/
|
|
10126
|
+
timeOfDay?: string;
|
|
10127
|
+
/**
|
|
10128
|
+
* Gets or sets DateFrom.
|
|
10129
|
+
*/
|
|
10130
|
+
dateFrom?: string;
|
|
10131
|
+
/**
|
|
10132
|
+
* Gets or sets DateTo.
|
|
10133
|
+
*/
|
|
10134
|
+
dateTo?: string;
|
|
10135
|
+
/**
|
|
10136
|
+
* Gets or sets Gender.
|
|
10137
|
+
*/
|
|
10138
|
+
gender?: Gender;
|
|
10139
|
+
/**
|
|
10140
|
+
* Gets or sets PeriodsOfWeek.
|
|
10141
|
+
*/
|
|
10142
|
+
periodsOfWeek?: PeriodsOfWeek;
|
|
10058
10143
|
/**
|
|
10059
10144
|
* Gets or sets the page number for paged queries.
|
|
10060
10145
|
*/
|
|
@@ -10101,7 +10186,7 @@ declare class GenericActivityService {
|
|
|
10101
10186
|
* @returns GenericActivityPage Success
|
|
10102
10187
|
* @throws ApiError
|
|
10103
10188
|
*/
|
|
10104
|
-
getPage({ wildcard, venueId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10189
|
+
getPage({ wildcard, venueId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10105
10190
|
/**
|
|
10106
10191
|
* Gets or sets the wildcard for use in a query search.
|
|
10107
10192
|
*/
|
|
@@ -10134,6 +10219,74 @@ declare class GenericActivityService {
|
|
|
10134
10219
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
10135
10220
|
*/
|
|
10136
10221
|
includeNextOpportunity?: boolean;
|
|
10222
|
+
/**
|
|
10223
|
+
* Gets or sets SearchGeoCenter.
|
|
10224
|
+
*/
|
|
10225
|
+
searchGeoCenter?: string;
|
|
10226
|
+
/**
|
|
10227
|
+
* Gets or sets OpenactiveActivityId.
|
|
10228
|
+
*/
|
|
10229
|
+
openactiveActivityId?: string;
|
|
10230
|
+
/**
|
|
10231
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
10232
|
+
*/
|
|
10233
|
+
networkId?: string;
|
|
10234
|
+
/**
|
|
10235
|
+
* Gets or sets Lat.
|
|
10236
|
+
*/
|
|
10237
|
+
lat?: number;
|
|
10238
|
+
/**
|
|
10239
|
+
* Gets or sets Lng.
|
|
10240
|
+
*/
|
|
10241
|
+
lng?: number;
|
|
10242
|
+
/**
|
|
10243
|
+
* Gets or sets Distance.
|
|
10244
|
+
*/
|
|
10245
|
+
distance?: number;
|
|
10246
|
+
/**
|
|
10247
|
+
* Gets or sets MinAgeLTE.
|
|
10248
|
+
*/
|
|
10249
|
+
minAgeLte?: number;
|
|
10250
|
+
/**
|
|
10251
|
+
* Gets or sets MinAgeGTE.
|
|
10252
|
+
*/
|
|
10253
|
+
minAgeGte?: number;
|
|
10254
|
+
/**
|
|
10255
|
+
* Gets or sets MaxAgeLTE.
|
|
10256
|
+
*/
|
|
10257
|
+
maxAgeLte?: number;
|
|
10258
|
+
/**
|
|
10259
|
+
* Gets or sets MaxAgeGTE.
|
|
10260
|
+
*/
|
|
10261
|
+
maxAgeGte?: number;
|
|
10262
|
+
/**
|
|
10263
|
+
* Gets or sets PriceTotalGTE.
|
|
10264
|
+
*/
|
|
10265
|
+
priceTotalGte?: number;
|
|
10266
|
+
/**
|
|
10267
|
+
* Gets or sets PriceTotalLTE.
|
|
10268
|
+
*/
|
|
10269
|
+
priceTotalLte?: number;
|
|
10270
|
+
/**
|
|
10271
|
+
* Gets or sets TimeOfDay.
|
|
10272
|
+
*/
|
|
10273
|
+
timeOfDay?: string;
|
|
10274
|
+
/**
|
|
10275
|
+
* Gets or sets DateFrom.
|
|
10276
|
+
*/
|
|
10277
|
+
dateFrom?: string;
|
|
10278
|
+
/**
|
|
10279
|
+
* Gets or sets DateTo.
|
|
10280
|
+
*/
|
|
10281
|
+
dateTo?: string;
|
|
10282
|
+
/**
|
|
10283
|
+
* Gets or sets Gender.
|
|
10284
|
+
*/
|
|
10285
|
+
gender?: Gender;
|
|
10286
|
+
/**
|
|
10287
|
+
* Gets or sets PeriodsOfWeek.
|
|
10288
|
+
*/
|
|
10289
|
+
periodsOfWeek?: PeriodsOfWeek;
|
|
10137
10290
|
/**
|
|
10138
10291
|
* Gets or sets the page number for paged queries.
|
|
10139
10292
|
*/
|
|
@@ -10191,7 +10344,7 @@ declare class GenericActivityService {
|
|
|
10191
10344
|
* @returns GenericActivity Success
|
|
10192
10345
|
* @throws ApiError
|
|
10193
10346
|
*/
|
|
10194
|
-
getListWithoutReferences({ wildcard, venueId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10347
|
+
getListWithoutReferences({ wildcard, venueId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10195
10348
|
/**
|
|
10196
10349
|
* Gets or sets the wildcard for use in a query search.
|
|
10197
10350
|
*/
|
|
@@ -10224,6 +10377,74 @@ declare class GenericActivityService {
|
|
|
10224
10377
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
10225
10378
|
*/
|
|
10226
10379
|
includeNextOpportunity?: boolean;
|
|
10380
|
+
/**
|
|
10381
|
+
* Gets or sets SearchGeoCenter.
|
|
10382
|
+
*/
|
|
10383
|
+
searchGeoCenter?: string;
|
|
10384
|
+
/**
|
|
10385
|
+
* Gets or sets OpenactiveActivityId.
|
|
10386
|
+
*/
|
|
10387
|
+
openactiveActivityId?: string;
|
|
10388
|
+
/**
|
|
10389
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
10390
|
+
*/
|
|
10391
|
+
networkId?: string;
|
|
10392
|
+
/**
|
|
10393
|
+
* Gets or sets Lat.
|
|
10394
|
+
*/
|
|
10395
|
+
lat?: number;
|
|
10396
|
+
/**
|
|
10397
|
+
* Gets or sets Lng.
|
|
10398
|
+
*/
|
|
10399
|
+
lng?: number;
|
|
10400
|
+
/**
|
|
10401
|
+
* Gets or sets Distance.
|
|
10402
|
+
*/
|
|
10403
|
+
distance?: number;
|
|
10404
|
+
/**
|
|
10405
|
+
* Gets or sets MinAgeLTE.
|
|
10406
|
+
*/
|
|
10407
|
+
minAgeLte?: number;
|
|
10408
|
+
/**
|
|
10409
|
+
* Gets or sets MinAgeGTE.
|
|
10410
|
+
*/
|
|
10411
|
+
minAgeGte?: number;
|
|
10412
|
+
/**
|
|
10413
|
+
* Gets or sets MaxAgeLTE.
|
|
10414
|
+
*/
|
|
10415
|
+
maxAgeLte?: number;
|
|
10416
|
+
/**
|
|
10417
|
+
* Gets or sets MaxAgeGTE.
|
|
10418
|
+
*/
|
|
10419
|
+
maxAgeGte?: number;
|
|
10420
|
+
/**
|
|
10421
|
+
* Gets or sets PriceTotalGTE.
|
|
10422
|
+
*/
|
|
10423
|
+
priceTotalGte?: number;
|
|
10424
|
+
/**
|
|
10425
|
+
* Gets or sets PriceTotalLTE.
|
|
10426
|
+
*/
|
|
10427
|
+
priceTotalLte?: number;
|
|
10428
|
+
/**
|
|
10429
|
+
* Gets or sets TimeOfDay.
|
|
10430
|
+
*/
|
|
10431
|
+
timeOfDay?: string;
|
|
10432
|
+
/**
|
|
10433
|
+
* Gets or sets DateFrom.
|
|
10434
|
+
*/
|
|
10435
|
+
dateFrom?: string;
|
|
10436
|
+
/**
|
|
10437
|
+
* Gets or sets DateTo.
|
|
10438
|
+
*/
|
|
10439
|
+
dateTo?: string;
|
|
10440
|
+
/**
|
|
10441
|
+
* Gets or sets Gender.
|
|
10442
|
+
*/
|
|
10443
|
+
gender?: Gender;
|
|
10444
|
+
/**
|
|
10445
|
+
* Gets or sets PeriodsOfWeek.
|
|
10446
|
+
*/
|
|
10447
|
+
periodsOfWeek?: PeriodsOfWeek;
|
|
10227
10448
|
/**
|
|
10228
10449
|
* Gets or sets the page number for paged queries.
|
|
10229
10450
|
*/
|
|
@@ -10270,7 +10491,7 @@ declare class GenericActivityService {
|
|
|
10270
10491
|
* @returns GenericActivity Success
|
|
10271
10492
|
* @throws ApiError
|
|
10272
10493
|
*/
|
|
10273
|
-
getListIdName({ wildcard, venueId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10494
|
+
getListIdName({ wildcard, venueId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10274
10495
|
/**
|
|
10275
10496
|
* Gets or sets the wildcard for use in a query search.
|
|
10276
10497
|
*/
|
|
@@ -10303,6 +10524,74 @@ declare class GenericActivityService {
|
|
|
10303
10524
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
10304
10525
|
*/
|
|
10305
10526
|
includeNextOpportunity?: boolean;
|
|
10527
|
+
/**
|
|
10528
|
+
* Gets or sets SearchGeoCenter.
|
|
10529
|
+
*/
|
|
10530
|
+
searchGeoCenter?: string;
|
|
10531
|
+
/**
|
|
10532
|
+
* Gets or sets OpenactiveActivityId.
|
|
10533
|
+
*/
|
|
10534
|
+
openactiveActivityId?: string;
|
|
10535
|
+
/**
|
|
10536
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
10537
|
+
*/
|
|
10538
|
+
networkId?: string;
|
|
10539
|
+
/**
|
|
10540
|
+
* Gets or sets Lat.
|
|
10541
|
+
*/
|
|
10542
|
+
lat?: number;
|
|
10543
|
+
/**
|
|
10544
|
+
* Gets or sets Lng.
|
|
10545
|
+
*/
|
|
10546
|
+
lng?: number;
|
|
10547
|
+
/**
|
|
10548
|
+
* Gets or sets Distance.
|
|
10549
|
+
*/
|
|
10550
|
+
distance?: number;
|
|
10551
|
+
/**
|
|
10552
|
+
* Gets or sets MinAgeLTE.
|
|
10553
|
+
*/
|
|
10554
|
+
minAgeLte?: number;
|
|
10555
|
+
/**
|
|
10556
|
+
* Gets or sets MinAgeGTE.
|
|
10557
|
+
*/
|
|
10558
|
+
minAgeGte?: number;
|
|
10559
|
+
/**
|
|
10560
|
+
* Gets or sets MaxAgeLTE.
|
|
10561
|
+
*/
|
|
10562
|
+
maxAgeLte?: number;
|
|
10563
|
+
/**
|
|
10564
|
+
* Gets or sets MaxAgeGTE.
|
|
10565
|
+
*/
|
|
10566
|
+
maxAgeGte?: number;
|
|
10567
|
+
/**
|
|
10568
|
+
* Gets or sets PriceTotalGTE.
|
|
10569
|
+
*/
|
|
10570
|
+
priceTotalGte?: number;
|
|
10571
|
+
/**
|
|
10572
|
+
* Gets or sets PriceTotalLTE.
|
|
10573
|
+
*/
|
|
10574
|
+
priceTotalLte?: number;
|
|
10575
|
+
/**
|
|
10576
|
+
* Gets or sets TimeOfDay.
|
|
10577
|
+
*/
|
|
10578
|
+
timeOfDay?: string;
|
|
10579
|
+
/**
|
|
10580
|
+
* Gets or sets DateFrom.
|
|
10581
|
+
*/
|
|
10582
|
+
dateFrom?: string;
|
|
10583
|
+
/**
|
|
10584
|
+
* Gets or sets DateTo.
|
|
10585
|
+
*/
|
|
10586
|
+
dateTo?: string;
|
|
10587
|
+
/**
|
|
10588
|
+
* Gets or sets Gender.
|
|
10589
|
+
*/
|
|
10590
|
+
gender?: Gender;
|
|
10591
|
+
/**
|
|
10592
|
+
* Gets or sets PeriodsOfWeek.
|
|
10593
|
+
*/
|
|
10594
|
+
periodsOfWeek?: PeriodsOfWeek;
|
|
10306
10595
|
/**
|
|
10307
10596
|
* Gets or sets the page number for paged queries.
|
|
10308
10597
|
*/
|
|
@@ -18913,6 +19202,158 @@ declare class PublicFacilitiesService {
|
|
|
18913
19202
|
}): CancelablePromise<Array<Facility>>;
|
|
18914
19203
|
}
|
|
18915
19204
|
|
|
19205
|
+
declare class PublicGenericActivityService {
|
|
19206
|
+
readonly httpRequest: BaseHttpRequest;
|
|
19207
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
19208
|
+
/**
|
|
19209
|
+
* GetSessions.
|
|
19210
|
+
* @returns GenericActivityPage Success
|
|
19211
|
+
* @throws ApiError
|
|
19212
|
+
*/
|
|
19213
|
+
getPage({ wildcard, venueId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, searchGeoCenter, openactiveActivityId, networkId, lat, lng, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
19214
|
+
/**
|
|
19215
|
+
* Gets or sets the wildcard for use in a query search.
|
|
19216
|
+
*/
|
|
19217
|
+
wildcard?: string;
|
|
19218
|
+
/**
|
|
19219
|
+
* Gets or sets the queryable Venue Id.
|
|
19220
|
+
*/
|
|
19221
|
+
venueId?: string;
|
|
19222
|
+
/**
|
|
19223
|
+
* Gets or sets the queryable Programme Id.
|
|
19224
|
+
*/
|
|
19225
|
+
programmeId?: string;
|
|
19226
|
+
/**
|
|
19227
|
+
* Gets or sets a value indicating whether return online activities.
|
|
19228
|
+
*/
|
|
19229
|
+
online?: boolean;
|
|
19230
|
+
/**
|
|
19231
|
+
* Gets or sets a value indicating whether to include archived activities.
|
|
19232
|
+
*/
|
|
19233
|
+
archived?: boolean;
|
|
19234
|
+
/**
|
|
19235
|
+
* Gets or sets a value indicating whether to include deleted activities.
|
|
19236
|
+
*/
|
|
19237
|
+
deleted?: boolean;
|
|
19238
|
+
/**
|
|
19239
|
+
* Gets or sets the activity type.
|
|
19240
|
+
*/
|
|
19241
|
+
activityType?: ActivityType;
|
|
19242
|
+
/**
|
|
19243
|
+
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
19244
|
+
*/
|
|
19245
|
+
includeNextOpportunity?: boolean;
|
|
19246
|
+
/**
|
|
19247
|
+
* Gets or sets SearchGeoCenter.
|
|
19248
|
+
*/
|
|
19249
|
+
searchGeoCenter?: string;
|
|
19250
|
+
/**
|
|
19251
|
+
* Gets or sets OpenactiveActivityId.
|
|
19252
|
+
*/
|
|
19253
|
+
openactiveActivityId?: string;
|
|
19254
|
+
/**
|
|
19255
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
19256
|
+
*/
|
|
19257
|
+
networkId?: string;
|
|
19258
|
+
/**
|
|
19259
|
+
* Gets or sets Lat.
|
|
19260
|
+
*/
|
|
19261
|
+
lat?: number;
|
|
19262
|
+
/**
|
|
19263
|
+
* Gets or sets Lng.
|
|
19264
|
+
*/
|
|
19265
|
+
lng?: number;
|
|
19266
|
+
/**
|
|
19267
|
+
* Gets or sets Distance.
|
|
19268
|
+
*/
|
|
19269
|
+
distance?: number;
|
|
19270
|
+
/**
|
|
19271
|
+
* Gets or sets MinAgeLTE.
|
|
19272
|
+
*/
|
|
19273
|
+
minAgeLte?: number;
|
|
19274
|
+
/**
|
|
19275
|
+
* Gets or sets MinAgeGTE.
|
|
19276
|
+
*/
|
|
19277
|
+
minAgeGte?: number;
|
|
19278
|
+
/**
|
|
19279
|
+
* Gets or sets MaxAgeLTE.
|
|
19280
|
+
*/
|
|
19281
|
+
maxAgeLte?: number;
|
|
19282
|
+
/**
|
|
19283
|
+
* Gets or sets MaxAgeGTE.
|
|
19284
|
+
*/
|
|
19285
|
+
maxAgeGte?: number;
|
|
19286
|
+
/**
|
|
19287
|
+
* Gets or sets PriceTotalGTE.
|
|
19288
|
+
*/
|
|
19289
|
+
priceTotalGte?: number;
|
|
19290
|
+
/**
|
|
19291
|
+
* Gets or sets PriceTotalLTE.
|
|
19292
|
+
*/
|
|
19293
|
+
priceTotalLte?: number;
|
|
19294
|
+
/**
|
|
19295
|
+
* Gets or sets TimeOfDay.
|
|
19296
|
+
*/
|
|
19297
|
+
timeOfDay?: string;
|
|
19298
|
+
/**
|
|
19299
|
+
* Gets or sets DateFrom.
|
|
19300
|
+
*/
|
|
19301
|
+
dateFrom?: string;
|
|
19302
|
+
/**
|
|
19303
|
+
* Gets or sets DateTo.
|
|
19304
|
+
*/
|
|
19305
|
+
dateTo?: string;
|
|
19306
|
+
/**
|
|
19307
|
+
* Gets or sets Gender.
|
|
19308
|
+
*/
|
|
19309
|
+
gender?: Gender;
|
|
19310
|
+
/**
|
|
19311
|
+
* Gets or sets PeriodsOfWeek.
|
|
19312
|
+
*/
|
|
19313
|
+
periodsOfWeek?: PeriodsOfWeek;
|
|
19314
|
+
/**
|
|
19315
|
+
* Gets or sets the page number for paged queries.
|
|
19316
|
+
*/
|
|
19317
|
+
pageNumber?: number;
|
|
19318
|
+
/**
|
|
19319
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
19320
|
+
*/
|
|
19321
|
+
take?: number;
|
|
19322
|
+
/**
|
|
19323
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
19324
|
+
*/
|
|
19325
|
+
limitListRequests?: boolean;
|
|
19326
|
+
/**
|
|
19327
|
+
* Gets or sets the Tenant Id.
|
|
19328
|
+
*/
|
|
19329
|
+
tenantId?: string;
|
|
19330
|
+
/**
|
|
19331
|
+
* Gets or sets the Modifed By Id.
|
|
19332
|
+
*/
|
|
19333
|
+
modifiedById?: string;
|
|
19334
|
+
/**
|
|
19335
|
+
* Gets or sets the Modifed By Ids.
|
|
19336
|
+
*/
|
|
19337
|
+
modifiedByIds?: Array<string>;
|
|
19338
|
+
/**
|
|
19339
|
+
* Gets or sets the Date Created greater than equal to.
|
|
19340
|
+
*/
|
|
19341
|
+
dateCreatedGte?: string;
|
|
19342
|
+
/**
|
|
19343
|
+
* Gets or sets the Date Created less than equal to.
|
|
19344
|
+
*/
|
|
19345
|
+
dateCreatedLte?: string;
|
|
19346
|
+
/**
|
|
19347
|
+
* Gets or sets the queryable only is live status.
|
|
19348
|
+
*/
|
|
19349
|
+
isLive?: boolean;
|
|
19350
|
+
/**
|
|
19351
|
+
* Gets or sets the sort order direction.
|
|
19352
|
+
*/
|
|
19353
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
19354
|
+
}): CancelablePromise<GenericActivityPage>;
|
|
19355
|
+
}
|
|
19356
|
+
|
|
18916
19357
|
declare class PublicHealthCheckService {
|
|
18917
19358
|
readonly httpRequest: BaseHttpRequest;
|
|
18918
19359
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -19269,7 +19710,7 @@ declare class PublicNetworksService {
|
|
|
19269
19710
|
* @returns SessionPage Success
|
|
19270
19711
|
* @throws ApiError
|
|
19271
19712
|
*/
|
|
19272
|
-
getSessions({ ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
19713
|
+
getSessions({ ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, lat, lng, placeId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
19273
19714
|
/**
|
|
19274
19715
|
* Gets or sets the queryable session ids.
|
|
19275
19716
|
*/
|
|
@@ -19315,9 +19756,73 @@ declare class PublicNetworksService {
|
|
|
19315
19756
|
*/
|
|
19316
19757
|
openActiveUpdate?: boolean;
|
|
19317
19758
|
/**
|
|
19318
|
-
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
19759
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
19760
|
+
*/
|
|
19761
|
+
networkId?: string;
|
|
19762
|
+
/**
|
|
19763
|
+
* Gets or sets Lat.
|
|
19764
|
+
*/
|
|
19765
|
+
lat?: number;
|
|
19766
|
+
/**
|
|
19767
|
+
* Gets or sets Lng.
|
|
19768
|
+
*/
|
|
19769
|
+
lng?: number;
|
|
19770
|
+
/**
|
|
19771
|
+
* Gets or sets Place_Id.
|
|
19772
|
+
*/
|
|
19773
|
+
placeId?: string;
|
|
19774
|
+
/**
|
|
19775
|
+
* Gets or sets Distance.
|
|
19776
|
+
*/
|
|
19777
|
+
distance?: number;
|
|
19778
|
+
/**
|
|
19779
|
+
* Gets or sets MinAgeLTE.
|
|
19780
|
+
*/
|
|
19781
|
+
minAgeLte?: number;
|
|
19782
|
+
/**
|
|
19783
|
+
* Gets or sets MinAgeGTE.
|
|
19784
|
+
*/
|
|
19785
|
+
minAgeGte?: number;
|
|
19786
|
+
/**
|
|
19787
|
+
* Gets or sets MaxAgeLTE.
|
|
19788
|
+
*/
|
|
19789
|
+
maxAgeLte?: number;
|
|
19790
|
+
/**
|
|
19791
|
+
* Gets or sets MaxAgeGTE.
|
|
19792
|
+
*/
|
|
19793
|
+
maxAgeGte?: number;
|
|
19794
|
+
/**
|
|
19795
|
+
* Gets or sets PriceTotalGTE.
|
|
19796
|
+
*/
|
|
19797
|
+
priceTotalGte?: number;
|
|
19798
|
+
/**
|
|
19799
|
+
* Gets or sets PriceTotalLTE.
|
|
19800
|
+
*/
|
|
19801
|
+
priceTotalLte?: number;
|
|
19802
|
+
/**
|
|
19803
|
+
* Gets or sets TimeOfDay.
|
|
19804
|
+
*/
|
|
19805
|
+
timeOfDay?: string;
|
|
19806
|
+
/**
|
|
19807
|
+
* Gets or sets DateFrom.
|
|
19808
|
+
*/
|
|
19809
|
+
dateFrom?: string;
|
|
19810
|
+
/**
|
|
19811
|
+
* Gets or sets DateTo.
|
|
19812
|
+
*/
|
|
19813
|
+
dateTo?: string;
|
|
19814
|
+
/**
|
|
19815
|
+
* Gets or sets Gender.
|
|
19816
|
+
*/
|
|
19817
|
+
gender?: Gender;
|
|
19818
|
+
/**
|
|
19819
|
+
* Gets or sets PeriodsOfWeek.
|
|
19820
|
+
*/
|
|
19821
|
+
periodsOfWeek?: PeriodsOfWeek;
|
|
19822
|
+
/**
|
|
19823
|
+
* Gets or sets SearchGeoCenter.
|
|
19319
19824
|
*/
|
|
19320
|
-
|
|
19825
|
+
searchGeoCenter?: string;
|
|
19321
19826
|
/**
|
|
19322
19827
|
* Gets or sets the page number for paged queries.
|
|
19323
19828
|
*/
|
|
@@ -19359,6 +19864,17 @@ declare class PublicNetworksService {
|
|
|
19359
19864
|
*/
|
|
19360
19865
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
19361
19866
|
}): CancelablePromise<SessionPage>;
|
|
19867
|
+
/**
|
|
19868
|
+
* GetSessions.
|
|
19869
|
+
* @returns Session Success
|
|
19870
|
+
* @throws ApiError
|
|
19871
|
+
*/
|
|
19872
|
+
getSession({ sessionId, }: {
|
|
19873
|
+
/**
|
|
19874
|
+
* The Reach.Models.SessionSearchParameters model.
|
|
19875
|
+
*/
|
|
19876
|
+
sessionId: string;
|
|
19877
|
+
}): CancelablePromise<Session>;
|
|
19362
19878
|
}
|
|
19363
19879
|
|
|
19364
19880
|
declare class PublicOrdersService {
|
|
@@ -20759,7 +21275,7 @@ declare class PublicSessionsService {
|
|
|
20759
21275
|
* @returns SessionPage Success
|
|
20760
21276
|
* @throws ApiError
|
|
20761
21277
|
*/
|
|
20762
|
-
getPage({ xTenantSubdomain, ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
21278
|
+
getPage({ xTenantSubdomain, ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, lat, lng, placeId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20763
21279
|
xTenantSubdomain?: string;
|
|
20764
21280
|
/**
|
|
20765
21281
|
* Gets or sets the queryable session ids.
|
|
@@ -20809,6 +21325,70 @@ declare class PublicSessionsService {
|
|
|
20809
21325
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
20810
21326
|
*/
|
|
20811
21327
|
networkId?: string;
|
|
21328
|
+
/**
|
|
21329
|
+
* Gets or sets Lat.
|
|
21330
|
+
*/
|
|
21331
|
+
lat?: number;
|
|
21332
|
+
/**
|
|
21333
|
+
* Gets or sets Lng.
|
|
21334
|
+
*/
|
|
21335
|
+
lng?: number;
|
|
21336
|
+
/**
|
|
21337
|
+
* Gets or sets Place_Id.
|
|
21338
|
+
*/
|
|
21339
|
+
placeId?: string;
|
|
21340
|
+
/**
|
|
21341
|
+
* Gets or sets Distance.
|
|
21342
|
+
*/
|
|
21343
|
+
distance?: number;
|
|
21344
|
+
/**
|
|
21345
|
+
* Gets or sets MinAgeLTE.
|
|
21346
|
+
*/
|
|
21347
|
+
minAgeLte?: number;
|
|
21348
|
+
/**
|
|
21349
|
+
* Gets or sets MinAgeGTE.
|
|
21350
|
+
*/
|
|
21351
|
+
minAgeGte?: number;
|
|
21352
|
+
/**
|
|
21353
|
+
* Gets or sets MaxAgeLTE.
|
|
21354
|
+
*/
|
|
21355
|
+
maxAgeLte?: number;
|
|
21356
|
+
/**
|
|
21357
|
+
* Gets or sets MaxAgeGTE.
|
|
21358
|
+
*/
|
|
21359
|
+
maxAgeGte?: number;
|
|
21360
|
+
/**
|
|
21361
|
+
* Gets or sets PriceTotalGTE.
|
|
21362
|
+
*/
|
|
21363
|
+
priceTotalGte?: number;
|
|
21364
|
+
/**
|
|
21365
|
+
* Gets or sets PriceTotalLTE.
|
|
21366
|
+
*/
|
|
21367
|
+
priceTotalLte?: number;
|
|
21368
|
+
/**
|
|
21369
|
+
* Gets or sets TimeOfDay.
|
|
21370
|
+
*/
|
|
21371
|
+
timeOfDay?: string;
|
|
21372
|
+
/**
|
|
21373
|
+
* Gets or sets DateFrom.
|
|
21374
|
+
*/
|
|
21375
|
+
dateFrom?: string;
|
|
21376
|
+
/**
|
|
21377
|
+
* Gets or sets DateTo.
|
|
21378
|
+
*/
|
|
21379
|
+
dateTo?: string;
|
|
21380
|
+
/**
|
|
21381
|
+
* Gets or sets Gender.
|
|
21382
|
+
*/
|
|
21383
|
+
gender?: Gender;
|
|
21384
|
+
/**
|
|
21385
|
+
* Gets or sets PeriodsOfWeek.
|
|
21386
|
+
*/
|
|
21387
|
+
periodsOfWeek?: PeriodsOfWeek;
|
|
21388
|
+
/**
|
|
21389
|
+
* Gets or sets SearchGeoCenter.
|
|
21390
|
+
*/
|
|
21391
|
+
searchGeoCenter?: string;
|
|
20812
21392
|
/**
|
|
20813
21393
|
* Gets or sets the page number for paged queries.
|
|
20814
21394
|
*/
|
|
@@ -21009,7 +21589,7 @@ declare class PublicSessionsService {
|
|
|
21009
21589
|
* @returns boolean Success
|
|
21010
21590
|
* @throws ApiError
|
|
21011
21591
|
*/
|
|
21012
|
-
exists({ xTenantSubdomain, ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
21592
|
+
exists({ xTenantSubdomain, ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, lat, lng, placeId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
21013
21593
|
/**
|
|
21014
21594
|
* The tenants subdomain.
|
|
21015
21595
|
*/
|
|
@@ -21062,6 +21642,70 @@ declare class PublicSessionsService {
|
|
|
21062
21642
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
21063
21643
|
*/
|
|
21064
21644
|
networkId?: string;
|
|
21645
|
+
/**
|
|
21646
|
+
* Gets or sets Lat.
|
|
21647
|
+
*/
|
|
21648
|
+
lat?: number;
|
|
21649
|
+
/**
|
|
21650
|
+
* Gets or sets Lng.
|
|
21651
|
+
*/
|
|
21652
|
+
lng?: number;
|
|
21653
|
+
/**
|
|
21654
|
+
* Gets or sets Place_Id.
|
|
21655
|
+
*/
|
|
21656
|
+
placeId?: string;
|
|
21657
|
+
/**
|
|
21658
|
+
* Gets or sets Distance.
|
|
21659
|
+
*/
|
|
21660
|
+
distance?: number;
|
|
21661
|
+
/**
|
|
21662
|
+
* Gets or sets MinAgeLTE.
|
|
21663
|
+
*/
|
|
21664
|
+
minAgeLte?: number;
|
|
21665
|
+
/**
|
|
21666
|
+
* Gets or sets MinAgeGTE.
|
|
21667
|
+
*/
|
|
21668
|
+
minAgeGte?: number;
|
|
21669
|
+
/**
|
|
21670
|
+
* Gets or sets MaxAgeLTE.
|
|
21671
|
+
*/
|
|
21672
|
+
maxAgeLte?: number;
|
|
21673
|
+
/**
|
|
21674
|
+
* Gets or sets MaxAgeGTE.
|
|
21675
|
+
*/
|
|
21676
|
+
maxAgeGte?: number;
|
|
21677
|
+
/**
|
|
21678
|
+
* Gets or sets PriceTotalGTE.
|
|
21679
|
+
*/
|
|
21680
|
+
priceTotalGte?: number;
|
|
21681
|
+
/**
|
|
21682
|
+
* Gets or sets PriceTotalLTE.
|
|
21683
|
+
*/
|
|
21684
|
+
priceTotalLte?: number;
|
|
21685
|
+
/**
|
|
21686
|
+
* Gets or sets TimeOfDay.
|
|
21687
|
+
*/
|
|
21688
|
+
timeOfDay?: string;
|
|
21689
|
+
/**
|
|
21690
|
+
* Gets or sets DateFrom.
|
|
21691
|
+
*/
|
|
21692
|
+
dateFrom?: string;
|
|
21693
|
+
/**
|
|
21694
|
+
* Gets or sets DateTo.
|
|
21695
|
+
*/
|
|
21696
|
+
dateTo?: string;
|
|
21697
|
+
/**
|
|
21698
|
+
* Gets or sets Gender.
|
|
21699
|
+
*/
|
|
21700
|
+
gender?: Gender;
|
|
21701
|
+
/**
|
|
21702
|
+
* Gets or sets PeriodsOfWeek.
|
|
21703
|
+
*/
|
|
21704
|
+
periodsOfWeek?: PeriodsOfWeek;
|
|
21705
|
+
/**
|
|
21706
|
+
* Gets or sets SearchGeoCenter.
|
|
21707
|
+
*/
|
|
21708
|
+
searchGeoCenter?: string;
|
|
21065
21709
|
/**
|
|
21066
21710
|
* Gets or sets the page number for paged queries.
|
|
21067
21711
|
*/
|
|
@@ -22514,6 +23158,14 @@ type Survey = {
|
|
|
22514
23158
|
*/
|
|
22515
23159
|
archived?: boolean | null;
|
|
22516
23160
|
responseMode?: SurveyResponseMode;
|
|
23161
|
+
/**
|
|
23162
|
+
* Gets or sets the ResponsesCount.
|
|
23163
|
+
*/
|
|
23164
|
+
responsesCount?: number;
|
|
23165
|
+
/**
|
|
23166
|
+
* Gets or sets the LastResponseDate.
|
|
23167
|
+
*/
|
|
23168
|
+
lastResponseDate?: string;
|
|
22517
23169
|
/**
|
|
22518
23170
|
* Gets or sets the surveys questions.
|
|
22519
23171
|
*/
|
|
@@ -22665,7 +23317,7 @@ declare class PublicSurveysService {
|
|
|
22665
23317
|
* @returns SurveyPage Success
|
|
22666
23318
|
* @throws ApiError
|
|
22667
23319
|
*/
|
|
22668
|
-
getPage({ xTenantSubdomain, id, archived, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
23320
|
+
getPage({ xTenantSubdomain, id, archived, includeSummary, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22669
23321
|
xTenantSubdomain?: string;
|
|
22670
23322
|
/**
|
|
22671
23323
|
* Gets or sets the queryable Survey Id.
|
|
@@ -22675,6 +23327,10 @@ declare class PublicSurveysService {
|
|
|
22675
23327
|
* Gets or sets the queryable archived value.
|
|
22676
23328
|
*/
|
|
22677
23329
|
archived?: boolean;
|
|
23330
|
+
/**
|
|
23331
|
+
* Gets or sets if responsesCount and lastResponseDate should be included.
|
|
23332
|
+
*/
|
|
23333
|
+
includeSummary?: boolean;
|
|
22678
23334
|
/**
|
|
22679
23335
|
* Gets or sets the page number for paged queries.
|
|
22680
23336
|
*/
|
|
@@ -22751,7 +23407,7 @@ declare class PublicSurveysService {
|
|
|
22751
23407
|
* @returns boolean Success
|
|
22752
23408
|
* @throws ApiError
|
|
22753
23409
|
*/
|
|
22754
|
-
exists({ xTenantSubdomain, id, archived, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
23410
|
+
exists({ xTenantSubdomain, id, archived, includeSummary, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22755
23411
|
/**
|
|
22756
23412
|
* The tenants subdomain.
|
|
22757
23413
|
*/
|
|
@@ -22764,6 +23420,10 @@ declare class PublicSurveysService {
|
|
|
22764
23420
|
* Gets or sets the queryable archived value.
|
|
22765
23421
|
*/
|
|
22766
23422
|
archived?: boolean;
|
|
23423
|
+
/**
|
|
23424
|
+
* Gets or sets if responsesCount and lastResponseDate should be included.
|
|
23425
|
+
*/
|
|
23426
|
+
includeSummary?: boolean;
|
|
22767
23427
|
/**
|
|
22768
23428
|
* Gets or sets the page number for paged queries.
|
|
22769
23429
|
*/
|
|
@@ -26457,7 +27117,7 @@ declare class SessionsService {
|
|
|
26457
27117
|
* @returns boolean Success
|
|
26458
27118
|
* @throws ApiError
|
|
26459
27119
|
*/
|
|
26460
|
-
exists({ ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27120
|
+
exists({ ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, lat, lng, placeId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
26461
27121
|
/**
|
|
26462
27122
|
* Gets or sets the queryable session ids.
|
|
26463
27123
|
*/
|
|
@@ -26506,6 +27166,70 @@ declare class SessionsService {
|
|
|
26506
27166
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
26507
27167
|
*/
|
|
26508
27168
|
networkId?: string;
|
|
27169
|
+
/**
|
|
27170
|
+
* Gets or sets Lat.
|
|
27171
|
+
*/
|
|
27172
|
+
lat?: number;
|
|
27173
|
+
/**
|
|
27174
|
+
* Gets or sets Lng.
|
|
27175
|
+
*/
|
|
27176
|
+
lng?: number;
|
|
27177
|
+
/**
|
|
27178
|
+
* Gets or sets Place_Id.
|
|
27179
|
+
*/
|
|
27180
|
+
placeId?: string;
|
|
27181
|
+
/**
|
|
27182
|
+
* Gets or sets Distance.
|
|
27183
|
+
*/
|
|
27184
|
+
distance?: number;
|
|
27185
|
+
/**
|
|
27186
|
+
* Gets or sets MinAgeLTE.
|
|
27187
|
+
*/
|
|
27188
|
+
minAgeLte?: number;
|
|
27189
|
+
/**
|
|
27190
|
+
* Gets or sets MinAgeGTE.
|
|
27191
|
+
*/
|
|
27192
|
+
minAgeGte?: number;
|
|
27193
|
+
/**
|
|
27194
|
+
* Gets or sets MaxAgeLTE.
|
|
27195
|
+
*/
|
|
27196
|
+
maxAgeLte?: number;
|
|
27197
|
+
/**
|
|
27198
|
+
* Gets or sets MaxAgeGTE.
|
|
27199
|
+
*/
|
|
27200
|
+
maxAgeGte?: number;
|
|
27201
|
+
/**
|
|
27202
|
+
* Gets or sets PriceTotalGTE.
|
|
27203
|
+
*/
|
|
27204
|
+
priceTotalGte?: number;
|
|
27205
|
+
/**
|
|
27206
|
+
* Gets or sets PriceTotalLTE.
|
|
27207
|
+
*/
|
|
27208
|
+
priceTotalLte?: number;
|
|
27209
|
+
/**
|
|
27210
|
+
* Gets or sets TimeOfDay.
|
|
27211
|
+
*/
|
|
27212
|
+
timeOfDay?: string;
|
|
27213
|
+
/**
|
|
27214
|
+
* Gets or sets DateFrom.
|
|
27215
|
+
*/
|
|
27216
|
+
dateFrom?: string;
|
|
27217
|
+
/**
|
|
27218
|
+
* Gets or sets DateTo.
|
|
27219
|
+
*/
|
|
27220
|
+
dateTo?: string;
|
|
27221
|
+
/**
|
|
27222
|
+
* Gets or sets Gender.
|
|
27223
|
+
*/
|
|
27224
|
+
gender?: Gender;
|
|
27225
|
+
/**
|
|
27226
|
+
* Gets or sets PeriodsOfWeek.
|
|
27227
|
+
*/
|
|
27228
|
+
periodsOfWeek?: PeriodsOfWeek;
|
|
27229
|
+
/**
|
|
27230
|
+
* Gets or sets SearchGeoCenter.
|
|
27231
|
+
*/
|
|
27232
|
+
searchGeoCenter?: string;
|
|
26509
27233
|
/**
|
|
26510
27234
|
* Gets or sets the page number for paged queries.
|
|
26511
27235
|
*/
|
|
@@ -26552,7 +27276,7 @@ declare class SessionsService {
|
|
|
26552
27276
|
* @returns SessionPage Success
|
|
26553
27277
|
* @throws ApiError
|
|
26554
27278
|
*/
|
|
26555
|
-
getPage({ ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27279
|
+
getPage({ ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, lat, lng, placeId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
26556
27280
|
/**
|
|
26557
27281
|
* Gets or sets the queryable session ids.
|
|
26558
27282
|
*/
|
|
@@ -26601,6 +27325,70 @@ declare class SessionsService {
|
|
|
26601
27325
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
26602
27326
|
*/
|
|
26603
27327
|
networkId?: string;
|
|
27328
|
+
/**
|
|
27329
|
+
* Gets or sets Lat.
|
|
27330
|
+
*/
|
|
27331
|
+
lat?: number;
|
|
27332
|
+
/**
|
|
27333
|
+
* Gets or sets Lng.
|
|
27334
|
+
*/
|
|
27335
|
+
lng?: number;
|
|
27336
|
+
/**
|
|
27337
|
+
* Gets or sets Place_Id.
|
|
27338
|
+
*/
|
|
27339
|
+
placeId?: string;
|
|
27340
|
+
/**
|
|
27341
|
+
* Gets or sets Distance.
|
|
27342
|
+
*/
|
|
27343
|
+
distance?: number;
|
|
27344
|
+
/**
|
|
27345
|
+
* Gets or sets MinAgeLTE.
|
|
27346
|
+
*/
|
|
27347
|
+
minAgeLte?: number;
|
|
27348
|
+
/**
|
|
27349
|
+
* Gets or sets MinAgeGTE.
|
|
27350
|
+
*/
|
|
27351
|
+
minAgeGte?: number;
|
|
27352
|
+
/**
|
|
27353
|
+
* Gets or sets MaxAgeLTE.
|
|
27354
|
+
*/
|
|
27355
|
+
maxAgeLte?: number;
|
|
27356
|
+
/**
|
|
27357
|
+
* Gets or sets MaxAgeGTE.
|
|
27358
|
+
*/
|
|
27359
|
+
maxAgeGte?: number;
|
|
27360
|
+
/**
|
|
27361
|
+
* Gets or sets PriceTotalGTE.
|
|
27362
|
+
*/
|
|
27363
|
+
priceTotalGte?: number;
|
|
27364
|
+
/**
|
|
27365
|
+
* Gets or sets PriceTotalLTE.
|
|
27366
|
+
*/
|
|
27367
|
+
priceTotalLte?: number;
|
|
27368
|
+
/**
|
|
27369
|
+
* Gets or sets TimeOfDay.
|
|
27370
|
+
*/
|
|
27371
|
+
timeOfDay?: string;
|
|
27372
|
+
/**
|
|
27373
|
+
* Gets or sets DateFrom.
|
|
27374
|
+
*/
|
|
27375
|
+
dateFrom?: string;
|
|
27376
|
+
/**
|
|
27377
|
+
* Gets or sets DateTo.
|
|
27378
|
+
*/
|
|
27379
|
+
dateTo?: string;
|
|
27380
|
+
/**
|
|
27381
|
+
* Gets or sets Gender.
|
|
27382
|
+
*/
|
|
27383
|
+
gender?: Gender;
|
|
27384
|
+
/**
|
|
27385
|
+
* Gets or sets PeriodsOfWeek.
|
|
27386
|
+
*/
|
|
27387
|
+
periodsOfWeek?: PeriodsOfWeek;
|
|
27388
|
+
/**
|
|
27389
|
+
* Gets or sets SearchGeoCenter.
|
|
27390
|
+
*/
|
|
27391
|
+
searchGeoCenter?: string;
|
|
26604
27392
|
/**
|
|
26605
27393
|
* Gets or sets the page number for paged queries.
|
|
26606
27394
|
*/
|
|
@@ -26658,7 +27446,7 @@ declare class SessionsService {
|
|
|
26658
27446
|
* @returns Session Success
|
|
26659
27447
|
* @throws ApiError
|
|
26660
27448
|
*/
|
|
26661
|
-
getListWithoutReferences({ ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27449
|
+
getListWithoutReferences({ ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, lat, lng, placeId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
26662
27450
|
/**
|
|
26663
27451
|
* Gets or sets the queryable session ids.
|
|
26664
27452
|
*/
|
|
@@ -26707,6 +27495,70 @@ declare class SessionsService {
|
|
|
26707
27495
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
26708
27496
|
*/
|
|
26709
27497
|
networkId?: string;
|
|
27498
|
+
/**
|
|
27499
|
+
* Gets or sets Lat.
|
|
27500
|
+
*/
|
|
27501
|
+
lat?: number;
|
|
27502
|
+
/**
|
|
27503
|
+
* Gets or sets Lng.
|
|
27504
|
+
*/
|
|
27505
|
+
lng?: number;
|
|
27506
|
+
/**
|
|
27507
|
+
* Gets or sets Place_Id.
|
|
27508
|
+
*/
|
|
27509
|
+
placeId?: string;
|
|
27510
|
+
/**
|
|
27511
|
+
* Gets or sets Distance.
|
|
27512
|
+
*/
|
|
27513
|
+
distance?: number;
|
|
27514
|
+
/**
|
|
27515
|
+
* Gets or sets MinAgeLTE.
|
|
27516
|
+
*/
|
|
27517
|
+
minAgeLte?: number;
|
|
27518
|
+
/**
|
|
27519
|
+
* Gets or sets MinAgeGTE.
|
|
27520
|
+
*/
|
|
27521
|
+
minAgeGte?: number;
|
|
27522
|
+
/**
|
|
27523
|
+
* Gets or sets MaxAgeLTE.
|
|
27524
|
+
*/
|
|
27525
|
+
maxAgeLte?: number;
|
|
27526
|
+
/**
|
|
27527
|
+
* Gets or sets MaxAgeGTE.
|
|
27528
|
+
*/
|
|
27529
|
+
maxAgeGte?: number;
|
|
27530
|
+
/**
|
|
27531
|
+
* Gets or sets PriceTotalGTE.
|
|
27532
|
+
*/
|
|
27533
|
+
priceTotalGte?: number;
|
|
27534
|
+
/**
|
|
27535
|
+
* Gets or sets PriceTotalLTE.
|
|
27536
|
+
*/
|
|
27537
|
+
priceTotalLte?: number;
|
|
27538
|
+
/**
|
|
27539
|
+
* Gets or sets TimeOfDay.
|
|
27540
|
+
*/
|
|
27541
|
+
timeOfDay?: string;
|
|
27542
|
+
/**
|
|
27543
|
+
* Gets or sets DateFrom.
|
|
27544
|
+
*/
|
|
27545
|
+
dateFrom?: string;
|
|
27546
|
+
/**
|
|
27547
|
+
* Gets or sets DateTo.
|
|
27548
|
+
*/
|
|
27549
|
+
dateTo?: string;
|
|
27550
|
+
/**
|
|
27551
|
+
* Gets or sets Gender.
|
|
27552
|
+
*/
|
|
27553
|
+
gender?: Gender;
|
|
27554
|
+
/**
|
|
27555
|
+
* Gets or sets PeriodsOfWeek.
|
|
27556
|
+
*/
|
|
27557
|
+
periodsOfWeek?: PeriodsOfWeek;
|
|
27558
|
+
/**
|
|
27559
|
+
* Gets or sets SearchGeoCenter.
|
|
27560
|
+
*/
|
|
27561
|
+
searchGeoCenter?: string;
|
|
26710
27562
|
/**
|
|
26711
27563
|
* Gets or sets the page number for paged queries.
|
|
26712
27564
|
*/
|
|
@@ -26753,7 +27605,7 @@ declare class SessionsService {
|
|
|
26753
27605
|
* @returns Session Success
|
|
26754
27606
|
* @throws ApiError
|
|
26755
27607
|
*/
|
|
26756
|
-
getListIdName({ ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27608
|
+
getListIdName({ ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, lat, lng, placeId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
26757
27609
|
/**
|
|
26758
27610
|
* Gets or sets the queryable session ids.
|
|
26759
27611
|
*/
|
|
@@ -26802,6 +27654,70 @@ declare class SessionsService {
|
|
|
26802
27654
|
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
26803
27655
|
*/
|
|
26804
27656
|
networkId?: string;
|
|
27657
|
+
/**
|
|
27658
|
+
* Gets or sets Lat.
|
|
27659
|
+
*/
|
|
27660
|
+
lat?: number;
|
|
27661
|
+
/**
|
|
27662
|
+
* Gets or sets Lng.
|
|
27663
|
+
*/
|
|
27664
|
+
lng?: number;
|
|
27665
|
+
/**
|
|
27666
|
+
* Gets or sets Place_Id.
|
|
27667
|
+
*/
|
|
27668
|
+
placeId?: string;
|
|
27669
|
+
/**
|
|
27670
|
+
* Gets or sets Distance.
|
|
27671
|
+
*/
|
|
27672
|
+
distance?: number;
|
|
27673
|
+
/**
|
|
27674
|
+
* Gets or sets MinAgeLTE.
|
|
27675
|
+
*/
|
|
27676
|
+
minAgeLte?: number;
|
|
27677
|
+
/**
|
|
27678
|
+
* Gets or sets MinAgeGTE.
|
|
27679
|
+
*/
|
|
27680
|
+
minAgeGte?: number;
|
|
27681
|
+
/**
|
|
27682
|
+
* Gets or sets MaxAgeLTE.
|
|
27683
|
+
*/
|
|
27684
|
+
maxAgeLte?: number;
|
|
27685
|
+
/**
|
|
27686
|
+
* Gets or sets MaxAgeGTE.
|
|
27687
|
+
*/
|
|
27688
|
+
maxAgeGte?: number;
|
|
27689
|
+
/**
|
|
27690
|
+
* Gets or sets PriceTotalGTE.
|
|
27691
|
+
*/
|
|
27692
|
+
priceTotalGte?: number;
|
|
27693
|
+
/**
|
|
27694
|
+
* Gets or sets PriceTotalLTE.
|
|
27695
|
+
*/
|
|
27696
|
+
priceTotalLte?: number;
|
|
27697
|
+
/**
|
|
27698
|
+
* Gets or sets TimeOfDay.
|
|
27699
|
+
*/
|
|
27700
|
+
timeOfDay?: string;
|
|
27701
|
+
/**
|
|
27702
|
+
* Gets or sets DateFrom.
|
|
27703
|
+
*/
|
|
27704
|
+
dateFrom?: string;
|
|
27705
|
+
/**
|
|
27706
|
+
* Gets or sets DateTo.
|
|
27707
|
+
*/
|
|
27708
|
+
dateTo?: string;
|
|
27709
|
+
/**
|
|
27710
|
+
* Gets or sets Gender.
|
|
27711
|
+
*/
|
|
27712
|
+
gender?: Gender;
|
|
27713
|
+
/**
|
|
27714
|
+
* Gets or sets PeriodsOfWeek.
|
|
27715
|
+
*/
|
|
27716
|
+
periodsOfWeek?: PeriodsOfWeek;
|
|
27717
|
+
/**
|
|
27718
|
+
* Gets or sets SearchGeoCenter.
|
|
27719
|
+
*/
|
|
27720
|
+
searchGeoCenter?: string;
|
|
26805
27721
|
/**
|
|
26806
27722
|
* Gets or sets the page number for paged queries.
|
|
26807
27723
|
*/
|
|
@@ -31077,7 +31993,7 @@ declare class SurveysService {
|
|
|
31077
31993
|
* @returns boolean Success
|
|
31078
31994
|
* @throws ApiError
|
|
31079
31995
|
*/
|
|
31080
|
-
exists({ id, archived, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
31996
|
+
exists({ id, archived, includeSummary, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
31081
31997
|
/**
|
|
31082
31998
|
* Gets or sets the queryable Survey Id.
|
|
31083
31999
|
*/
|
|
@@ -31086,6 +32002,10 @@ declare class SurveysService {
|
|
|
31086
32002
|
* Gets or sets the queryable archived value.
|
|
31087
32003
|
*/
|
|
31088
32004
|
archived?: boolean;
|
|
32005
|
+
/**
|
|
32006
|
+
* Gets or sets if responsesCount and lastResponseDate should be included.
|
|
32007
|
+
*/
|
|
32008
|
+
includeSummary?: boolean;
|
|
31089
32009
|
/**
|
|
31090
32010
|
* Gets or sets the page number for paged queries.
|
|
31091
32011
|
*/
|
|
@@ -31132,7 +32052,7 @@ declare class SurveysService {
|
|
|
31132
32052
|
* @returns SurveyPage Success
|
|
31133
32053
|
* @throws ApiError
|
|
31134
32054
|
*/
|
|
31135
|
-
getPage({ id, archived, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32055
|
+
getPage({ id, archived, includeSummary, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
31136
32056
|
/**
|
|
31137
32057
|
* Gets or sets the queryable Survey Id.
|
|
31138
32058
|
*/
|
|
@@ -31141,6 +32061,10 @@ declare class SurveysService {
|
|
|
31141
32061
|
* Gets or sets the queryable archived value.
|
|
31142
32062
|
*/
|
|
31143
32063
|
archived?: boolean;
|
|
32064
|
+
/**
|
|
32065
|
+
* Gets or sets if responsesCount and lastResponseDate should be included.
|
|
32066
|
+
*/
|
|
32067
|
+
includeSummary?: boolean;
|
|
31144
32068
|
/**
|
|
31145
32069
|
* Gets or sets the page number for paged queries.
|
|
31146
32070
|
*/
|
|
@@ -31198,7 +32122,7 @@ declare class SurveysService {
|
|
|
31198
32122
|
* @returns Survey Success
|
|
31199
32123
|
* @throws ApiError
|
|
31200
32124
|
*/
|
|
31201
|
-
getListWithoutReferences({ id, archived, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32125
|
+
getListWithoutReferences({ id, archived, includeSummary, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
31202
32126
|
/**
|
|
31203
32127
|
* Gets or sets the queryable Survey Id.
|
|
31204
32128
|
*/
|
|
@@ -31207,6 +32131,10 @@ declare class SurveysService {
|
|
|
31207
32131
|
* Gets or sets the queryable archived value.
|
|
31208
32132
|
*/
|
|
31209
32133
|
archived?: boolean;
|
|
32134
|
+
/**
|
|
32135
|
+
* Gets or sets if responsesCount and lastResponseDate should be included.
|
|
32136
|
+
*/
|
|
32137
|
+
includeSummary?: boolean;
|
|
31210
32138
|
/**
|
|
31211
32139
|
* Gets or sets the page number for paged queries.
|
|
31212
32140
|
*/
|
|
@@ -31253,7 +32181,7 @@ declare class SurveysService {
|
|
|
31253
32181
|
* @returns Survey Success
|
|
31254
32182
|
* @throws ApiError
|
|
31255
32183
|
*/
|
|
31256
|
-
getListIdName({ id, archived, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
32184
|
+
getListIdName({ id, archived, includeSummary, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
31257
32185
|
/**
|
|
31258
32186
|
* Gets or sets the queryable Survey Id.
|
|
31259
32187
|
*/
|
|
@@ -31262,6 +32190,10 @@ declare class SurveysService {
|
|
|
31262
32190
|
* Gets or sets the queryable archived value.
|
|
31263
32191
|
*/
|
|
31264
32192
|
archived?: boolean;
|
|
32193
|
+
/**
|
|
32194
|
+
* Gets or sets if responsesCount and lastResponseDate should be included.
|
|
32195
|
+
*/
|
|
32196
|
+
includeSummary?: boolean;
|
|
31265
32197
|
/**
|
|
31266
32198
|
* Gets or sets the page number for paged queries.
|
|
31267
32199
|
*/
|
|
@@ -37147,6 +38079,7 @@ declare class ApiClient {
|
|
|
37147
38079
|
readonly publicCourses: PublicCoursesService;
|
|
37148
38080
|
readonly publicCustomers: PublicCustomersService;
|
|
37149
38081
|
readonly publicFacilities: PublicFacilitiesService;
|
|
38082
|
+
readonly publicGenericActivity: PublicGenericActivityService;
|
|
37150
38083
|
readonly publicHealthCheck: PublicHealthCheckService;
|
|
37151
38084
|
readonly publicLeasing: PublicLeasingService;
|
|
37152
38085
|
readonly publicNetworks: PublicNetworksService;
|
|
@@ -37323,4 +38256,4 @@ type ValidationResultModel = {
|
|
|
37323
38256
|
readonly errors?: Array<ValidationError> | null;
|
|
37324
38257
|
};
|
|
37325
38258
|
|
|
37326
|
-
export { Activity, ActivityService, ActivityType, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityPatch, GenericActivityPost, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImagePage, ImagePatch, ImagePost, 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, OpportunityType, Order, OrderEmailCustomerPatch, OrderItem, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, 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, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, 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, 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, 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, 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, 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, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityService };
|
|
38259
|
+
export { Activity, ActivityService, ActivityType, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityPatch, GenericActivityPost, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImagePage, ImagePatch, ImagePost, 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, OpportunityType, Order, OrderEmailCustomerPatch, OrderItem, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, 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, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, 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, 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, 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, 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, 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, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityService };
|