reach-api-sdk 1.0.54 → 1.0.55
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 +1073 -51
- package/dist/reach-sdk.js +883 -1
- package/package.json +1 -1
- package/src/apiClient.ts +9 -0
- package/src/definition/swagger.yaml +3883 -836
- package/src/index.ts +16 -0
- package/src/models/Course.ts +23 -22
- package/src/models/ProgrammePatch.ts +12 -0
- package/src/models/Session.ts +19 -18
- package/src/models/SessionType.ts +1 -1
- package/src/models/Template.ts +47 -0
- package/src/models/TemplateDetail.ts +56 -0
- package/src/models/TemplateDetailPage.ts +12 -0
- package/src/models/TemplateDetailPatch.ts +30 -0
- package/src/models/TemplateDetailPost.ts +26 -0
- package/src/models/TemplateFromPost.ts +18 -0
- package/src/models/TemplateOffer.ts +62 -0
- package/src/models/TemplateOfferPage.ts +12 -0
- package/src/models/TemplateOfferPatch.ts +18 -0
- package/src/models/TemplateOfferPost.ts +14 -0
- package/src/models/TemplatePage.ts +12 -0
- package/src/models/TemplatePatch.ts +26 -0
- package/src/models/TemplatePost.ts +25 -0
- package/src/services/GenericActivityService.ts +35 -0
- package/src/services/TemplateDetailsService.ts +470 -0
- package/src/services/TemplateOffersService.ts +470 -0
- package/src/services/TemplatesService.ts +470 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -1312,6 +1312,15 @@ declare enum CustomerCancellationOption {
|
|
|
1312
1312
|
UNDETERMINED = "Undetermined"
|
|
1313
1313
|
}
|
|
1314
1314
|
|
|
1315
|
+
/**
|
|
1316
|
+
* The activity type.
|
|
1317
|
+
*/
|
|
1318
|
+
declare enum ActivityType {
|
|
1319
|
+
FACILITY = "Facility",
|
|
1320
|
+
SESSION = "Session",
|
|
1321
|
+
COURSE = "Course"
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1315
1324
|
/**
|
|
1316
1325
|
* The Opportunity booking status, indicating whether the opportunity has an active booking or has been attended.
|
|
1317
1326
|
*/
|
|
@@ -2285,7 +2294,7 @@ type ScheduledSession = {
|
|
|
2285
2294
|
};
|
|
2286
2295
|
|
|
2287
2296
|
/**
|
|
2288
|
-
* The
|
|
2297
|
+
* The Session Type.
|
|
2289
2298
|
*/
|
|
2290
2299
|
declare enum SessionType {
|
|
2291
2300
|
IN_PERSON = "InPerson",
|
|
@@ -2374,9 +2383,26 @@ type Session = {
|
|
|
2374
2383
|
*/
|
|
2375
2384
|
isLive: boolean;
|
|
2376
2385
|
/**
|
|
2377
|
-
* Gets or sets the
|
|
2386
|
+
* Gets or sets the activity venue id.
|
|
2378
2387
|
*/
|
|
2379
2388
|
venueId?: string | null;
|
|
2389
|
+
/**
|
|
2390
|
+
* Gets or sets the session name.
|
|
2391
|
+
*/
|
|
2392
|
+
name: string;
|
|
2393
|
+
/**
|
|
2394
|
+
* Gets or sets the session description.
|
|
2395
|
+
*/
|
|
2396
|
+
description: string;
|
|
2397
|
+
/**
|
|
2398
|
+
* Gets or sets the session image url.
|
|
2399
|
+
*/
|
|
2400
|
+
imageUrl: string;
|
|
2401
|
+
/**
|
|
2402
|
+
* Gets or sets the courses offers.
|
|
2403
|
+
*/
|
|
2404
|
+
offers?: Array<Offer> | null;
|
|
2405
|
+
activityType?: ActivityType;
|
|
2380
2406
|
/**
|
|
2381
2407
|
* Gets or sets the session activity id.
|
|
2382
2408
|
*/
|
|
@@ -2394,19 +2420,6 @@ type Session = {
|
|
|
2394
2420
|
*/
|
|
2395
2421
|
postCompletionSurveyId?: string | null;
|
|
2396
2422
|
sessionType?: SessionType;
|
|
2397
|
-
/**
|
|
2398
|
-
* Gets or sets the session name.
|
|
2399
|
-
*/
|
|
2400
|
-
name: string;
|
|
2401
|
-
/**
|
|
2402
|
-
* Gets or sets the session description.
|
|
2403
|
-
*/
|
|
2404
|
-
description: string;
|
|
2405
|
-
/**
|
|
2406
|
-
* Gets or sets the session image url.
|
|
2407
|
-
* @deprecated
|
|
2408
|
-
*/
|
|
2409
|
-
imageUrl: string;
|
|
2410
2423
|
/**
|
|
2411
2424
|
* Gets or sets the openactive activity Id.
|
|
2412
2425
|
*/
|
|
@@ -2521,10 +2534,6 @@ type Session = {
|
|
|
2521
2534
|
* Gets or sets the venues referenced images.
|
|
2522
2535
|
*/
|
|
2523
2536
|
images?: Array<Image> | null;
|
|
2524
|
-
/**
|
|
2525
|
-
* Gets or sets the venues referenced images.
|
|
2526
|
-
*/
|
|
2527
|
-
offers?: Array<Offer> | null;
|
|
2528
2537
|
/**
|
|
2529
2538
|
* Gets or sets the customers on the waitlist.
|
|
2530
2539
|
*/
|
|
@@ -3496,7 +3505,7 @@ declare enum CourseStatus {
|
|
|
3496
3505
|
}
|
|
3497
3506
|
|
|
3498
3507
|
/**
|
|
3499
|
-
* Represents a Reach.Models.Course within a
|
|
3508
|
+
* Represents a Reach.Models.Course within a venue, for example, a course of golf lessons between two dates.
|
|
3500
3509
|
*/
|
|
3501
3510
|
type Course = {
|
|
3502
3511
|
/**
|
|
@@ -3524,13 +3533,30 @@ type Course = {
|
|
|
3524
3533
|
*/
|
|
3525
3534
|
isLive: boolean;
|
|
3526
3535
|
/**
|
|
3527
|
-
* Gets or sets the
|
|
3536
|
+
* Gets or sets the activity venue id.
|
|
3528
3537
|
*/
|
|
3529
|
-
|
|
3538
|
+
venueId?: string | null;
|
|
3530
3539
|
/**
|
|
3531
|
-
* Gets or sets the
|
|
3540
|
+
* Gets or sets the session name.
|
|
3532
3541
|
*/
|
|
3533
|
-
|
|
3542
|
+
name: string;
|
|
3543
|
+
/**
|
|
3544
|
+
* Gets or sets the session description.
|
|
3545
|
+
*/
|
|
3546
|
+
description: string;
|
|
3547
|
+
/**
|
|
3548
|
+
* Gets or sets the session image url.
|
|
3549
|
+
*/
|
|
3550
|
+
imageUrl: string;
|
|
3551
|
+
/**
|
|
3552
|
+
* Gets or sets the courses offers.
|
|
3553
|
+
*/
|
|
3554
|
+
offers?: Array<Offer> | null;
|
|
3555
|
+
activityType?: ActivityType;
|
|
3556
|
+
/**
|
|
3557
|
+
* Gets or sets the course duration, added to satisfy interface but is not applicable to courses.
|
|
3558
|
+
*/
|
|
3559
|
+
durationMinutes?: number;
|
|
3534
3560
|
/**
|
|
3535
3561
|
* Gets or sets the course activity id.
|
|
3536
3562
|
*/
|
|
@@ -3547,19 +3573,6 @@ type Course = {
|
|
|
3547
3573
|
* Gets or sets the course post completion survey id.
|
|
3548
3574
|
*/
|
|
3549
3575
|
postCompletionSurveyId?: string | null;
|
|
3550
|
-
/**
|
|
3551
|
-
* Gets or sets the course name.
|
|
3552
|
-
*/
|
|
3553
|
-
name?: string | null;
|
|
3554
|
-
/**
|
|
3555
|
-
* Gets or sets the course description.
|
|
3556
|
-
*/
|
|
3557
|
-
description?: string | null;
|
|
3558
|
-
/**
|
|
3559
|
-
* Gets or sets the course image url.
|
|
3560
|
-
* @deprecated
|
|
3561
|
-
*/
|
|
3562
|
-
imageUrl?: string | null;
|
|
3563
3576
|
/**
|
|
3564
3577
|
* Gets or sets the room name.
|
|
3565
3578
|
*/
|
|
@@ -3721,10 +3734,6 @@ type Course = {
|
|
|
3721
3734
|
* Gets or sets the venues referenced images.
|
|
3722
3735
|
*/
|
|
3723
3736
|
images?: Array<Image> | null;
|
|
3724
|
-
/**
|
|
3725
|
-
* Gets or sets the courses offers.
|
|
3726
|
-
*/
|
|
3727
|
-
offers?: Array<Offer> | null;
|
|
3728
3737
|
/**
|
|
3729
3738
|
* Gets or sets the customers on the registration waitlist.
|
|
3730
3739
|
*/
|
|
@@ -8773,15 +8782,6 @@ declare class FilestackService {
|
|
|
8773
8782
|
}): CancelablePromise<FilestackImageMetaResponseModel>;
|
|
8774
8783
|
}
|
|
8775
8784
|
|
|
8776
|
-
/**
|
|
8777
|
-
* The activity type.
|
|
8778
|
-
*/
|
|
8779
|
-
declare enum ActivityType {
|
|
8780
|
-
FACILITY = "Facility",
|
|
8781
|
-
SESSION = "Session",
|
|
8782
|
-
COURSE = "Course"
|
|
8783
|
-
}
|
|
8784
|
-
|
|
8785
8785
|
/**
|
|
8786
8786
|
* Represents an organisation within the Reach application.
|
|
8787
8787
|
*/
|
|
@@ -8914,6 +8914,20 @@ type GenericActivityPost = {
|
|
|
8914
8914
|
tenantId: string;
|
|
8915
8915
|
};
|
|
8916
8916
|
|
|
8917
|
+
/**
|
|
8918
|
+
* Post model for creating a template from an activity.
|
|
8919
|
+
*/
|
|
8920
|
+
type TemplateFromPost = {
|
|
8921
|
+
/**
|
|
8922
|
+
* Gets or sets the tenant Id.
|
|
8923
|
+
*/
|
|
8924
|
+
tenantId: string;
|
|
8925
|
+
/**
|
|
8926
|
+
* Gets or sets the template name.
|
|
8927
|
+
*/
|
|
8928
|
+
name: string;
|
|
8929
|
+
};
|
|
8930
|
+
|
|
8917
8931
|
declare class GenericActivityService {
|
|
8918
8932
|
readonly httpRequest: BaseHttpRequest;
|
|
8919
8933
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -8939,6 +8953,21 @@ declare class GenericActivityService {
|
|
|
8939
8953
|
*/
|
|
8940
8954
|
id: string;
|
|
8941
8955
|
}): CancelablePromise<GenericActivity>;
|
|
8956
|
+
/**
|
|
8957
|
+
* Creates a template from an activity.
|
|
8958
|
+
* @returns GenericActivity Success
|
|
8959
|
+
* @throws ApiError
|
|
8960
|
+
*/
|
|
8961
|
+
createTemplate({ id, requestBody, }: {
|
|
8962
|
+
/**
|
|
8963
|
+
* The activity id.
|
|
8964
|
+
*/
|
|
8965
|
+
id: string;
|
|
8966
|
+
/**
|
|
8967
|
+
* The post body.
|
|
8968
|
+
*/
|
|
8969
|
+
requestBody?: TemplateFromPost;
|
|
8970
|
+
}): CancelablePromise<GenericActivity>;
|
|
8942
8971
|
/**
|
|
8943
8972
|
* Gets the resource by its Id.
|
|
8944
8973
|
* @returns GenericActivity Success
|
|
@@ -15167,6 +15196,18 @@ type ProgrammePatch = {
|
|
|
15167
15196
|
* Gets or sets the Id.
|
|
15168
15197
|
*/
|
|
15169
15198
|
id: string;
|
|
15199
|
+
/**
|
|
15200
|
+
* Gets or sets the programmes name.
|
|
15201
|
+
*/
|
|
15202
|
+
name: string;
|
|
15203
|
+
/**
|
|
15204
|
+
* Gets or sets the programmes description.
|
|
15205
|
+
*/
|
|
15206
|
+
description: string;
|
|
15207
|
+
/**
|
|
15208
|
+
* Gets or sets the programme image url.
|
|
15209
|
+
*/
|
|
15210
|
+
imageUrl: string;
|
|
15170
15211
|
};
|
|
15171
15212
|
|
|
15172
15213
|
/**
|
|
@@ -27236,6 +27277,984 @@ declare class SurveysService {
|
|
|
27236
27277
|
}): CancelablePromise<boolean>;
|
|
27237
27278
|
}
|
|
27238
27279
|
|
|
27280
|
+
/**
|
|
27281
|
+
* Represents a Template Offers within the Reach application.
|
|
27282
|
+
*/
|
|
27283
|
+
type TemplateOffer = {
|
|
27284
|
+
/**
|
|
27285
|
+
* Gets or sets the entities Id.
|
|
27286
|
+
*/
|
|
27287
|
+
id?: string;
|
|
27288
|
+
/**
|
|
27289
|
+
* Gets or sets the tenant Id.
|
|
27290
|
+
*/
|
|
27291
|
+
tenantId: string;
|
|
27292
|
+
/**
|
|
27293
|
+
* Gets or sets the created date of this entity.
|
|
27294
|
+
*/
|
|
27295
|
+
dateCreated: string;
|
|
27296
|
+
/**
|
|
27297
|
+
* Gets or sets the last modified date of this entity.
|
|
27298
|
+
*/
|
|
27299
|
+
dateModified: string;
|
|
27300
|
+
/**
|
|
27301
|
+
* Gets or sets the modified by Id.
|
|
27302
|
+
*/
|
|
27303
|
+
modifiedById?: string | null;
|
|
27304
|
+
/**
|
|
27305
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
27306
|
+
*/
|
|
27307
|
+
isLive: boolean;
|
|
27308
|
+
/**
|
|
27309
|
+
* Gets or sets the offer detail id.
|
|
27310
|
+
*/
|
|
27311
|
+
templateDetailId?: string;
|
|
27312
|
+
/**
|
|
27313
|
+
* Gets or sets the offer name.
|
|
27314
|
+
*/
|
|
27315
|
+
name?: string | null;
|
|
27316
|
+
/**
|
|
27317
|
+
* Gets or sets the offer net price.
|
|
27318
|
+
*/
|
|
27319
|
+
priceNet?: number;
|
|
27320
|
+
/**
|
|
27321
|
+
* Gets or sets the offer tax.
|
|
27322
|
+
*/
|
|
27323
|
+
priceTax?: number;
|
|
27324
|
+
/**
|
|
27325
|
+
* Gets or sets the offer total price.
|
|
27326
|
+
*/
|
|
27327
|
+
priceTotal?: number;
|
|
27328
|
+
/**
|
|
27329
|
+
* Gets or sets the offer currency.
|
|
27330
|
+
*/
|
|
27331
|
+
currency?: string | null;
|
|
27332
|
+
/**
|
|
27333
|
+
* Gets or sets a value indicating whether the offer is active.
|
|
27334
|
+
*/
|
|
27335
|
+
active?: boolean;
|
|
27336
|
+
};
|
|
27337
|
+
|
|
27338
|
+
/**
|
|
27339
|
+
* Represents a Template Detail within the Reach application.
|
|
27340
|
+
*/
|
|
27341
|
+
type TemplateDetail = {
|
|
27342
|
+
/**
|
|
27343
|
+
* Gets or sets the entities Id.
|
|
27344
|
+
*/
|
|
27345
|
+
id?: string;
|
|
27346
|
+
/**
|
|
27347
|
+
* Gets or sets the tenant Id.
|
|
27348
|
+
*/
|
|
27349
|
+
tenantId: string;
|
|
27350
|
+
/**
|
|
27351
|
+
* Gets or sets the created date of this entity.
|
|
27352
|
+
*/
|
|
27353
|
+
dateCreated: string;
|
|
27354
|
+
/**
|
|
27355
|
+
* Gets or sets the last modified date of this entity.
|
|
27356
|
+
*/
|
|
27357
|
+
dateModified: string;
|
|
27358
|
+
/**
|
|
27359
|
+
* Gets or sets the modified by Id.
|
|
27360
|
+
*/
|
|
27361
|
+
modifiedById?: string | null;
|
|
27362
|
+
/**
|
|
27363
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
27364
|
+
*/
|
|
27365
|
+
isLive: boolean;
|
|
27366
|
+
/**
|
|
27367
|
+
* Gets or sets the template id.
|
|
27368
|
+
*/
|
|
27369
|
+
templateId?: string;
|
|
27370
|
+
/**
|
|
27371
|
+
* Gets or sets the templates name.
|
|
27372
|
+
*/
|
|
27373
|
+
name?: string | null;
|
|
27374
|
+
/**
|
|
27375
|
+
* Gets or sets the templates description.
|
|
27376
|
+
*/
|
|
27377
|
+
description?: string | null;
|
|
27378
|
+
/**
|
|
27379
|
+
* Gets or sets the teampltes image url.
|
|
27380
|
+
*/
|
|
27381
|
+
imageUrl?: string | null;
|
|
27382
|
+
/**
|
|
27383
|
+
* Gets or sets the templates referenced offers.
|
|
27384
|
+
*/
|
|
27385
|
+
offers?: Array<TemplateOffer> | null;
|
|
27386
|
+
};
|
|
27387
|
+
|
|
27388
|
+
type TemplateDetailPage = {
|
|
27389
|
+
pagination: Pagination;
|
|
27390
|
+
readonly items: Array<TemplateDetail>;
|
|
27391
|
+
};
|
|
27392
|
+
|
|
27393
|
+
/**
|
|
27394
|
+
* Post model for template detail updates.
|
|
27395
|
+
*/
|
|
27396
|
+
type TemplateDetailPatch = {
|
|
27397
|
+
/**
|
|
27398
|
+
* Gets or sets the tenant Id.
|
|
27399
|
+
*/
|
|
27400
|
+
tenantId: string;
|
|
27401
|
+
/**
|
|
27402
|
+
* Gets or sets the Id.
|
|
27403
|
+
*/
|
|
27404
|
+
id: string;
|
|
27405
|
+
/**
|
|
27406
|
+
* Gets or sets the template name.
|
|
27407
|
+
*/
|
|
27408
|
+
name: string;
|
|
27409
|
+
/**
|
|
27410
|
+
* Gets or sets the template description.
|
|
27411
|
+
*/
|
|
27412
|
+
description: string;
|
|
27413
|
+
/**
|
|
27414
|
+
* Gets or sets the template image url.
|
|
27415
|
+
*/
|
|
27416
|
+
imageUrl: string;
|
|
27417
|
+
};
|
|
27418
|
+
|
|
27419
|
+
/**
|
|
27420
|
+
* Post model for template detail inserts.
|
|
27421
|
+
*/
|
|
27422
|
+
type TemplateDetailPost = {
|
|
27423
|
+
/**
|
|
27424
|
+
* Gets or sets the tenant Id.
|
|
27425
|
+
*/
|
|
27426
|
+
tenantId: string;
|
|
27427
|
+
/**
|
|
27428
|
+
* Gets or sets the template name.
|
|
27429
|
+
*/
|
|
27430
|
+
name: string;
|
|
27431
|
+
/**
|
|
27432
|
+
* Gets or sets the template description.
|
|
27433
|
+
*/
|
|
27434
|
+
description: string;
|
|
27435
|
+
/**
|
|
27436
|
+
* Gets or sets the template image url.
|
|
27437
|
+
*/
|
|
27438
|
+
imageUrl: string;
|
|
27439
|
+
};
|
|
27440
|
+
|
|
27441
|
+
declare class TemplateDetailsService {
|
|
27442
|
+
readonly httpRequest: BaseHttpRequest;
|
|
27443
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
27444
|
+
/**
|
|
27445
|
+
* Gets the resource by its Id.
|
|
27446
|
+
* @returns TemplateDetail Success
|
|
27447
|
+
* @throws ApiError
|
|
27448
|
+
*/
|
|
27449
|
+
getObject({ id, }: {
|
|
27450
|
+
/**
|
|
27451
|
+
* The <typeparamref name="TObject" /> id.
|
|
27452
|
+
*/
|
|
27453
|
+
id: string;
|
|
27454
|
+
}): CancelablePromise<TemplateDetail>;
|
|
27455
|
+
/**
|
|
27456
|
+
* Deletes the resource.
|
|
27457
|
+
* @returns any Success
|
|
27458
|
+
* @throws ApiError
|
|
27459
|
+
*/
|
|
27460
|
+
deleteById({ id, }: {
|
|
27461
|
+
/**
|
|
27462
|
+
* The <typeparamref name="TObject" /> id.
|
|
27463
|
+
*/
|
|
27464
|
+
id: string;
|
|
27465
|
+
}): CancelablePromise<any>;
|
|
27466
|
+
/**
|
|
27467
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
27468
|
+
* @returns boolean Success
|
|
27469
|
+
* @throws ApiError
|
|
27470
|
+
*/
|
|
27471
|
+
exists({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27472
|
+
/**
|
|
27473
|
+
* Gets or sets the page number for paged queries.
|
|
27474
|
+
*/
|
|
27475
|
+
pageNumber?: number;
|
|
27476
|
+
/**
|
|
27477
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
27478
|
+
*/
|
|
27479
|
+
take?: number;
|
|
27480
|
+
/**
|
|
27481
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
27482
|
+
*/
|
|
27483
|
+
limitListRequests?: boolean;
|
|
27484
|
+
/**
|
|
27485
|
+
* Gets or sets the Tenant Id.
|
|
27486
|
+
*/
|
|
27487
|
+
tenantId?: string;
|
|
27488
|
+
/**
|
|
27489
|
+
* Gets or sets the Modifed By Id.
|
|
27490
|
+
*/
|
|
27491
|
+
modifiedById?: string;
|
|
27492
|
+
/**
|
|
27493
|
+
* Gets or sets the Modifed By Ids.
|
|
27494
|
+
*/
|
|
27495
|
+
modifiedByIds?: Array<string>;
|
|
27496
|
+
/**
|
|
27497
|
+
* Gets or sets the Date Created greater than equal to.
|
|
27498
|
+
*/
|
|
27499
|
+
dateCreatedGte?: string;
|
|
27500
|
+
/**
|
|
27501
|
+
* Gets or sets the Date Created less than equal to.
|
|
27502
|
+
*/
|
|
27503
|
+
dateCreatedLte?: string;
|
|
27504
|
+
/**
|
|
27505
|
+
* Gets or sets the queryable only is live status.
|
|
27506
|
+
*/
|
|
27507
|
+
isLive?: boolean;
|
|
27508
|
+
/**
|
|
27509
|
+
* Gets or sets the sort order direction.
|
|
27510
|
+
*/
|
|
27511
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
27512
|
+
}): CancelablePromise<boolean>;
|
|
27513
|
+
/**
|
|
27514
|
+
* Gets a list of resources.
|
|
27515
|
+
* @returns TemplateDetailPage Success
|
|
27516
|
+
* @throws ApiError
|
|
27517
|
+
*/
|
|
27518
|
+
getPage({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27519
|
+
/**
|
|
27520
|
+
* Gets or sets the page number for paged queries.
|
|
27521
|
+
*/
|
|
27522
|
+
pageNumber?: number;
|
|
27523
|
+
/**
|
|
27524
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
27525
|
+
*/
|
|
27526
|
+
take?: number;
|
|
27527
|
+
/**
|
|
27528
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
27529
|
+
*/
|
|
27530
|
+
limitListRequests?: boolean;
|
|
27531
|
+
/**
|
|
27532
|
+
* Gets or sets the Tenant Id.
|
|
27533
|
+
*/
|
|
27534
|
+
tenantId?: string;
|
|
27535
|
+
/**
|
|
27536
|
+
* Gets or sets the Modifed By Id.
|
|
27537
|
+
*/
|
|
27538
|
+
modifiedById?: string;
|
|
27539
|
+
/**
|
|
27540
|
+
* Gets or sets the Modifed By Ids.
|
|
27541
|
+
*/
|
|
27542
|
+
modifiedByIds?: Array<string>;
|
|
27543
|
+
/**
|
|
27544
|
+
* Gets or sets the Date Created greater than equal to.
|
|
27545
|
+
*/
|
|
27546
|
+
dateCreatedGte?: string;
|
|
27547
|
+
/**
|
|
27548
|
+
* Gets or sets the Date Created less than equal to.
|
|
27549
|
+
*/
|
|
27550
|
+
dateCreatedLte?: string;
|
|
27551
|
+
/**
|
|
27552
|
+
* Gets or sets the queryable only is live status.
|
|
27553
|
+
*/
|
|
27554
|
+
isLive?: boolean;
|
|
27555
|
+
/**
|
|
27556
|
+
* Gets or sets the sort order direction.
|
|
27557
|
+
*/
|
|
27558
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
27559
|
+
}): CancelablePromise<TemplateDetailPage>;
|
|
27560
|
+
/**
|
|
27561
|
+
* Deletes the resource.
|
|
27562
|
+
* @returns any Success
|
|
27563
|
+
* @throws ApiError
|
|
27564
|
+
*/
|
|
27565
|
+
deleteByObject({ requestBody, }: {
|
|
27566
|
+
/**
|
|
27567
|
+
* The <typeparamref name="TObject" /> model.
|
|
27568
|
+
*/
|
|
27569
|
+
requestBody?: TemplateDetail;
|
|
27570
|
+
}): CancelablePromise<any>;
|
|
27571
|
+
/**
|
|
27572
|
+
* Gets a list of resources.
|
|
27573
|
+
* @returns TemplateDetail Success
|
|
27574
|
+
* @throws ApiError
|
|
27575
|
+
*/
|
|
27576
|
+
getListIdName({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27577
|
+
/**
|
|
27578
|
+
* Gets or sets the page number for paged queries.
|
|
27579
|
+
*/
|
|
27580
|
+
pageNumber?: number;
|
|
27581
|
+
/**
|
|
27582
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
27583
|
+
*/
|
|
27584
|
+
take?: number;
|
|
27585
|
+
/**
|
|
27586
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
27587
|
+
*/
|
|
27588
|
+
limitListRequests?: boolean;
|
|
27589
|
+
/**
|
|
27590
|
+
* Gets or sets the Tenant Id.
|
|
27591
|
+
*/
|
|
27592
|
+
tenantId?: string;
|
|
27593
|
+
/**
|
|
27594
|
+
* Gets or sets the Modifed By Id.
|
|
27595
|
+
*/
|
|
27596
|
+
modifiedById?: string;
|
|
27597
|
+
/**
|
|
27598
|
+
* Gets or sets the Modifed By Ids.
|
|
27599
|
+
*/
|
|
27600
|
+
modifiedByIds?: Array<string>;
|
|
27601
|
+
/**
|
|
27602
|
+
* Gets or sets the Date Created greater than equal to.
|
|
27603
|
+
*/
|
|
27604
|
+
dateCreatedGte?: string;
|
|
27605
|
+
/**
|
|
27606
|
+
* Gets or sets the Date Created less than equal to.
|
|
27607
|
+
*/
|
|
27608
|
+
dateCreatedLte?: string;
|
|
27609
|
+
/**
|
|
27610
|
+
* Gets or sets the queryable only is live status.
|
|
27611
|
+
*/
|
|
27612
|
+
isLive?: boolean;
|
|
27613
|
+
/**
|
|
27614
|
+
* Gets or sets the sort order direction.
|
|
27615
|
+
*/
|
|
27616
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
27617
|
+
}): CancelablePromise<Array<TemplateDetail>>;
|
|
27618
|
+
/**
|
|
27619
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
27620
|
+
* @returns TemplateDetail Success
|
|
27621
|
+
* @throws ApiError
|
|
27622
|
+
*/
|
|
27623
|
+
post({ requestBody, }: {
|
|
27624
|
+
/**
|
|
27625
|
+
* The <typeparamref name="TObject" /> model.
|
|
27626
|
+
*/
|
|
27627
|
+
requestBody?: TemplateDetailPost;
|
|
27628
|
+
}): CancelablePromise<TemplateDetail>;
|
|
27629
|
+
/**
|
|
27630
|
+
* Patches the resource.
|
|
27631
|
+
* @returns TemplateDetail Success
|
|
27632
|
+
* @throws ApiError
|
|
27633
|
+
*/
|
|
27634
|
+
patch({ requestBody, }: {
|
|
27635
|
+
/**
|
|
27636
|
+
* The <typeparamref name="TObject" /> model.
|
|
27637
|
+
*/
|
|
27638
|
+
requestBody?: TemplateDetailPatch;
|
|
27639
|
+
}): CancelablePromise<TemplateDetail>;
|
|
27640
|
+
/**
|
|
27641
|
+
* Inserts a list of resources.
|
|
27642
|
+
* @returns TemplateDetail Success
|
|
27643
|
+
* @throws ApiError
|
|
27644
|
+
*/
|
|
27645
|
+
postList({ requestBody, }: {
|
|
27646
|
+
/**
|
|
27647
|
+
* The list of <typeparamref name="TObject" />.
|
|
27648
|
+
*/
|
|
27649
|
+
requestBody?: Array<TemplateDetailPost>;
|
|
27650
|
+
}): CancelablePromise<Array<TemplateDetail>>;
|
|
27651
|
+
/**
|
|
27652
|
+
* Patches the resource.
|
|
27653
|
+
* @returns TemplateDetail Success
|
|
27654
|
+
* @throws ApiError
|
|
27655
|
+
*/
|
|
27656
|
+
patchWithReferences({ requestBody, }: {
|
|
27657
|
+
/**
|
|
27658
|
+
* The <typeparamref name="TObject" /> model.
|
|
27659
|
+
*/
|
|
27660
|
+
requestBody?: TemplateDetailPatch;
|
|
27661
|
+
}): CancelablePromise<TemplateDetail>;
|
|
27662
|
+
/**
|
|
27663
|
+
* Returns a value indicating whether the resource is deletable.
|
|
27664
|
+
* @returns boolean Success
|
|
27665
|
+
* @throws ApiError
|
|
27666
|
+
*/
|
|
27667
|
+
canDelete({ id, }: {
|
|
27668
|
+
/**
|
|
27669
|
+
* The <typeparamref name="TObject" /> id.
|
|
27670
|
+
*/
|
|
27671
|
+
id: string;
|
|
27672
|
+
}): CancelablePromise<boolean>;
|
|
27673
|
+
}
|
|
27674
|
+
|
|
27675
|
+
type TemplateOfferPage = {
|
|
27676
|
+
pagination: Pagination;
|
|
27677
|
+
readonly items: Array<TemplateOffer>;
|
|
27678
|
+
};
|
|
27679
|
+
|
|
27680
|
+
/**
|
|
27681
|
+
* Post model for template offer updates.
|
|
27682
|
+
*/
|
|
27683
|
+
type TemplateOfferPatch = {
|
|
27684
|
+
/**
|
|
27685
|
+
* Gets or sets the tenant Id.
|
|
27686
|
+
*/
|
|
27687
|
+
tenantId: string;
|
|
27688
|
+
/**
|
|
27689
|
+
* Gets or sets the Id.
|
|
27690
|
+
*/
|
|
27691
|
+
id: string;
|
|
27692
|
+
};
|
|
27693
|
+
|
|
27694
|
+
/**
|
|
27695
|
+
* Post model for template detail inserts.
|
|
27696
|
+
*/
|
|
27697
|
+
type TemplateOfferPost = {
|
|
27698
|
+
/**
|
|
27699
|
+
* Gets or sets the tenant Id.
|
|
27700
|
+
*/
|
|
27701
|
+
tenantId: string;
|
|
27702
|
+
};
|
|
27703
|
+
|
|
27704
|
+
declare class TemplateOffersService {
|
|
27705
|
+
readonly httpRequest: BaseHttpRequest;
|
|
27706
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
27707
|
+
/**
|
|
27708
|
+
* Gets the resource by its Id.
|
|
27709
|
+
* @returns TemplateOffer Success
|
|
27710
|
+
* @throws ApiError
|
|
27711
|
+
*/
|
|
27712
|
+
getObject({ id, }: {
|
|
27713
|
+
/**
|
|
27714
|
+
* The <typeparamref name="TObject" /> id.
|
|
27715
|
+
*/
|
|
27716
|
+
id: string;
|
|
27717
|
+
}): CancelablePromise<TemplateOffer>;
|
|
27718
|
+
/**
|
|
27719
|
+
* Deletes the resource.
|
|
27720
|
+
* @returns any Success
|
|
27721
|
+
* @throws ApiError
|
|
27722
|
+
*/
|
|
27723
|
+
deleteById({ id, }: {
|
|
27724
|
+
/**
|
|
27725
|
+
* The <typeparamref name="TObject" /> id.
|
|
27726
|
+
*/
|
|
27727
|
+
id: string;
|
|
27728
|
+
}): CancelablePromise<any>;
|
|
27729
|
+
/**
|
|
27730
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
27731
|
+
* @returns boolean Success
|
|
27732
|
+
* @throws ApiError
|
|
27733
|
+
*/
|
|
27734
|
+
exists({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27735
|
+
/**
|
|
27736
|
+
* Gets or sets the page number for paged queries.
|
|
27737
|
+
*/
|
|
27738
|
+
pageNumber?: number;
|
|
27739
|
+
/**
|
|
27740
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
27741
|
+
*/
|
|
27742
|
+
take?: number;
|
|
27743
|
+
/**
|
|
27744
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
27745
|
+
*/
|
|
27746
|
+
limitListRequests?: boolean;
|
|
27747
|
+
/**
|
|
27748
|
+
* Gets or sets the Tenant Id.
|
|
27749
|
+
*/
|
|
27750
|
+
tenantId?: string;
|
|
27751
|
+
/**
|
|
27752
|
+
* Gets or sets the Modifed By Id.
|
|
27753
|
+
*/
|
|
27754
|
+
modifiedById?: string;
|
|
27755
|
+
/**
|
|
27756
|
+
* Gets or sets the Modifed By Ids.
|
|
27757
|
+
*/
|
|
27758
|
+
modifiedByIds?: Array<string>;
|
|
27759
|
+
/**
|
|
27760
|
+
* Gets or sets the Date Created greater than equal to.
|
|
27761
|
+
*/
|
|
27762
|
+
dateCreatedGte?: string;
|
|
27763
|
+
/**
|
|
27764
|
+
* Gets or sets the Date Created less than equal to.
|
|
27765
|
+
*/
|
|
27766
|
+
dateCreatedLte?: string;
|
|
27767
|
+
/**
|
|
27768
|
+
* Gets or sets the queryable only is live status.
|
|
27769
|
+
*/
|
|
27770
|
+
isLive?: boolean;
|
|
27771
|
+
/**
|
|
27772
|
+
* Gets or sets the sort order direction.
|
|
27773
|
+
*/
|
|
27774
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
27775
|
+
}): CancelablePromise<boolean>;
|
|
27776
|
+
/**
|
|
27777
|
+
* Gets a list of resources.
|
|
27778
|
+
* @returns TemplateOfferPage Success
|
|
27779
|
+
* @throws ApiError
|
|
27780
|
+
*/
|
|
27781
|
+
getPage({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27782
|
+
/**
|
|
27783
|
+
* Gets or sets the page number for paged queries.
|
|
27784
|
+
*/
|
|
27785
|
+
pageNumber?: number;
|
|
27786
|
+
/**
|
|
27787
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
27788
|
+
*/
|
|
27789
|
+
take?: number;
|
|
27790
|
+
/**
|
|
27791
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
27792
|
+
*/
|
|
27793
|
+
limitListRequests?: boolean;
|
|
27794
|
+
/**
|
|
27795
|
+
* Gets or sets the Tenant Id.
|
|
27796
|
+
*/
|
|
27797
|
+
tenantId?: string;
|
|
27798
|
+
/**
|
|
27799
|
+
* Gets or sets the Modifed By Id.
|
|
27800
|
+
*/
|
|
27801
|
+
modifiedById?: string;
|
|
27802
|
+
/**
|
|
27803
|
+
* Gets or sets the Modifed By Ids.
|
|
27804
|
+
*/
|
|
27805
|
+
modifiedByIds?: Array<string>;
|
|
27806
|
+
/**
|
|
27807
|
+
* Gets or sets the Date Created greater than equal to.
|
|
27808
|
+
*/
|
|
27809
|
+
dateCreatedGte?: string;
|
|
27810
|
+
/**
|
|
27811
|
+
* Gets or sets the Date Created less than equal to.
|
|
27812
|
+
*/
|
|
27813
|
+
dateCreatedLte?: string;
|
|
27814
|
+
/**
|
|
27815
|
+
* Gets or sets the queryable only is live status.
|
|
27816
|
+
*/
|
|
27817
|
+
isLive?: boolean;
|
|
27818
|
+
/**
|
|
27819
|
+
* Gets or sets the sort order direction.
|
|
27820
|
+
*/
|
|
27821
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
27822
|
+
}): CancelablePromise<TemplateOfferPage>;
|
|
27823
|
+
/**
|
|
27824
|
+
* Deletes the resource.
|
|
27825
|
+
* @returns any Success
|
|
27826
|
+
* @throws ApiError
|
|
27827
|
+
*/
|
|
27828
|
+
deleteByObject({ requestBody, }: {
|
|
27829
|
+
/**
|
|
27830
|
+
* The <typeparamref name="TObject" /> model.
|
|
27831
|
+
*/
|
|
27832
|
+
requestBody?: TemplateOffer;
|
|
27833
|
+
}): CancelablePromise<any>;
|
|
27834
|
+
/**
|
|
27835
|
+
* Gets a list of resources.
|
|
27836
|
+
* @returns TemplateOffer Success
|
|
27837
|
+
* @throws ApiError
|
|
27838
|
+
*/
|
|
27839
|
+
getListIdName({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27840
|
+
/**
|
|
27841
|
+
* Gets or sets the page number for paged queries.
|
|
27842
|
+
*/
|
|
27843
|
+
pageNumber?: number;
|
|
27844
|
+
/**
|
|
27845
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
27846
|
+
*/
|
|
27847
|
+
take?: number;
|
|
27848
|
+
/**
|
|
27849
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
27850
|
+
*/
|
|
27851
|
+
limitListRequests?: boolean;
|
|
27852
|
+
/**
|
|
27853
|
+
* Gets or sets the Tenant Id.
|
|
27854
|
+
*/
|
|
27855
|
+
tenantId?: string;
|
|
27856
|
+
/**
|
|
27857
|
+
* Gets or sets the Modifed By Id.
|
|
27858
|
+
*/
|
|
27859
|
+
modifiedById?: string;
|
|
27860
|
+
/**
|
|
27861
|
+
* Gets or sets the Modifed By Ids.
|
|
27862
|
+
*/
|
|
27863
|
+
modifiedByIds?: Array<string>;
|
|
27864
|
+
/**
|
|
27865
|
+
* Gets or sets the Date Created greater than equal to.
|
|
27866
|
+
*/
|
|
27867
|
+
dateCreatedGte?: string;
|
|
27868
|
+
/**
|
|
27869
|
+
* Gets or sets the Date Created less than equal to.
|
|
27870
|
+
*/
|
|
27871
|
+
dateCreatedLte?: string;
|
|
27872
|
+
/**
|
|
27873
|
+
* Gets or sets the queryable only is live status.
|
|
27874
|
+
*/
|
|
27875
|
+
isLive?: boolean;
|
|
27876
|
+
/**
|
|
27877
|
+
* Gets or sets the sort order direction.
|
|
27878
|
+
*/
|
|
27879
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
27880
|
+
}): CancelablePromise<Array<TemplateOffer>>;
|
|
27881
|
+
/**
|
|
27882
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
27883
|
+
* @returns TemplateOffer Success
|
|
27884
|
+
* @throws ApiError
|
|
27885
|
+
*/
|
|
27886
|
+
post({ requestBody, }: {
|
|
27887
|
+
/**
|
|
27888
|
+
* The <typeparamref name="TObject" /> model.
|
|
27889
|
+
*/
|
|
27890
|
+
requestBody?: TemplateOfferPost;
|
|
27891
|
+
}): CancelablePromise<TemplateOffer>;
|
|
27892
|
+
/**
|
|
27893
|
+
* Patches the resource.
|
|
27894
|
+
* @returns TemplateOffer Success
|
|
27895
|
+
* @throws ApiError
|
|
27896
|
+
*/
|
|
27897
|
+
patch({ requestBody, }: {
|
|
27898
|
+
/**
|
|
27899
|
+
* The <typeparamref name="TObject" /> model.
|
|
27900
|
+
*/
|
|
27901
|
+
requestBody?: TemplateOfferPatch;
|
|
27902
|
+
}): CancelablePromise<TemplateOffer>;
|
|
27903
|
+
/**
|
|
27904
|
+
* Inserts a list of resources.
|
|
27905
|
+
* @returns TemplateOffer Success
|
|
27906
|
+
* @throws ApiError
|
|
27907
|
+
*/
|
|
27908
|
+
postList({ requestBody, }: {
|
|
27909
|
+
/**
|
|
27910
|
+
* The list of <typeparamref name="TObject" />.
|
|
27911
|
+
*/
|
|
27912
|
+
requestBody?: Array<TemplateOfferPost>;
|
|
27913
|
+
}): CancelablePromise<Array<TemplateOffer>>;
|
|
27914
|
+
/**
|
|
27915
|
+
* Patches the resource.
|
|
27916
|
+
* @returns TemplateOffer Success
|
|
27917
|
+
* @throws ApiError
|
|
27918
|
+
*/
|
|
27919
|
+
patchWithReferences({ requestBody, }: {
|
|
27920
|
+
/**
|
|
27921
|
+
* The <typeparamref name="TObject" /> model.
|
|
27922
|
+
*/
|
|
27923
|
+
requestBody?: TemplateOfferPatch;
|
|
27924
|
+
}): CancelablePromise<TemplateOffer>;
|
|
27925
|
+
/**
|
|
27926
|
+
* Returns a value indicating whether the resource is deletable.
|
|
27927
|
+
* @returns boolean Success
|
|
27928
|
+
* @throws ApiError
|
|
27929
|
+
*/
|
|
27930
|
+
canDelete({ id, }: {
|
|
27931
|
+
/**
|
|
27932
|
+
* The <typeparamref name="TObject" /> id.
|
|
27933
|
+
*/
|
|
27934
|
+
id: string;
|
|
27935
|
+
}): CancelablePromise<boolean>;
|
|
27936
|
+
}
|
|
27937
|
+
|
|
27938
|
+
/**
|
|
27939
|
+
* Represents a Template within the Reach application.
|
|
27940
|
+
*/
|
|
27941
|
+
type Template = {
|
|
27942
|
+
/**
|
|
27943
|
+
* Gets or sets the entities Id.
|
|
27944
|
+
*/
|
|
27945
|
+
id?: string;
|
|
27946
|
+
/**
|
|
27947
|
+
* Gets or sets the tenant Id.
|
|
27948
|
+
*/
|
|
27949
|
+
tenantId: string;
|
|
27950
|
+
/**
|
|
27951
|
+
* Gets or sets the created date of this entity.
|
|
27952
|
+
*/
|
|
27953
|
+
dateCreated: string;
|
|
27954
|
+
/**
|
|
27955
|
+
* Gets or sets the last modified date of this entity.
|
|
27956
|
+
*/
|
|
27957
|
+
dateModified: string;
|
|
27958
|
+
/**
|
|
27959
|
+
* Gets or sets the modified by Id.
|
|
27960
|
+
*/
|
|
27961
|
+
modifiedById?: string | null;
|
|
27962
|
+
/**
|
|
27963
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
27964
|
+
*/
|
|
27965
|
+
isLive: boolean;
|
|
27966
|
+
/**
|
|
27967
|
+
* Gets or sets the templates name.
|
|
27968
|
+
*/
|
|
27969
|
+
name?: string | null;
|
|
27970
|
+
/**
|
|
27971
|
+
* Gets or sets the teampltes image url.
|
|
27972
|
+
*/
|
|
27973
|
+
imageUrl?: string | null;
|
|
27974
|
+
activityType?: ActivityType;
|
|
27975
|
+
details?: TemplateDetail;
|
|
27976
|
+
};
|
|
27977
|
+
|
|
27978
|
+
type TemplatePage = {
|
|
27979
|
+
pagination: Pagination;
|
|
27980
|
+
readonly items: Array<Template>;
|
|
27981
|
+
};
|
|
27982
|
+
|
|
27983
|
+
/**
|
|
27984
|
+
* Post model for template updates.
|
|
27985
|
+
*/
|
|
27986
|
+
type TemplatePatch = {
|
|
27987
|
+
/**
|
|
27988
|
+
* Gets or sets the tenant Id.
|
|
27989
|
+
*/
|
|
27990
|
+
tenantId: string;
|
|
27991
|
+
/**
|
|
27992
|
+
* Gets or sets the Id.
|
|
27993
|
+
*/
|
|
27994
|
+
id: string;
|
|
27995
|
+
/**
|
|
27996
|
+
* Gets or sets the template name.
|
|
27997
|
+
*/
|
|
27998
|
+
name: string;
|
|
27999
|
+
/**
|
|
28000
|
+
* Gets or sets the template image url.
|
|
28001
|
+
*/
|
|
28002
|
+
imageUrl: string;
|
|
28003
|
+
};
|
|
28004
|
+
|
|
28005
|
+
/**
|
|
28006
|
+
* Post model for template inserts.
|
|
28007
|
+
*/
|
|
28008
|
+
type TemplatePost = {
|
|
28009
|
+
/**
|
|
28010
|
+
* Gets or sets the tenant Id.
|
|
28011
|
+
*/
|
|
28012
|
+
tenantId: string;
|
|
28013
|
+
/**
|
|
28014
|
+
* Gets or sets the template name.
|
|
28015
|
+
*/
|
|
28016
|
+
name: string;
|
|
28017
|
+
/**
|
|
28018
|
+
* Gets or sets the template image url.
|
|
28019
|
+
*/
|
|
28020
|
+
imageUrl: string;
|
|
28021
|
+
activityType: ActivityType;
|
|
28022
|
+
};
|
|
28023
|
+
|
|
28024
|
+
declare class TemplatesService {
|
|
28025
|
+
readonly httpRequest: BaseHttpRequest;
|
|
28026
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
28027
|
+
/**
|
|
28028
|
+
* Gets the resource by its Id.
|
|
28029
|
+
* @returns Template Success
|
|
28030
|
+
* @throws ApiError
|
|
28031
|
+
*/
|
|
28032
|
+
getObject({ id, }: {
|
|
28033
|
+
/**
|
|
28034
|
+
* The <typeparamref name="TObject" /> id.
|
|
28035
|
+
*/
|
|
28036
|
+
id: string;
|
|
28037
|
+
}): CancelablePromise<Template>;
|
|
28038
|
+
/**
|
|
28039
|
+
* Deletes the resource.
|
|
28040
|
+
* @returns any Success
|
|
28041
|
+
* @throws ApiError
|
|
28042
|
+
*/
|
|
28043
|
+
deleteById({ id, }: {
|
|
28044
|
+
/**
|
|
28045
|
+
* The <typeparamref name="TObject" /> id.
|
|
28046
|
+
*/
|
|
28047
|
+
id: string;
|
|
28048
|
+
}): CancelablePromise<any>;
|
|
28049
|
+
/**
|
|
28050
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
28051
|
+
* @returns boolean Success
|
|
28052
|
+
* @throws ApiError
|
|
28053
|
+
*/
|
|
28054
|
+
exists({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28055
|
+
/**
|
|
28056
|
+
* Gets or sets the page number for paged queries.
|
|
28057
|
+
*/
|
|
28058
|
+
pageNumber?: number;
|
|
28059
|
+
/**
|
|
28060
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
28061
|
+
*/
|
|
28062
|
+
take?: number;
|
|
28063
|
+
/**
|
|
28064
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
28065
|
+
*/
|
|
28066
|
+
limitListRequests?: boolean;
|
|
28067
|
+
/**
|
|
28068
|
+
* Gets or sets the Tenant Id.
|
|
28069
|
+
*/
|
|
28070
|
+
tenantId?: string;
|
|
28071
|
+
/**
|
|
28072
|
+
* Gets or sets the Modifed By Id.
|
|
28073
|
+
*/
|
|
28074
|
+
modifiedById?: string;
|
|
28075
|
+
/**
|
|
28076
|
+
* Gets or sets the Modifed By Ids.
|
|
28077
|
+
*/
|
|
28078
|
+
modifiedByIds?: Array<string>;
|
|
28079
|
+
/**
|
|
28080
|
+
* Gets or sets the Date Created greater than equal to.
|
|
28081
|
+
*/
|
|
28082
|
+
dateCreatedGte?: string;
|
|
28083
|
+
/**
|
|
28084
|
+
* Gets or sets the Date Created less than equal to.
|
|
28085
|
+
*/
|
|
28086
|
+
dateCreatedLte?: string;
|
|
28087
|
+
/**
|
|
28088
|
+
* Gets or sets the queryable only is live status.
|
|
28089
|
+
*/
|
|
28090
|
+
isLive?: boolean;
|
|
28091
|
+
/**
|
|
28092
|
+
* Gets or sets the sort order direction.
|
|
28093
|
+
*/
|
|
28094
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
28095
|
+
}): CancelablePromise<boolean>;
|
|
28096
|
+
/**
|
|
28097
|
+
* Gets a list of resources.
|
|
28098
|
+
* @returns TemplatePage Success
|
|
28099
|
+
* @throws ApiError
|
|
28100
|
+
*/
|
|
28101
|
+
getPage({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28102
|
+
/**
|
|
28103
|
+
* Gets or sets the page number for paged queries.
|
|
28104
|
+
*/
|
|
28105
|
+
pageNumber?: number;
|
|
28106
|
+
/**
|
|
28107
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
28108
|
+
*/
|
|
28109
|
+
take?: number;
|
|
28110
|
+
/**
|
|
28111
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
28112
|
+
*/
|
|
28113
|
+
limitListRequests?: boolean;
|
|
28114
|
+
/**
|
|
28115
|
+
* Gets or sets the Tenant Id.
|
|
28116
|
+
*/
|
|
28117
|
+
tenantId?: string;
|
|
28118
|
+
/**
|
|
28119
|
+
* Gets or sets the Modifed By Id.
|
|
28120
|
+
*/
|
|
28121
|
+
modifiedById?: string;
|
|
28122
|
+
/**
|
|
28123
|
+
* Gets or sets the Modifed By Ids.
|
|
28124
|
+
*/
|
|
28125
|
+
modifiedByIds?: Array<string>;
|
|
28126
|
+
/**
|
|
28127
|
+
* Gets or sets the Date Created greater than equal to.
|
|
28128
|
+
*/
|
|
28129
|
+
dateCreatedGte?: string;
|
|
28130
|
+
/**
|
|
28131
|
+
* Gets or sets the Date Created less than equal to.
|
|
28132
|
+
*/
|
|
28133
|
+
dateCreatedLte?: string;
|
|
28134
|
+
/**
|
|
28135
|
+
* Gets or sets the queryable only is live status.
|
|
28136
|
+
*/
|
|
28137
|
+
isLive?: boolean;
|
|
28138
|
+
/**
|
|
28139
|
+
* Gets or sets the sort order direction.
|
|
28140
|
+
*/
|
|
28141
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
28142
|
+
}): CancelablePromise<TemplatePage>;
|
|
28143
|
+
/**
|
|
28144
|
+
* Deletes the resource.
|
|
28145
|
+
* @returns any Success
|
|
28146
|
+
* @throws ApiError
|
|
28147
|
+
*/
|
|
28148
|
+
deleteByObject({ requestBody, }: {
|
|
28149
|
+
/**
|
|
28150
|
+
* The <typeparamref name="TObject" /> model.
|
|
28151
|
+
*/
|
|
28152
|
+
requestBody?: Template;
|
|
28153
|
+
}): CancelablePromise<any>;
|
|
28154
|
+
/**
|
|
28155
|
+
* Gets a list of resources.
|
|
28156
|
+
* @returns Template Success
|
|
28157
|
+
* @throws ApiError
|
|
28158
|
+
*/
|
|
28159
|
+
getListIdName({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28160
|
+
/**
|
|
28161
|
+
* Gets or sets the page number for paged queries.
|
|
28162
|
+
*/
|
|
28163
|
+
pageNumber?: number;
|
|
28164
|
+
/**
|
|
28165
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
28166
|
+
*/
|
|
28167
|
+
take?: number;
|
|
28168
|
+
/**
|
|
28169
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
28170
|
+
*/
|
|
28171
|
+
limitListRequests?: boolean;
|
|
28172
|
+
/**
|
|
28173
|
+
* Gets or sets the Tenant Id.
|
|
28174
|
+
*/
|
|
28175
|
+
tenantId?: string;
|
|
28176
|
+
/**
|
|
28177
|
+
* Gets or sets the Modifed By Id.
|
|
28178
|
+
*/
|
|
28179
|
+
modifiedById?: string;
|
|
28180
|
+
/**
|
|
28181
|
+
* Gets or sets the Modifed By Ids.
|
|
28182
|
+
*/
|
|
28183
|
+
modifiedByIds?: Array<string>;
|
|
28184
|
+
/**
|
|
28185
|
+
* Gets or sets the Date Created greater than equal to.
|
|
28186
|
+
*/
|
|
28187
|
+
dateCreatedGte?: string;
|
|
28188
|
+
/**
|
|
28189
|
+
* Gets or sets the Date Created less than equal to.
|
|
28190
|
+
*/
|
|
28191
|
+
dateCreatedLte?: string;
|
|
28192
|
+
/**
|
|
28193
|
+
* Gets or sets the queryable only is live status.
|
|
28194
|
+
*/
|
|
28195
|
+
isLive?: boolean;
|
|
28196
|
+
/**
|
|
28197
|
+
* Gets or sets the sort order direction.
|
|
28198
|
+
*/
|
|
28199
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
28200
|
+
}): CancelablePromise<Array<Template>>;
|
|
28201
|
+
/**
|
|
28202
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
28203
|
+
* @returns Template Success
|
|
28204
|
+
* @throws ApiError
|
|
28205
|
+
*/
|
|
28206
|
+
post({ requestBody, }: {
|
|
28207
|
+
/**
|
|
28208
|
+
* The <typeparamref name="TObject" /> model.
|
|
28209
|
+
*/
|
|
28210
|
+
requestBody?: TemplatePost;
|
|
28211
|
+
}): CancelablePromise<Template>;
|
|
28212
|
+
/**
|
|
28213
|
+
* Patches the resource.
|
|
28214
|
+
* @returns Template Success
|
|
28215
|
+
* @throws ApiError
|
|
28216
|
+
*/
|
|
28217
|
+
patch({ requestBody, }: {
|
|
28218
|
+
/**
|
|
28219
|
+
* The <typeparamref name="TObject" /> model.
|
|
28220
|
+
*/
|
|
28221
|
+
requestBody?: TemplatePatch;
|
|
28222
|
+
}): CancelablePromise<Template>;
|
|
28223
|
+
/**
|
|
28224
|
+
* Inserts a list of resources.
|
|
28225
|
+
* @returns Template Success
|
|
28226
|
+
* @throws ApiError
|
|
28227
|
+
*/
|
|
28228
|
+
postList({ requestBody, }: {
|
|
28229
|
+
/**
|
|
28230
|
+
* The list of <typeparamref name="TObject" />.
|
|
28231
|
+
*/
|
|
28232
|
+
requestBody?: Array<TemplatePost>;
|
|
28233
|
+
}): CancelablePromise<Array<Template>>;
|
|
28234
|
+
/**
|
|
28235
|
+
* Patches the resource.
|
|
28236
|
+
* @returns Template Success
|
|
28237
|
+
* @throws ApiError
|
|
28238
|
+
*/
|
|
28239
|
+
patchWithReferences({ requestBody, }: {
|
|
28240
|
+
/**
|
|
28241
|
+
* The <typeparamref name="TObject" /> model.
|
|
28242
|
+
*/
|
|
28243
|
+
requestBody?: TemplatePatch;
|
|
28244
|
+
}): CancelablePromise<Template>;
|
|
28245
|
+
/**
|
|
28246
|
+
* Returns a value indicating whether the resource is deletable.
|
|
28247
|
+
* @returns boolean Success
|
|
28248
|
+
* @throws ApiError
|
|
28249
|
+
*/
|
|
28250
|
+
canDelete({ id, }: {
|
|
28251
|
+
/**
|
|
28252
|
+
* The <typeparamref name="TObject" /> id.
|
|
28253
|
+
*/
|
|
28254
|
+
id: string;
|
|
28255
|
+
}): CancelablePromise<boolean>;
|
|
28256
|
+
}
|
|
28257
|
+
|
|
27239
28258
|
/**
|
|
27240
28259
|
* Model to store database state.
|
|
27241
28260
|
*/
|
|
@@ -30420,6 +31439,9 @@ declare class ApiClient {
|
|
|
30420
31439
|
readonly surveyQuestions: SurveyQuestionsService;
|
|
30421
31440
|
readonly surveyReportExtended: SurveyReportExtendedService;
|
|
30422
31441
|
readonly surveys: SurveysService;
|
|
31442
|
+
readonly templateDetails: TemplateDetailsService;
|
|
31443
|
+
readonly templateOffers: TemplateOffersService;
|
|
31444
|
+
readonly templates: TemplatesService;
|
|
30423
31445
|
readonly tenants: TenantsService;
|
|
30424
31446
|
readonly tenantWebsiteSettings: TenantWebsiteSettingsService;
|
|
30425
31447
|
readonly timezone: TimezoneService;
|
|
@@ -30559,4 +31581,4 @@ type ValidationResultModel = {
|
|
|
30559
31581
|
readonly errors?: Array<ValidationError> | null;
|
|
30560
31582
|
};
|
|
30561
31583
|
|
|
30562
|
-
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, CreateOffer, CreateQuestion, CreateQuestionOption, CreateVenue, Customer, CustomerCancellationOption, 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, 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, PatchSurveyQuestionOption, 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, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundStatus, ScheduleStatus, ScheduledSession, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, 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, SurveyQuestionPost, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Tenant, TenantPage, TenantPatch, TenantPost, 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, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityService };
|
|
31584
|
+
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, CreateOffer, CreateQuestion, CreateQuestionOption, CreateVenue, Customer, CustomerCancellationOption, 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, 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, PatchSurveyQuestionOption, 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, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundStatus, ScheduleStatus, ScheduledSession, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, 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, SurveyQuestionPost, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, 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, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityService };
|