reach-api-sdk 1.0.11 → 1.0.13
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 +828 -164
- package/dist/reach-sdk.js +376 -1
- package/package.json +1 -1
- package/src/apiClient.ts +3 -0
- package/src/definition/swagger.yaml +2128 -455
- package/src/index.ts +7 -1
- package/src/models/Course.ts +5 -0
- package/src/models/CoursePatch.ts +5 -2
- package/src/models/CoursePost.ts +4 -1
- package/src/models/CourseSession.ts +1 -1
- package/src/models/CourseSessionPatch.ts +2 -2
- package/src/models/CourseSessionPost.ts +1 -1
- package/src/models/CourseSessionSchedulePatch.ts +2 -2
- package/src/models/CourseSessionSchedulePost.ts +1 -1
- package/src/models/CustomerPatch.ts +2 -2
- package/src/models/CustomerPost.ts +1 -1
- package/src/models/EmailReminderSchedulePatch.ts +2 -2
- package/src/models/EmailReminderSchedulePost.ts +1 -1
- package/src/models/EmailSettingPatch.ts +2 -2
- package/src/models/EmailSettingPost.ts +1 -1
- package/src/models/Facility.ts +5 -0
- package/src/models/FacilityIndividualPatch.ts +2 -2
- package/src/models/FacilityIndividualPost.ts +1 -1
- package/src/models/FacilityPatch.ts +5 -2
- package/src/models/FacilityPost.ts +4 -1
- package/src/models/GenericActivityPatch.ts +2 -2
- package/src/models/GenericActivityPost.ts +1 -1
- package/src/models/ImagePatch.ts +2 -2
- package/src/models/ImagePost.ts +1 -1
- package/src/models/NotificationQueuePatch.ts +2 -2
- package/src/models/NotificationQueuePost.ts +1 -1
- package/src/models/NotificationSettingPatch.ts +2 -2
- package/src/models/NotificationSettingPost.ts +1 -1
- package/src/models/OfferPatch.ts +2 -2
- package/src/models/OfferPost.ts +1 -1
- package/src/models/OpenactiveFeedIntermediatePatch.ts +2 -2
- package/src/models/OpenactiveFeedIntermediatePost.ts +1 -1
- package/src/models/OpenactiveFeedItemPatch.ts +2 -2
- package/src/models/OpenactiveFeedItemPost.ts +1 -1
- package/src/models/OrderItemPatch.ts +2 -2
- package/src/models/OrderItemPost.ts +1 -1
- package/src/models/OrderPatch.ts +2 -2
- package/src/models/OrderPost.ts +1 -1
- package/src/models/OrderTokenPatch.ts +2 -2
- package/src/models/OrderTokenPost.ts +1 -1
- package/src/models/OrgCourseUtilisationPatch.ts +2 -2
- package/src/models/OrgCourseUtilisationPost.ts +1 -1
- package/src/models/Pagination.ts +2 -2
- package/src/models/PatchSurveyQuestionOption.ts +22 -0
- package/src/models/PaymentPatch.ts +2 -2
- package/src/models/PaymentPost.ts +1 -1
- package/src/models/PermissionPatch.ts +2 -2
- package/src/models/PermissionPost.ts +1 -1
- package/src/models/Programme.ts +7 -2
- package/src/models/ProgrammePatch.ts +2 -2
- package/src/models/ProgrammePost.ts +1 -1
- package/src/models/RecentOrderActivityReportPatch.ts +2 -2
- package/src/models/RecentOrderActivityReportPost.ts +1 -1
- package/src/models/ScheduledSessionPatch.ts +2 -2
- package/src/models/ScheduledSessionPost.ts +1 -1
- package/src/models/ScheduledSessionSchedulePatch.ts +2 -2
- package/src/models/ScheduledSessionSchedulePost.ts +1 -1
- package/src/models/Session.ts +6 -1
- package/src/models/SessionPatch.ts +96 -3
- package/src/models/SessionPost.ts +4 -1
- package/src/models/SlotOfferPatch.ts +2 -2
- package/src/models/SlotOfferPost.ts +1 -1
- package/src/models/SlotPatch.ts +2 -2
- package/src/models/SlotPost.ts +1 -1
- package/src/models/SlotScheduleOfferPatch.ts +2 -2
- package/src/models/SlotScheduleOfferPost.ts +1 -1
- package/src/models/SlotSchedulePatch.ts +2 -2
- package/src/models/SlotSchedulePost.ts +1 -1
- package/src/models/StripeAccountPatch.ts +2 -2
- package/src/models/StripeAccountPost.ts +1 -1
- package/src/models/SurveyAnswerPatch.ts +2 -2
- package/src/models/SurveyAnswerPost.ts +1 -1
- package/src/models/SurveyPatch.ts +15 -2
- package/src/models/SurveyPost.ts +14 -1
- package/src/models/SurveyQuestionPatch.ts +26 -2
- package/src/models/SurveyQuestionPost.ts +24 -1
- package/src/models/SurveyReportExtendedPatch.ts +2 -2
- package/src/models/SurveyReportExtendedPost.ts +1 -1
- package/src/models/TenantPatch.ts +2 -2
- package/src/models/TenantPost.ts +1 -1
- package/src/models/TenantWebsiteSettingPatch.ts +2 -2
- package/src/models/TenantWebsiteSettingPost.ts +1 -1
- package/src/models/TotalRevenueReportPatch.ts +2 -2
- package/src/models/TotalRevenueReportPost.ts +1 -1
- package/src/models/UpdateEmailSettings.ts +22 -0
- package/src/models/UserPatch.ts +2 -2
- package/src/models/UserPost.ts +1 -1
- package/src/models/Venue.ts +5 -0
- package/src/models/VenueBadmintonEnglandReport.ts +74 -0
- package/src/models/VenueBadmintonEnglandReportPage.ts +12 -0
- package/src/models/VenueBadmintonEnglandReportPatch.ts +18 -0
- package/src/models/VenueBadmintonEnglandReportPost.ts +14 -0
- package/src/models/VenuePatch.ts +5 -2
- package/src/models/VenuePost.ts +4 -5
- package/src/models/VenuesReportPatch.ts +2 -2
- package/src/models/VenuesReportPost.ts +1 -1
- package/src/models/WaitlistActivityPatch.ts +2 -2
- package/src/models/WaitlistActivityPost.ts +1 -1
- package/src/models/WaitlistOpportunityPatch.ts +2 -2
- package/src/models/WaitlistOpportunityPost.ts +1 -1
- package/src/services/BadEnglandReportService.ts +643 -0
- package/src/services/GenericActivityService.ts +19 -0
- package/src/custom/AxiosInstanceHttpRequest.ts +0 -19
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -271,6 +271,463 @@ declare class AmenityService {
|
|
|
271
271
|
}): CancelablePromise<Array<Amenity>>;
|
|
272
272
|
}
|
|
273
273
|
|
|
274
|
+
/**
|
|
275
|
+
* Represents the recent Venue England badminton report model.
|
|
276
|
+
*/
|
|
277
|
+
type VenueBadmintonEnglandReport = {
|
|
278
|
+
/**
|
|
279
|
+
* Gets or sets the entities Id.
|
|
280
|
+
*/
|
|
281
|
+
id?: string;
|
|
282
|
+
/**
|
|
283
|
+
* Gets or sets the tenant Id.
|
|
284
|
+
*/
|
|
285
|
+
tenantId?: string;
|
|
286
|
+
/**
|
|
287
|
+
* Gets or sets the created date of this entity.
|
|
288
|
+
*/
|
|
289
|
+
dateCreated?: string;
|
|
290
|
+
/**
|
|
291
|
+
* Gets or sets the last modified date of this entity.
|
|
292
|
+
*/
|
|
293
|
+
dateModified?: string;
|
|
294
|
+
/**
|
|
295
|
+
* Gets or sets the modified by Id.
|
|
296
|
+
*/
|
|
297
|
+
modifiedById?: string | null;
|
|
298
|
+
/**
|
|
299
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
300
|
+
*/
|
|
301
|
+
isLive?: boolean;
|
|
302
|
+
/**
|
|
303
|
+
* Gets or sets the venue name.
|
|
304
|
+
*/
|
|
305
|
+
venueName?: string | null;
|
|
306
|
+
/**
|
|
307
|
+
* Gets or sets the Street address.
|
|
308
|
+
*/
|
|
309
|
+
streetAddress?: string | null;
|
|
310
|
+
/**
|
|
311
|
+
* Gets or sets the address locality.
|
|
312
|
+
*/
|
|
313
|
+
addressLocality?: string | null;
|
|
314
|
+
/**
|
|
315
|
+
* Gets or sets the address region.
|
|
316
|
+
*/
|
|
317
|
+
addressRegion?: string | null;
|
|
318
|
+
/**
|
|
319
|
+
* Gets or sets the address postal code.
|
|
320
|
+
*/
|
|
321
|
+
addressPostalcode?: string | null;
|
|
322
|
+
/**
|
|
323
|
+
* Gets or sets the Longitude.
|
|
324
|
+
*/
|
|
325
|
+
lng?: number;
|
|
326
|
+
/**
|
|
327
|
+
* Gets or sets the latitude.
|
|
328
|
+
*/
|
|
329
|
+
lat?: number;
|
|
330
|
+
/**
|
|
331
|
+
* Gets or sets the Contact email.
|
|
332
|
+
*/
|
|
333
|
+
contactEmail?: string | null;
|
|
334
|
+
/**
|
|
335
|
+
* Gets or sets the Contact Phone.
|
|
336
|
+
*/
|
|
337
|
+
contactPhone?: string | null;
|
|
338
|
+
/**
|
|
339
|
+
* Gets or sets the Contact Website.
|
|
340
|
+
*/
|
|
341
|
+
contactWebsite?: string | null;
|
|
342
|
+
};
|
|
343
|
+
|
|
344
|
+
/**
|
|
345
|
+
* Describes meta data for results returned as pages.
|
|
346
|
+
*/
|
|
347
|
+
type Pagination = {
|
|
348
|
+
/**
|
|
349
|
+
* Gets or sets the page number.
|
|
350
|
+
*/
|
|
351
|
+
pageNumber: number;
|
|
352
|
+
/**
|
|
353
|
+
* Gets the total number of pages.
|
|
354
|
+
*/
|
|
355
|
+
readonly totalPages: number;
|
|
356
|
+
/**
|
|
357
|
+
* Gets the total number of items in each page.
|
|
358
|
+
*/
|
|
359
|
+
readonly itemsPerPage: number;
|
|
360
|
+
/**
|
|
361
|
+
* Gets the total number of items.
|
|
362
|
+
*/
|
|
363
|
+
readonly totalItems: number;
|
|
364
|
+
};
|
|
365
|
+
|
|
366
|
+
type VenueBadmintonEnglandReportPage = {
|
|
367
|
+
pagination?: Pagination;
|
|
368
|
+
readonly items?: Array<VenueBadmintonEnglandReport> | null;
|
|
369
|
+
};
|
|
370
|
+
|
|
371
|
+
/**
|
|
372
|
+
* Post model for VenueBadmintonEnglandReport updates.
|
|
373
|
+
*/
|
|
374
|
+
type VenueBadmintonEnglandReportPatch = {
|
|
375
|
+
/**
|
|
376
|
+
* Gets or sets the tenant Id.
|
|
377
|
+
*/
|
|
378
|
+
tenantId: string;
|
|
379
|
+
/**
|
|
380
|
+
* Gets or sets the Id.
|
|
381
|
+
*/
|
|
382
|
+
id: string;
|
|
383
|
+
};
|
|
384
|
+
|
|
385
|
+
/**
|
|
386
|
+
* Post model for VenueBadmintonEnglandReport inserts.
|
|
387
|
+
*/
|
|
388
|
+
type VenueBadmintonEnglandReportPost = {
|
|
389
|
+
/**
|
|
390
|
+
* Gets or sets the tenant Id.
|
|
391
|
+
*/
|
|
392
|
+
tenantId: string;
|
|
393
|
+
};
|
|
394
|
+
|
|
395
|
+
declare class BadEnglandReportService {
|
|
396
|
+
readonly httpRequest: BaseHttpRequest;
|
|
397
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
398
|
+
/**
|
|
399
|
+
* Exports the venues list to a csv format.
|
|
400
|
+
* Endpoint has AllowAnonymous attr, however the jwt is validated in the method body (in support of authenticated file downloads.
|
|
401
|
+
* @returns any Success
|
|
402
|
+
* @throws ApiError
|
|
403
|
+
*/
|
|
404
|
+
sendToSftp({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
405
|
+
/**
|
|
406
|
+
* Gets or sets the page number for paged queries.
|
|
407
|
+
*/
|
|
408
|
+
pageNumber?: number;
|
|
409
|
+
/**
|
|
410
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
411
|
+
*/
|
|
412
|
+
take?: number;
|
|
413
|
+
/**
|
|
414
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
415
|
+
*/
|
|
416
|
+
limitListRequests?: boolean;
|
|
417
|
+
/**
|
|
418
|
+
* Gets or sets the Tenant Id.
|
|
419
|
+
*/
|
|
420
|
+
tenantId?: string;
|
|
421
|
+
/**
|
|
422
|
+
* Gets or sets the Modifed By Id.
|
|
423
|
+
*/
|
|
424
|
+
modifiedById?: string;
|
|
425
|
+
/**
|
|
426
|
+
* Gets or sets the Modifed By Ids.
|
|
427
|
+
*/
|
|
428
|
+
modifiedByIds?: Array<string>;
|
|
429
|
+
/**
|
|
430
|
+
* Gets or sets the Date Created greater than equal to.
|
|
431
|
+
*/
|
|
432
|
+
dateCreatedGte?: string;
|
|
433
|
+
/**
|
|
434
|
+
* Gets or sets the Date Created less than equal to.
|
|
435
|
+
*/
|
|
436
|
+
dateCreatedLte?: string;
|
|
437
|
+
/**
|
|
438
|
+
* Gets or sets the queryable only is live status.
|
|
439
|
+
*/
|
|
440
|
+
isLive?: boolean;
|
|
441
|
+
/**
|
|
442
|
+
* Gets or sets the sort order direction.
|
|
443
|
+
*/
|
|
444
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
445
|
+
}): CancelablePromise<any>;
|
|
446
|
+
/**
|
|
447
|
+
* Exports the orders list to a csv format.
|
|
448
|
+
* Endpoint has AllowAnonymous attr, however the jwt is validated in the method body (in support of authenticated file downloads.
|
|
449
|
+
* @returns any Success
|
|
450
|
+
* @throws ApiError
|
|
451
|
+
*/
|
|
452
|
+
sendToSftp1({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
453
|
+
/**
|
|
454
|
+
* Gets or sets the page number for paged queries.
|
|
455
|
+
*/
|
|
456
|
+
pageNumber?: number;
|
|
457
|
+
/**
|
|
458
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
459
|
+
*/
|
|
460
|
+
take?: number;
|
|
461
|
+
/**
|
|
462
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
463
|
+
*/
|
|
464
|
+
limitListRequests?: boolean;
|
|
465
|
+
/**
|
|
466
|
+
* Gets or sets the Tenant Id.
|
|
467
|
+
*/
|
|
468
|
+
tenantId?: string;
|
|
469
|
+
/**
|
|
470
|
+
* Gets or sets the Modifed By Id.
|
|
471
|
+
*/
|
|
472
|
+
modifiedById?: string;
|
|
473
|
+
/**
|
|
474
|
+
* Gets or sets the Modifed By Ids.
|
|
475
|
+
*/
|
|
476
|
+
modifiedByIds?: Array<string>;
|
|
477
|
+
/**
|
|
478
|
+
* Gets or sets the Date Created greater than equal to.
|
|
479
|
+
*/
|
|
480
|
+
dateCreatedGte?: string;
|
|
481
|
+
/**
|
|
482
|
+
* Gets or sets the Date Created less than equal to.
|
|
483
|
+
*/
|
|
484
|
+
dateCreatedLte?: string;
|
|
485
|
+
/**
|
|
486
|
+
* Gets or sets the queryable only is live status.
|
|
487
|
+
*/
|
|
488
|
+
isLive?: boolean;
|
|
489
|
+
/**
|
|
490
|
+
* Gets or sets the sort order direction.
|
|
491
|
+
*/
|
|
492
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
493
|
+
formData?: {
|
|
494
|
+
/**
|
|
495
|
+
* Gets or sets the auth token.
|
|
496
|
+
*/
|
|
497
|
+
Token?: string;
|
|
498
|
+
};
|
|
499
|
+
}): CancelablePromise<any>;
|
|
500
|
+
/**
|
|
501
|
+
* Gets the resource by its Id.
|
|
502
|
+
* @returns VenueBadmintonEnglandReport Success
|
|
503
|
+
* @throws ApiError
|
|
504
|
+
*/
|
|
505
|
+
getObject({ id, }: {
|
|
506
|
+
/**
|
|
507
|
+
* The <typeparamref name="TObject" /> id.
|
|
508
|
+
*/
|
|
509
|
+
id: string;
|
|
510
|
+
}): CancelablePromise<VenueBadmintonEnglandReport>;
|
|
511
|
+
/**
|
|
512
|
+
* Deletes the resource.
|
|
513
|
+
* @returns any Success
|
|
514
|
+
* @throws ApiError
|
|
515
|
+
*/
|
|
516
|
+
deleteById({ id, }: {
|
|
517
|
+
/**
|
|
518
|
+
* The <typeparamref name="TObject" /> id.
|
|
519
|
+
*/
|
|
520
|
+
id: string;
|
|
521
|
+
}): CancelablePromise<any>;
|
|
522
|
+
/**
|
|
523
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
524
|
+
* @returns boolean Success
|
|
525
|
+
* @throws ApiError
|
|
526
|
+
*/
|
|
527
|
+
exists({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
528
|
+
/**
|
|
529
|
+
* Gets or sets the page number for paged queries.
|
|
530
|
+
*/
|
|
531
|
+
pageNumber?: number;
|
|
532
|
+
/**
|
|
533
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
534
|
+
*/
|
|
535
|
+
take?: number;
|
|
536
|
+
/**
|
|
537
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
538
|
+
*/
|
|
539
|
+
limitListRequests?: boolean;
|
|
540
|
+
/**
|
|
541
|
+
* Gets or sets the Tenant Id.
|
|
542
|
+
*/
|
|
543
|
+
tenantId?: string;
|
|
544
|
+
/**
|
|
545
|
+
* Gets or sets the Modifed By Id.
|
|
546
|
+
*/
|
|
547
|
+
modifiedById?: string;
|
|
548
|
+
/**
|
|
549
|
+
* Gets or sets the Modifed By Ids.
|
|
550
|
+
*/
|
|
551
|
+
modifiedByIds?: Array<string>;
|
|
552
|
+
/**
|
|
553
|
+
* Gets or sets the Date Created greater than equal to.
|
|
554
|
+
*/
|
|
555
|
+
dateCreatedGte?: string;
|
|
556
|
+
/**
|
|
557
|
+
* Gets or sets the Date Created less than equal to.
|
|
558
|
+
*/
|
|
559
|
+
dateCreatedLte?: string;
|
|
560
|
+
/**
|
|
561
|
+
* Gets or sets the queryable only is live status.
|
|
562
|
+
*/
|
|
563
|
+
isLive?: boolean;
|
|
564
|
+
/**
|
|
565
|
+
* Gets or sets the sort order direction.
|
|
566
|
+
*/
|
|
567
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
568
|
+
}): CancelablePromise<boolean>;
|
|
569
|
+
/**
|
|
570
|
+
* Gets a list of resources.
|
|
571
|
+
* @returns VenueBadmintonEnglandReportPage Success
|
|
572
|
+
* @throws ApiError
|
|
573
|
+
*/
|
|
574
|
+
getPage({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
575
|
+
/**
|
|
576
|
+
* Gets or sets the page number for paged queries.
|
|
577
|
+
*/
|
|
578
|
+
pageNumber?: number;
|
|
579
|
+
/**
|
|
580
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
581
|
+
*/
|
|
582
|
+
take?: number;
|
|
583
|
+
/**
|
|
584
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
585
|
+
*/
|
|
586
|
+
limitListRequests?: boolean;
|
|
587
|
+
/**
|
|
588
|
+
* Gets or sets the Tenant Id.
|
|
589
|
+
*/
|
|
590
|
+
tenantId?: string;
|
|
591
|
+
/**
|
|
592
|
+
* Gets or sets the Modifed By Id.
|
|
593
|
+
*/
|
|
594
|
+
modifiedById?: string;
|
|
595
|
+
/**
|
|
596
|
+
* Gets or sets the Modifed By Ids.
|
|
597
|
+
*/
|
|
598
|
+
modifiedByIds?: Array<string>;
|
|
599
|
+
/**
|
|
600
|
+
* Gets or sets the Date Created greater than equal to.
|
|
601
|
+
*/
|
|
602
|
+
dateCreatedGte?: string;
|
|
603
|
+
/**
|
|
604
|
+
* Gets or sets the Date Created less than equal to.
|
|
605
|
+
*/
|
|
606
|
+
dateCreatedLte?: string;
|
|
607
|
+
/**
|
|
608
|
+
* Gets or sets the queryable only is live status.
|
|
609
|
+
*/
|
|
610
|
+
isLive?: boolean;
|
|
611
|
+
/**
|
|
612
|
+
* Gets or sets the sort order direction.
|
|
613
|
+
*/
|
|
614
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
615
|
+
}): CancelablePromise<VenueBadmintonEnglandReportPage>;
|
|
616
|
+
/**
|
|
617
|
+
* Deletes the resource.
|
|
618
|
+
* @returns any Success
|
|
619
|
+
* @throws ApiError
|
|
620
|
+
*/
|
|
621
|
+
deleteByObject({ requestBody, }: {
|
|
622
|
+
/**
|
|
623
|
+
* The <typeparamref name="TObject" /> model.
|
|
624
|
+
*/
|
|
625
|
+
requestBody?: VenueBadmintonEnglandReport;
|
|
626
|
+
}): CancelablePromise<any>;
|
|
627
|
+
/**
|
|
628
|
+
* Gets a list of resources.
|
|
629
|
+
* @returns VenueBadmintonEnglandReport Success
|
|
630
|
+
* @throws ApiError
|
|
631
|
+
*/
|
|
632
|
+
getListIdName({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
633
|
+
/**
|
|
634
|
+
* Gets or sets the page number for paged queries.
|
|
635
|
+
*/
|
|
636
|
+
pageNumber?: number;
|
|
637
|
+
/**
|
|
638
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
639
|
+
*/
|
|
640
|
+
take?: number;
|
|
641
|
+
/**
|
|
642
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
643
|
+
*/
|
|
644
|
+
limitListRequests?: boolean;
|
|
645
|
+
/**
|
|
646
|
+
* Gets or sets the Tenant Id.
|
|
647
|
+
*/
|
|
648
|
+
tenantId?: string;
|
|
649
|
+
/**
|
|
650
|
+
* Gets or sets the Modifed By Id.
|
|
651
|
+
*/
|
|
652
|
+
modifiedById?: string;
|
|
653
|
+
/**
|
|
654
|
+
* Gets or sets the Modifed By Ids.
|
|
655
|
+
*/
|
|
656
|
+
modifiedByIds?: Array<string>;
|
|
657
|
+
/**
|
|
658
|
+
* Gets or sets the Date Created greater than equal to.
|
|
659
|
+
*/
|
|
660
|
+
dateCreatedGte?: string;
|
|
661
|
+
/**
|
|
662
|
+
* Gets or sets the Date Created less than equal to.
|
|
663
|
+
*/
|
|
664
|
+
dateCreatedLte?: string;
|
|
665
|
+
/**
|
|
666
|
+
* Gets or sets the queryable only is live status.
|
|
667
|
+
*/
|
|
668
|
+
isLive?: boolean;
|
|
669
|
+
/**
|
|
670
|
+
* Gets or sets the sort order direction.
|
|
671
|
+
*/
|
|
672
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
673
|
+
}): CancelablePromise<Array<VenueBadmintonEnglandReport>>;
|
|
674
|
+
/**
|
|
675
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
676
|
+
* @returns VenueBadmintonEnglandReport Success
|
|
677
|
+
* @throws ApiError
|
|
678
|
+
*/
|
|
679
|
+
post({ requestBody, }: {
|
|
680
|
+
/**
|
|
681
|
+
* The <typeparamref name="TObject" /> model.
|
|
682
|
+
*/
|
|
683
|
+
requestBody?: VenueBadmintonEnglandReportPost;
|
|
684
|
+
}): CancelablePromise<VenueBadmintonEnglandReport>;
|
|
685
|
+
/**
|
|
686
|
+
* Patches the resource.
|
|
687
|
+
* @returns VenueBadmintonEnglandReport Success
|
|
688
|
+
* @throws ApiError
|
|
689
|
+
*/
|
|
690
|
+
patch({ requestBody, }: {
|
|
691
|
+
/**
|
|
692
|
+
* The <typeparamref name="TObject" /> model.
|
|
693
|
+
*/
|
|
694
|
+
requestBody?: VenueBadmintonEnglandReportPatch;
|
|
695
|
+
}): CancelablePromise<VenueBadmintonEnglandReport>;
|
|
696
|
+
/**
|
|
697
|
+
* Inserts a list of resources.
|
|
698
|
+
* @returns VenueBadmintonEnglandReport Success
|
|
699
|
+
* @throws ApiError
|
|
700
|
+
*/
|
|
701
|
+
postList({ requestBody, }: {
|
|
702
|
+
/**
|
|
703
|
+
* The list of <typeparamref name="TObject" />.
|
|
704
|
+
*/
|
|
705
|
+
requestBody?: Array<VenueBadmintonEnglandReportPost>;
|
|
706
|
+
}): CancelablePromise<Array<VenueBadmintonEnglandReport>>;
|
|
707
|
+
/**
|
|
708
|
+
* Patches the resource.
|
|
709
|
+
* @returns VenueBadmintonEnglandReport Success
|
|
710
|
+
* @throws ApiError
|
|
711
|
+
*/
|
|
712
|
+
patchWithReferences({ requestBody, }: {
|
|
713
|
+
/**
|
|
714
|
+
* The <typeparamref name="TObject" /> model.
|
|
715
|
+
*/
|
|
716
|
+
requestBody?: VenueBadmintonEnglandReportPatch;
|
|
717
|
+
}): CancelablePromise<VenueBadmintonEnglandReport>;
|
|
718
|
+
/**
|
|
719
|
+
* Returns a value indicating whether the resource is deletable.
|
|
720
|
+
* @returns boolean Success
|
|
721
|
+
* @throws ApiError
|
|
722
|
+
*/
|
|
723
|
+
canDelete({ id, }: {
|
|
724
|
+
/**
|
|
725
|
+
* The <typeparamref name="TObject" /> id.
|
|
726
|
+
*/
|
|
727
|
+
id: string;
|
|
728
|
+
}): CancelablePromise<boolean>;
|
|
729
|
+
}
|
|
730
|
+
|
|
274
731
|
/**
|
|
275
732
|
* Represents a Country Tax within the Reach application.
|
|
276
733
|
*/
|
|
@@ -836,7 +1293,7 @@ type Programme = {
|
|
|
836
1293
|
/**
|
|
837
1294
|
* Gets or sets the programmes name.
|
|
838
1295
|
*/
|
|
839
|
-
name
|
|
1296
|
+
name?: string | null;
|
|
840
1297
|
/**
|
|
841
1298
|
* Gets or sets the programmes url slug.
|
|
842
1299
|
*/
|
|
@@ -844,7 +1301,12 @@ type Programme = {
|
|
|
844
1301
|
/**
|
|
845
1302
|
* Gets or sets the programmes description.
|
|
846
1303
|
*/
|
|
847
|
-
description
|
|
1304
|
+
description?: string | null;
|
|
1305
|
+
/**
|
|
1306
|
+
* Gets or sets the programme image url.
|
|
1307
|
+
* @deprecated
|
|
1308
|
+
*/
|
|
1309
|
+
imageUrl?: string | null;
|
|
848
1310
|
/**
|
|
849
1311
|
* Gets or sets a value indicating whether the programme is active.
|
|
850
1312
|
*/
|
|
@@ -1514,6 +1976,11 @@ type Session = {
|
|
|
1514
1976
|
* Gets or sets the session description.
|
|
1515
1977
|
*/
|
|
1516
1978
|
description?: string | null;
|
|
1979
|
+
/**
|
|
1980
|
+
* Gets or sets the session image url.
|
|
1981
|
+
* @deprecated
|
|
1982
|
+
*/
|
|
1983
|
+
imageUrl?: string | null;
|
|
1517
1984
|
/**
|
|
1518
1985
|
* Gets or sets the openactive activity Id.
|
|
1519
1986
|
*/
|
|
@@ -1556,7 +2023,7 @@ type Session = {
|
|
|
1556
2023
|
*/
|
|
1557
2024
|
online?: boolean | null;
|
|
1558
2025
|
/**
|
|
1559
|
-
* Gets or sets
|
|
2026
|
+
* Gets or sets additional support options.
|
|
1560
2027
|
*/
|
|
1561
2028
|
additionalSupport?: Array<string> | null;
|
|
1562
2029
|
/**
|
|
@@ -1853,6 +2320,11 @@ type Facility = {
|
|
|
1853
2320
|
* Gets or sets the facility description.
|
|
1854
2321
|
*/
|
|
1855
2322
|
description?: string | null;
|
|
2323
|
+
/**
|
|
2324
|
+
* Gets or sets the facility image url.
|
|
2325
|
+
* @deprecated
|
|
2326
|
+
*/
|
|
2327
|
+
imageUrl?: string | null;
|
|
1856
2328
|
facilityIndividualsType?: FacilityIndividualsType;
|
|
1857
2329
|
/**
|
|
1858
2330
|
* Gets or sets the openactive activity Id.
|
|
@@ -2090,6 +2562,11 @@ type Venue = {
|
|
|
2090
2562
|
* Gets or sets the venues description.
|
|
2091
2563
|
*/
|
|
2092
2564
|
description: string;
|
|
2565
|
+
/**
|
|
2566
|
+
* Gets or sets the venue image url.
|
|
2567
|
+
* @deprecated
|
|
2568
|
+
*/
|
|
2569
|
+
imageUrl?: string | null;
|
|
2093
2570
|
/**
|
|
2094
2571
|
* Gets or sets the venues street address.
|
|
2095
2572
|
*/
|
|
@@ -2555,7 +3032,7 @@ type CourseSession = {
|
|
|
2555
3032
|
/**
|
|
2556
3033
|
* Gets or sets the scheduled session start date time in UTC as is the applications required convention. (this datetime must always be UTC).
|
|
2557
3034
|
*/
|
|
2558
|
-
startDateTime
|
|
3035
|
+
startDateTime?: string | null;
|
|
2559
3036
|
/**
|
|
2560
3037
|
* Gets or sets the scheduled session end date time in UTC as is the applications required convention. (this datetime must always be UTC).
|
|
2561
3038
|
*/
|
|
@@ -2636,6 +3113,11 @@ type Course = {
|
|
|
2636
3113
|
* Gets or sets the course description.
|
|
2637
3114
|
*/
|
|
2638
3115
|
description?: string | null;
|
|
3116
|
+
/**
|
|
3117
|
+
* Gets or sets the course image url.
|
|
3118
|
+
* @deprecated
|
|
3119
|
+
*/
|
|
3120
|
+
imageUrl?: string | null;
|
|
2639
3121
|
/**
|
|
2640
3122
|
* Gets or sets the room name.
|
|
2641
3123
|
*/
|
|
@@ -3257,28 +3739,6 @@ type Order = {
|
|
|
3257
3739
|
cancellable?: CustomerCancellationOption;
|
|
3258
3740
|
};
|
|
3259
3741
|
|
|
3260
|
-
/**
|
|
3261
|
-
* Describes meta data for results returned as pages.
|
|
3262
|
-
*/
|
|
3263
|
-
type Pagination = {
|
|
3264
|
-
/**
|
|
3265
|
-
* Gets the page number.
|
|
3266
|
-
*/
|
|
3267
|
-
readonly pageNumber: number;
|
|
3268
|
-
/**
|
|
3269
|
-
* Gets the total number of pages.
|
|
3270
|
-
*/
|
|
3271
|
-
readonly totalPages: number;
|
|
3272
|
-
/**
|
|
3273
|
-
* Gets the total number of items in each page.
|
|
3274
|
-
*/
|
|
3275
|
-
readonly itemsPerPage: number;
|
|
3276
|
-
/**
|
|
3277
|
-
* Gets the total number of items.
|
|
3278
|
-
*/
|
|
3279
|
-
readonly totalItems: number;
|
|
3280
|
-
};
|
|
3281
|
-
|
|
3282
3742
|
type OrderPage = {
|
|
3283
3743
|
pagination?: Pagination;
|
|
3284
3744
|
readonly items?: Array<Order> | null;
|
|
@@ -3291,11 +3751,11 @@ type OrderPatch = {
|
|
|
3291
3751
|
/**
|
|
3292
3752
|
* Gets or sets the tenant Id.
|
|
3293
3753
|
*/
|
|
3294
|
-
tenantId
|
|
3754
|
+
tenantId: string;
|
|
3295
3755
|
/**
|
|
3296
3756
|
* Gets or sets the Id.
|
|
3297
3757
|
*/
|
|
3298
|
-
id
|
|
3758
|
+
id: string;
|
|
3299
3759
|
};
|
|
3300
3760
|
|
|
3301
3761
|
/**
|
|
@@ -3305,7 +3765,7 @@ type OrderPost = {
|
|
|
3305
3765
|
/**
|
|
3306
3766
|
* Gets or sets the tenant Id.
|
|
3307
3767
|
*/
|
|
3308
|
-
tenantId
|
|
3768
|
+
tenantId: string;
|
|
3309
3769
|
};
|
|
3310
3770
|
|
|
3311
3771
|
declare class BookingService {
|
|
@@ -3988,6 +4448,24 @@ type CoursePage = {
|
|
|
3988
4448
|
readonly items?: Array<Course> | null;
|
|
3989
4449
|
};
|
|
3990
4450
|
|
|
4451
|
+
/**
|
|
4452
|
+
* email settings.
|
|
4453
|
+
*/
|
|
4454
|
+
type UpdateEmailSettings = {
|
|
4455
|
+
/**
|
|
4456
|
+
* Gets or sets the order confirmation text.
|
|
4457
|
+
*/
|
|
4458
|
+
orderConfimationText?: string | null;
|
|
4459
|
+
/**
|
|
4460
|
+
* Gets or sets the order post completion text.
|
|
4461
|
+
*/
|
|
4462
|
+
postCompletionSubject?: string | null;
|
|
4463
|
+
/**
|
|
4464
|
+
* Gets or sets the order post completion text.
|
|
4465
|
+
*/
|
|
4466
|
+
postCompletionText?: string | null;
|
|
4467
|
+
};
|
|
4468
|
+
|
|
3991
4469
|
/**
|
|
3992
4470
|
* Post model for course updates.
|
|
3993
4471
|
*/
|
|
@@ -3995,11 +4473,12 @@ type CoursePatch = {
|
|
|
3995
4473
|
/**
|
|
3996
4474
|
* Gets or sets the tenant Id.
|
|
3997
4475
|
*/
|
|
3998
|
-
tenantId
|
|
4476
|
+
tenantId: string;
|
|
3999
4477
|
/**
|
|
4000
4478
|
* Gets or sets the Id.
|
|
4001
4479
|
*/
|
|
4002
|
-
id
|
|
4480
|
+
id: string;
|
|
4481
|
+
emailSettings?: UpdateEmailSettings;
|
|
4003
4482
|
};
|
|
4004
4483
|
|
|
4005
4484
|
/**
|
|
@@ -4009,7 +4488,8 @@ type CoursePost = {
|
|
|
4009
4488
|
/**
|
|
4010
4489
|
* Gets or sets the tenant Id.
|
|
4011
4490
|
*/
|
|
4012
|
-
tenantId
|
|
4491
|
+
tenantId: string;
|
|
4492
|
+
emailSettings?: UpdateEmailSettings;
|
|
4013
4493
|
};
|
|
4014
4494
|
|
|
4015
4495
|
/**
|
|
@@ -4557,11 +5037,11 @@ type CourseSessionPatch = {
|
|
|
4557
5037
|
/**
|
|
4558
5038
|
* Gets or sets the tenant Id.
|
|
4559
5039
|
*/
|
|
4560
|
-
tenantId
|
|
5040
|
+
tenantId: string;
|
|
4561
5041
|
/**
|
|
4562
5042
|
* Gets or sets the Id.
|
|
4563
5043
|
*/
|
|
4564
|
-
id
|
|
5044
|
+
id: string;
|
|
4565
5045
|
};
|
|
4566
5046
|
|
|
4567
5047
|
/**
|
|
@@ -4571,7 +5051,7 @@ type CourseSessionPost = {
|
|
|
4571
5051
|
/**
|
|
4572
5052
|
* Gets or sets the tenant Id.
|
|
4573
5053
|
*/
|
|
4574
|
-
tenantId
|
|
5054
|
+
tenantId: string;
|
|
4575
5055
|
};
|
|
4576
5056
|
|
|
4577
5057
|
declare class CourseSessionsService {
|
|
@@ -4981,11 +5461,11 @@ type CourseSessionSchedulePatch = {
|
|
|
4981
5461
|
/**
|
|
4982
5462
|
* Gets or sets the tenant Id.
|
|
4983
5463
|
*/
|
|
4984
|
-
tenantId
|
|
5464
|
+
tenantId: string;
|
|
4985
5465
|
/**
|
|
4986
5466
|
* Gets or sets the Id.
|
|
4987
5467
|
*/
|
|
4988
|
-
id
|
|
5468
|
+
id: string;
|
|
4989
5469
|
};
|
|
4990
5470
|
|
|
4991
5471
|
/**
|
|
@@ -4995,7 +5475,7 @@ type CourseSessionSchedulePost = {
|
|
|
4995
5475
|
/**
|
|
4996
5476
|
* Gets or sets the tenant Id.
|
|
4997
5477
|
*/
|
|
4998
|
-
tenantId
|
|
5478
|
+
tenantId: string;
|
|
4999
5479
|
};
|
|
5000
5480
|
|
|
5001
5481
|
declare class CourseSessionSchedulesService {
|
|
@@ -5321,11 +5801,11 @@ type CustomerPatch = {
|
|
|
5321
5801
|
/**
|
|
5322
5802
|
* Gets or sets the tenant Id.
|
|
5323
5803
|
*/
|
|
5324
|
-
tenantId
|
|
5804
|
+
tenantId: string;
|
|
5325
5805
|
/**
|
|
5326
5806
|
* Gets or sets the Id.
|
|
5327
5807
|
*/
|
|
5328
|
-
id
|
|
5808
|
+
id: string;
|
|
5329
5809
|
};
|
|
5330
5810
|
|
|
5331
5811
|
/**
|
|
@@ -5335,7 +5815,7 @@ type CustomerPost = {
|
|
|
5335
5815
|
/**
|
|
5336
5816
|
* Gets or sets the tenant Id.
|
|
5337
5817
|
*/
|
|
5338
|
-
tenantId
|
|
5818
|
+
tenantId: string;
|
|
5339
5819
|
};
|
|
5340
5820
|
|
|
5341
5821
|
declare class CustomersService {
|
|
@@ -5798,11 +6278,11 @@ type EmailReminderSchedulePatch = {
|
|
|
5798
6278
|
/**
|
|
5799
6279
|
* Gets or sets the tenant Id.
|
|
5800
6280
|
*/
|
|
5801
|
-
tenantId
|
|
6281
|
+
tenantId: string;
|
|
5802
6282
|
/**
|
|
5803
6283
|
* Gets or sets the Id.
|
|
5804
6284
|
*/
|
|
5805
|
-
id
|
|
6285
|
+
id: string;
|
|
5806
6286
|
};
|
|
5807
6287
|
|
|
5808
6288
|
/**
|
|
@@ -5812,7 +6292,7 @@ type EmailReminderSchedulePost = {
|
|
|
5812
6292
|
/**
|
|
5813
6293
|
* Gets or sets the tenant Id.
|
|
5814
6294
|
*/
|
|
5815
|
-
tenantId
|
|
6295
|
+
tenantId: string;
|
|
5816
6296
|
};
|
|
5817
6297
|
|
|
5818
6298
|
declare class EmailReminderSchedulesService {
|
|
@@ -6161,11 +6641,11 @@ type EmailSettingPatch = {
|
|
|
6161
6641
|
/**
|
|
6162
6642
|
* Gets or sets the tenant Id.
|
|
6163
6643
|
*/
|
|
6164
|
-
tenantId
|
|
6644
|
+
tenantId: string;
|
|
6165
6645
|
/**
|
|
6166
6646
|
* Gets or sets the Id.
|
|
6167
6647
|
*/
|
|
6168
|
-
id
|
|
6648
|
+
id: string;
|
|
6169
6649
|
};
|
|
6170
6650
|
|
|
6171
6651
|
/**
|
|
@@ -6175,7 +6655,7 @@ type EmailSettingPost = {
|
|
|
6175
6655
|
/**
|
|
6176
6656
|
* Gets or sets the tenant Id.
|
|
6177
6657
|
*/
|
|
6178
|
-
tenantId
|
|
6658
|
+
tenantId: string;
|
|
6179
6659
|
};
|
|
6180
6660
|
|
|
6181
6661
|
declare class EmailSettingsService {
|
|
@@ -6472,11 +6952,12 @@ type FacilityPatch = {
|
|
|
6472
6952
|
/**
|
|
6473
6953
|
* Gets or sets the tenant Id.
|
|
6474
6954
|
*/
|
|
6475
|
-
tenantId
|
|
6955
|
+
tenantId: string;
|
|
6476
6956
|
/**
|
|
6477
6957
|
* Gets or sets the Id.
|
|
6478
6958
|
*/
|
|
6479
|
-
id
|
|
6959
|
+
id: string;
|
|
6960
|
+
emailSettings?: UpdateEmailSettings;
|
|
6480
6961
|
};
|
|
6481
6962
|
|
|
6482
6963
|
/**
|
|
@@ -6486,7 +6967,8 @@ type FacilityPost = {
|
|
|
6486
6967
|
/**
|
|
6487
6968
|
* Gets or sets the tenant Id.
|
|
6488
6969
|
*/
|
|
6489
|
-
tenantId
|
|
6970
|
+
tenantId: string;
|
|
6971
|
+
emailSettings?: UpdateEmailSettings;
|
|
6490
6972
|
};
|
|
6491
6973
|
|
|
6492
6974
|
declare class FacilitiesService {
|
|
@@ -6841,11 +7323,11 @@ type FacilityIndividualPatch = {
|
|
|
6841
7323
|
/**
|
|
6842
7324
|
* Gets or sets the tenant Id.
|
|
6843
7325
|
*/
|
|
6844
|
-
tenantId
|
|
7326
|
+
tenantId: string;
|
|
6845
7327
|
/**
|
|
6846
7328
|
* Gets or sets the Id.
|
|
6847
7329
|
*/
|
|
6848
|
-
id
|
|
7330
|
+
id: string;
|
|
6849
7331
|
};
|
|
6850
7332
|
|
|
6851
7333
|
/**
|
|
@@ -6855,7 +7337,7 @@ type FacilityIndividualPost = {
|
|
|
6855
7337
|
/**
|
|
6856
7338
|
* Gets or sets the tenant Id.
|
|
6857
7339
|
*/
|
|
6858
|
-
tenantId
|
|
7340
|
+
tenantId: string;
|
|
6859
7341
|
};
|
|
6860
7342
|
|
|
6861
7343
|
declare class FacilityIndividualsService {
|
|
@@ -7304,11 +7786,11 @@ type GenericActivityPatch = {
|
|
|
7304
7786
|
/**
|
|
7305
7787
|
* Gets or sets the tenant Id.
|
|
7306
7788
|
*/
|
|
7307
|
-
tenantId
|
|
7789
|
+
tenantId: string;
|
|
7308
7790
|
/**
|
|
7309
7791
|
* Gets or sets the Id.
|
|
7310
7792
|
*/
|
|
7311
|
-
id
|
|
7793
|
+
id: string;
|
|
7312
7794
|
};
|
|
7313
7795
|
|
|
7314
7796
|
/**
|
|
@@ -7318,7 +7800,7 @@ type GenericActivityPost = {
|
|
|
7318
7800
|
/**
|
|
7319
7801
|
* Gets or sets the tenant Id.
|
|
7320
7802
|
*/
|
|
7321
|
-
tenantId
|
|
7803
|
+
tenantId: string;
|
|
7322
7804
|
};
|
|
7323
7805
|
|
|
7324
7806
|
declare class GenericActivityService {
|
|
@@ -7351,7 +7833,7 @@ declare class GenericActivityService {
|
|
|
7351
7833
|
* @returns boolean Success
|
|
7352
7834
|
* @throws ApiError
|
|
7353
7835
|
*/
|
|
7354
|
-
exists({ venueId, programmeId, online, archived, deleted, includeNextOpportunity, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
7836
|
+
exists({ venueId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
7355
7837
|
/**
|
|
7356
7838
|
* Gets or sets the queryable Venue Id.
|
|
7357
7839
|
*/
|
|
@@ -7372,6 +7854,10 @@ declare class GenericActivityService {
|
|
|
7372
7854
|
* Gets or sets a value indicating whether to include deleted activities.
|
|
7373
7855
|
*/
|
|
7374
7856
|
deleted?: boolean;
|
|
7857
|
+
/**
|
|
7858
|
+
* Gets or sets the activity type.
|
|
7859
|
+
*/
|
|
7860
|
+
activityType?: ActivityType;
|
|
7375
7861
|
/**
|
|
7376
7862
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
7377
7863
|
*/
|
|
@@ -7422,7 +7908,7 @@ declare class GenericActivityService {
|
|
|
7422
7908
|
* @returns GenericActivityPage Success
|
|
7423
7909
|
* @throws ApiError
|
|
7424
7910
|
*/
|
|
7425
|
-
getPage({ venueId, programmeId, online, archived, deleted, includeNextOpportunity, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
7911
|
+
getPage({ venueId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
7426
7912
|
/**
|
|
7427
7913
|
* Gets or sets the queryable Venue Id.
|
|
7428
7914
|
*/
|
|
@@ -7443,6 +7929,10 @@ declare class GenericActivityService {
|
|
|
7443
7929
|
* Gets or sets a value indicating whether to include deleted activities.
|
|
7444
7930
|
*/
|
|
7445
7931
|
deleted?: boolean;
|
|
7932
|
+
/**
|
|
7933
|
+
* Gets or sets the activity type.
|
|
7934
|
+
*/
|
|
7935
|
+
activityType?: ActivityType;
|
|
7446
7936
|
/**
|
|
7447
7937
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
7448
7938
|
*/
|
|
@@ -7504,7 +7994,7 @@ declare class GenericActivityService {
|
|
|
7504
7994
|
* @returns GenericActivity Success
|
|
7505
7995
|
* @throws ApiError
|
|
7506
7996
|
*/
|
|
7507
|
-
getListIdName({ venueId, programmeId, online, archived, deleted, includeNextOpportunity, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
7997
|
+
getListIdName({ venueId, programmeId, online, archived, deleted, activityType, includeNextOpportunity, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
7508
7998
|
/**
|
|
7509
7999
|
* Gets or sets the queryable Venue Id.
|
|
7510
8000
|
*/
|
|
@@ -7525,6 +8015,10 @@ declare class GenericActivityService {
|
|
|
7525
8015
|
* Gets or sets a value indicating whether to include deleted activities.
|
|
7526
8016
|
*/
|
|
7527
8017
|
deleted?: boolean;
|
|
8018
|
+
/**
|
|
8019
|
+
* Gets or sets the activity type.
|
|
8020
|
+
*/
|
|
8021
|
+
activityType?: ActivityType;
|
|
7528
8022
|
/**
|
|
7529
8023
|
* Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
7530
8024
|
*/
|
|
@@ -7891,11 +8385,11 @@ type ImagePatch = {
|
|
|
7891
8385
|
/**
|
|
7892
8386
|
* Gets or sets the tenant Id.
|
|
7893
8387
|
*/
|
|
7894
|
-
tenantId
|
|
8388
|
+
tenantId: string;
|
|
7895
8389
|
/**
|
|
7896
8390
|
* Gets or sets the Id.
|
|
7897
8391
|
*/
|
|
7898
|
-
id
|
|
8392
|
+
id: string;
|
|
7899
8393
|
};
|
|
7900
8394
|
|
|
7901
8395
|
/**
|
|
@@ -7905,7 +8399,7 @@ type ImagePost = {
|
|
|
7905
8399
|
/**
|
|
7906
8400
|
* Gets or sets the tenant Id.
|
|
7907
8401
|
*/
|
|
7908
|
-
tenantId
|
|
8402
|
+
tenantId: string;
|
|
7909
8403
|
};
|
|
7910
8404
|
|
|
7911
8405
|
declare class ImagesService {
|
|
@@ -8870,11 +9364,11 @@ type NotificationQueuePatch = {
|
|
|
8870
9364
|
/**
|
|
8871
9365
|
* Gets or sets the tenant Id.
|
|
8872
9366
|
*/
|
|
8873
|
-
tenantId
|
|
9367
|
+
tenantId: string;
|
|
8874
9368
|
/**
|
|
8875
9369
|
* Gets or sets the Id.
|
|
8876
9370
|
*/
|
|
8877
|
-
id
|
|
9371
|
+
id: string;
|
|
8878
9372
|
};
|
|
8879
9373
|
|
|
8880
9374
|
/**
|
|
@@ -8884,7 +9378,7 @@ type NotificationQueuePost = {
|
|
|
8884
9378
|
/**
|
|
8885
9379
|
* Gets or sets the tenant Id.
|
|
8886
9380
|
*/
|
|
8887
|
-
tenantId
|
|
9381
|
+
tenantId: string;
|
|
8888
9382
|
};
|
|
8889
9383
|
|
|
8890
9384
|
declare class NotificationQueueService {
|
|
@@ -9249,11 +9743,11 @@ type NotificationSettingPatch = {
|
|
|
9249
9743
|
/**
|
|
9250
9744
|
* Gets or sets the tenant Id.
|
|
9251
9745
|
*/
|
|
9252
|
-
tenantId
|
|
9746
|
+
tenantId: string;
|
|
9253
9747
|
/**
|
|
9254
9748
|
* Gets or sets the Id.
|
|
9255
9749
|
*/
|
|
9256
|
-
id
|
|
9750
|
+
id: string;
|
|
9257
9751
|
};
|
|
9258
9752
|
|
|
9259
9753
|
/**
|
|
@@ -9263,7 +9757,7 @@ type NotificationSettingPost = {
|
|
|
9263
9757
|
/**
|
|
9264
9758
|
* Gets or sets the tenant Id.
|
|
9265
9759
|
*/
|
|
9266
|
-
tenantId
|
|
9760
|
+
tenantId: string;
|
|
9267
9761
|
};
|
|
9268
9762
|
|
|
9269
9763
|
declare class NotificationSettingsService {
|
|
@@ -9680,11 +10174,11 @@ type OfferPatch = {
|
|
|
9680
10174
|
/**
|
|
9681
10175
|
* Gets or sets the tenant Id.
|
|
9682
10176
|
*/
|
|
9683
|
-
tenantId
|
|
10177
|
+
tenantId: string;
|
|
9684
10178
|
/**
|
|
9685
10179
|
* Gets or sets the Id.
|
|
9686
10180
|
*/
|
|
9687
|
-
id
|
|
10181
|
+
id: string;
|
|
9688
10182
|
};
|
|
9689
10183
|
|
|
9690
10184
|
/**
|
|
@@ -9694,7 +10188,7 @@ type OfferPost = {
|
|
|
9694
10188
|
/**
|
|
9695
10189
|
* Gets or sets the tenant Id.
|
|
9696
10190
|
*/
|
|
9697
|
-
tenantId
|
|
10191
|
+
tenantId: string;
|
|
9698
10192
|
};
|
|
9699
10193
|
|
|
9700
10194
|
declare class OffersService {
|
|
@@ -10130,11 +10624,11 @@ type OpenactiveFeedIntermediatePatch = {
|
|
|
10130
10624
|
/**
|
|
10131
10625
|
* Gets or sets the tenant Id.
|
|
10132
10626
|
*/
|
|
10133
|
-
tenantId
|
|
10627
|
+
tenantId: string;
|
|
10134
10628
|
/**
|
|
10135
10629
|
* Gets or sets the Id.
|
|
10136
10630
|
*/
|
|
10137
|
-
id
|
|
10631
|
+
id: string;
|
|
10138
10632
|
};
|
|
10139
10633
|
|
|
10140
10634
|
/**
|
|
@@ -10144,7 +10638,7 @@ type OpenactiveFeedIntermediatePost = {
|
|
|
10144
10638
|
/**
|
|
10145
10639
|
* Gets or sets the tenant Id.
|
|
10146
10640
|
*/
|
|
10147
|
-
tenantId
|
|
10641
|
+
tenantId: string;
|
|
10148
10642
|
};
|
|
10149
10643
|
|
|
10150
10644
|
declare class OpenactiveFeedIntermediateService {
|
|
@@ -10462,11 +10956,11 @@ type OpenactiveFeedItemPatch = {
|
|
|
10462
10956
|
/**
|
|
10463
10957
|
* Gets or sets the tenant Id.
|
|
10464
10958
|
*/
|
|
10465
|
-
tenantId
|
|
10959
|
+
tenantId: string;
|
|
10466
10960
|
/**
|
|
10467
10961
|
* Gets or sets the Id.
|
|
10468
10962
|
*/
|
|
10469
|
-
id
|
|
10963
|
+
id: string;
|
|
10470
10964
|
};
|
|
10471
10965
|
|
|
10472
10966
|
/**
|
|
@@ -10476,7 +10970,7 @@ type OpenactiveFeedItemPost = {
|
|
|
10476
10970
|
/**
|
|
10477
10971
|
* Gets or sets the tenant Id.
|
|
10478
10972
|
*/
|
|
10479
|
-
tenantId
|
|
10973
|
+
tenantId: string;
|
|
10480
10974
|
};
|
|
10481
10975
|
|
|
10482
10976
|
declare class OpenactiveFeedItemService {
|
|
@@ -10749,11 +11243,11 @@ type OrderItemPatch = {
|
|
|
10749
11243
|
/**
|
|
10750
11244
|
* Gets or sets the tenant Id.
|
|
10751
11245
|
*/
|
|
10752
|
-
tenantId
|
|
11246
|
+
tenantId: string;
|
|
10753
11247
|
/**
|
|
10754
11248
|
* Gets or sets the Id.
|
|
10755
11249
|
*/
|
|
10756
|
-
id
|
|
11250
|
+
id: string;
|
|
10757
11251
|
};
|
|
10758
11252
|
|
|
10759
11253
|
/**
|
|
@@ -10763,7 +11257,7 @@ type OrderItemPost = {
|
|
|
10763
11257
|
/**
|
|
10764
11258
|
* Gets or sets the tenant Id.
|
|
10765
11259
|
*/
|
|
10766
|
-
tenantId
|
|
11260
|
+
tenantId: string;
|
|
10767
11261
|
};
|
|
10768
11262
|
|
|
10769
11263
|
declare class OrderItemsService {
|
|
@@ -11573,11 +12067,11 @@ type OrgCourseUtilisationPatch = {
|
|
|
11573
12067
|
/**
|
|
11574
12068
|
* Gets or sets the tenant Id.
|
|
11575
12069
|
*/
|
|
11576
|
-
tenantId
|
|
12070
|
+
tenantId: string;
|
|
11577
12071
|
/**
|
|
11578
12072
|
* Gets or sets the Id.
|
|
11579
12073
|
*/
|
|
11580
|
-
id
|
|
12074
|
+
id: string;
|
|
11581
12075
|
};
|
|
11582
12076
|
|
|
11583
12077
|
/**
|
|
@@ -11587,7 +12081,7 @@ type OrgCourseUtilisationPost = {
|
|
|
11587
12081
|
/**
|
|
11588
12082
|
* Gets or sets the tenant Id.
|
|
11589
12083
|
*/
|
|
11590
|
-
tenantId
|
|
12084
|
+
tenantId: string;
|
|
11591
12085
|
};
|
|
11592
12086
|
|
|
11593
12087
|
declare class OrgCourseUtilisationService {
|
|
@@ -12034,11 +12528,11 @@ type PaymentPatch = {
|
|
|
12034
12528
|
/**
|
|
12035
12529
|
* Gets or sets the tenant Id.
|
|
12036
12530
|
*/
|
|
12037
|
-
tenantId
|
|
12531
|
+
tenantId: string;
|
|
12038
12532
|
/**
|
|
12039
12533
|
* Gets or sets the Id.
|
|
12040
12534
|
*/
|
|
12041
|
-
id
|
|
12535
|
+
id: string;
|
|
12042
12536
|
};
|
|
12043
12537
|
|
|
12044
12538
|
/**
|
|
@@ -12048,7 +12542,7 @@ type PaymentPost = {
|
|
|
12048
12542
|
/**
|
|
12049
12543
|
* Gets or sets the tenant Id.
|
|
12050
12544
|
*/
|
|
12051
|
-
tenantId
|
|
12545
|
+
tenantId: string;
|
|
12052
12546
|
};
|
|
12053
12547
|
|
|
12054
12548
|
declare class PaymentsService {
|
|
@@ -12383,11 +12877,11 @@ type PermissionPatch = {
|
|
|
12383
12877
|
/**
|
|
12384
12878
|
* Gets or sets the tenant Id.
|
|
12385
12879
|
*/
|
|
12386
|
-
tenantId
|
|
12880
|
+
tenantId: string;
|
|
12387
12881
|
/**
|
|
12388
12882
|
* Gets or sets the Id.
|
|
12389
12883
|
*/
|
|
12390
|
-
id
|
|
12884
|
+
id: string;
|
|
12391
12885
|
};
|
|
12392
12886
|
|
|
12393
12887
|
/**
|
|
@@ -12397,7 +12891,7 @@ type PermissionPost = {
|
|
|
12397
12891
|
/**
|
|
12398
12892
|
* Gets or sets the tenant Id.
|
|
12399
12893
|
*/
|
|
12400
|
-
tenantId
|
|
12894
|
+
tenantId: string;
|
|
12401
12895
|
};
|
|
12402
12896
|
|
|
12403
12897
|
declare class PermissionsService {
|
|
@@ -12735,11 +13229,11 @@ type ProgrammePatch = {
|
|
|
12735
13229
|
/**
|
|
12736
13230
|
* Gets or sets the tenant Id.
|
|
12737
13231
|
*/
|
|
12738
|
-
tenantId
|
|
13232
|
+
tenantId: string;
|
|
12739
13233
|
/**
|
|
12740
13234
|
* Gets or sets the Id.
|
|
12741
13235
|
*/
|
|
12742
|
-
id
|
|
13236
|
+
id: string;
|
|
12743
13237
|
};
|
|
12744
13238
|
|
|
12745
13239
|
/**
|
|
@@ -12749,7 +13243,7 @@ type ProgrammePost = {
|
|
|
12749
13243
|
/**
|
|
12750
13244
|
* Gets or sets the tenant Id.
|
|
12751
13245
|
*/
|
|
12752
|
-
tenantId
|
|
13246
|
+
tenantId: string;
|
|
12753
13247
|
};
|
|
12754
13248
|
|
|
12755
13249
|
declare class ProgrammesService {
|
|
@@ -14609,11 +15103,11 @@ type OrderTokenPatch = {
|
|
|
14609
15103
|
/**
|
|
14610
15104
|
* Gets or sets the tenant Id.
|
|
14611
15105
|
*/
|
|
14612
|
-
tenantId
|
|
15106
|
+
tenantId: string;
|
|
14613
15107
|
/**
|
|
14614
15108
|
* Gets or sets the Id.
|
|
14615
15109
|
*/
|
|
14616
|
-
id
|
|
15110
|
+
id: string;
|
|
14617
15111
|
};
|
|
14618
15112
|
|
|
14619
15113
|
/**
|
|
@@ -14623,7 +15117,7 @@ type OrderTokenPost = {
|
|
|
14623
15117
|
/**
|
|
14624
15118
|
* Gets or sets the tenant Id.
|
|
14625
15119
|
*/
|
|
14626
|
-
tenantId
|
|
15120
|
+
tenantId: string;
|
|
14627
15121
|
};
|
|
14628
15122
|
|
|
14629
15123
|
declare class PublicOrderTokensService {
|
|
@@ -15085,11 +15579,11 @@ type ScheduledSessionPatch = {
|
|
|
15085
15579
|
/**
|
|
15086
15580
|
* Gets or sets the tenant Id.
|
|
15087
15581
|
*/
|
|
15088
|
-
tenantId
|
|
15582
|
+
tenantId: string;
|
|
15089
15583
|
/**
|
|
15090
15584
|
* Gets or sets the Id.
|
|
15091
15585
|
*/
|
|
15092
|
-
id
|
|
15586
|
+
id: string;
|
|
15093
15587
|
};
|
|
15094
15588
|
|
|
15095
15589
|
/**
|
|
@@ -15099,7 +15593,7 @@ type ScheduledSessionPost = {
|
|
|
15099
15593
|
/**
|
|
15100
15594
|
* Gets or sets the tenant Id.
|
|
15101
15595
|
*/
|
|
15102
|
-
tenantId
|
|
15596
|
+
tenantId: string;
|
|
15103
15597
|
};
|
|
15104
15598
|
|
|
15105
15599
|
/**
|
|
@@ -15461,17 +15955,107 @@ type SessionPage = {
|
|
|
15461
15955
|
};
|
|
15462
15956
|
|
|
15463
15957
|
/**
|
|
15464
|
-
*
|
|
15958
|
+
* Patch model for session updates.
|
|
15465
15959
|
*/
|
|
15466
15960
|
type SessionPatch = {
|
|
15467
15961
|
/**
|
|
15468
15962
|
* Gets or sets the tenant Id.
|
|
15469
15963
|
*/
|
|
15470
|
-
tenantId
|
|
15964
|
+
tenantId: string;
|
|
15471
15965
|
/**
|
|
15472
15966
|
* Gets or sets the Id.
|
|
15473
15967
|
*/
|
|
15474
|
-
id
|
|
15968
|
+
id: string;
|
|
15969
|
+
/**
|
|
15970
|
+
* Gets or sets the venue id for the activity.
|
|
15971
|
+
*/
|
|
15972
|
+
venueId?: string | null;
|
|
15973
|
+
/**
|
|
15974
|
+
* Gets or sets the Activity Id.
|
|
15975
|
+
*/
|
|
15976
|
+
activityId?: number | null;
|
|
15977
|
+
/**
|
|
15978
|
+
* Gets or sets the Programme Id.
|
|
15979
|
+
*/
|
|
15980
|
+
programmeId?: string | null;
|
|
15981
|
+
/**
|
|
15982
|
+
* Gets or sets the post completion survey Id.
|
|
15983
|
+
*/
|
|
15984
|
+
postCompletionSurveyId?: string | null;
|
|
15985
|
+
/**
|
|
15986
|
+
* Gets or sets the survey Id.
|
|
15987
|
+
*/
|
|
15988
|
+
surveyId?: string | null;
|
|
15989
|
+
/**
|
|
15990
|
+
* Gets or sets the session name.
|
|
15991
|
+
*/
|
|
15992
|
+
name?: string | null;
|
|
15993
|
+
/**
|
|
15994
|
+
* Gets or sets the session description.
|
|
15995
|
+
*/
|
|
15996
|
+
description?: string | null;
|
|
15997
|
+
/**
|
|
15998
|
+
* Gets or sets the session image url.
|
|
15999
|
+
*/
|
|
16000
|
+
imageUrl?: string | null;
|
|
16001
|
+
/**
|
|
16002
|
+
* Gets or sets the meeting instructions.
|
|
16003
|
+
*/
|
|
16004
|
+
meetingInstructions?: string | null;
|
|
16005
|
+
/**
|
|
16006
|
+
* Gets or sets the session capacity.
|
|
16007
|
+
*/
|
|
16008
|
+
capacity?: number | null;
|
|
16009
|
+
/**
|
|
16010
|
+
* Gets or sets a value indicating whether the session has unlimited capacity.
|
|
16011
|
+
*/
|
|
16012
|
+
capacityUnlimited?: boolean | null;
|
|
16013
|
+
gender?: SessionGender;
|
|
16014
|
+
/**
|
|
16015
|
+
* Gets or sets the min age.
|
|
16016
|
+
*/
|
|
16017
|
+
minAge?: number | null;
|
|
16018
|
+
/**
|
|
16019
|
+
* Gets or sets the max age.
|
|
16020
|
+
*/
|
|
16021
|
+
maxAge?: number | null;
|
|
16022
|
+
/**
|
|
16023
|
+
* Gets or sets a value indicating whether the session is online and can take bookings.
|
|
16024
|
+
*/
|
|
16025
|
+
online?: boolean | null;
|
|
16026
|
+
/**
|
|
16027
|
+
* Gets or sets additional support options.
|
|
16028
|
+
*/
|
|
16029
|
+
additionalSupport?: Array<string> | null;
|
|
16030
|
+
/**
|
|
16031
|
+
* Gets or sets the contact name.
|
|
16032
|
+
*/
|
|
16033
|
+
contactName?: string | null;
|
|
16034
|
+
/**
|
|
16035
|
+
* Gets or sets the contact phone.
|
|
16036
|
+
*/
|
|
16037
|
+
contactPhone?: string | null;
|
|
16038
|
+
/**
|
|
16039
|
+
* Gets or sets the contact email.
|
|
16040
|
+
*/
|
|
16041
|
+
contactEmail?: string | null;
|
|
16042
|
+
/**
|
|
16043
|
+
* Gets or sets the session that this course was originally copied from.
|
|
16044
|
+
*/
|
|
16045
|
+
copiedFrom?: string | null;
|
|
16046
|
+
/**
|
|
16047
|
+
* Gets or sets a value indicating whether the Session can be used as a template.
|
|
16048
|
+
*/
|
|
16049
|
+
allowTemplating?: boolean | null;
|
|
16050
|
+
/**
|
|
16051
|
+
* Gets or sets a value indicating whether the session is archived and should be ignored under normal operation.
|
|
16052
|
+
*/
|
|
16053
|
+
archived?: boolean | null;
|
|
16054
|
+
/**
|
|
16055
|
+
* Gets or sets a value indicating whether the session is deleted and should be ignored under normal operation.
|
|
16056
|
+
*/
|
|
16057
|
+
deleted?: boolean | null;
|
|
16058
|
+
emailSettings?: UpdateEmailSettings;
|
|
15475
16059
|
};
|
|
15476
16060
|
|
|
15477
16061
|
/**
|
|
@@ -15481,7 +16065,8 @@ type SessionPost = {
|
|
|
15481
16065
|
/**
|
|
15482
16066
|
* Gets or sets the tenant Id.
|
|
15483
16067
|
*/
|
|
15484
|
-
tenantId
|
|
16068
|
+
tenantId: string;
|
|
16069
|
+
emailSettings?: UpdateEmailSettings;
|
|
15485
16070
|
};
|
|
15486
16071
|
|
|
15487
16072
|
declare class PublicSessionsService {
|
|
@@ -15885,11 +16470,11 @@ type SlotPatch = {
|
|
|
15885
16470
|
/**
|
|
15886
16471
|
* Gets or sets the tenant Id.
|
|
15887
16472
|
*/
|
|
15888
|
-
tenantId
|
|
16473
|
+
tenantId: string;
|
|
15889
16474
|
/**
|
|
15890
16475
|
* Gets or sets the Id.
|
|
15891
16476
|
*/
|
|
15892
|
-
id
|
|
16477
|
+
id: string;
|
|
15893
16478
|
};
|
|
15894
16479
|
|
|
15895
16480
|
/**
|
|
@@ -15899,7 +16484,7 @@ type SlotPost = {
|
|
|
15899
16484
|
/**
|
|
15900
16485
|
* Gets or sets the tenant Id.
|
|
15901
16486
|
*/
|
|
15902
|
-
tenantId
|
|
16487
|
+
tenantId: string;
|
|
15903
16488
|
};
|
|
15904
16489
|
|
|
15905
16490
|
declare class PublicSlotsService {
|
|
@@ -16503,6 +17088,24 @@ type SurveyQuestionPage = {
|
|
|
16503
17088
|
readonly items?: Array<SurveyQuestion> | null;
|
|
16504
17089
|
};
|
|
16505
17090
|
|
|
17091
|
+
/**
|
|
17092
|
+
* Survey Question options.
|
|
17093
|
+
*/
|
|
17094
|
+
type PatchSurveyQuestionOption = {
|
|
17095
|
+
/**
|
|
17096
|
+
* Gets or sets the survey question id.
|
|
17097
|
+
*/
|
|
17098
|
+
surveyQuestionId?: string | null;
|
|
17099
|
+
/**
|
|
17100
|
+
* Gets or sets the survey question option name.
|
|
17101
|
+
*/
|
|
17102
|
+
name?: string | null;
|
|
17103
|
+
/**
|
|
17104
|
+
* Gets or sets the survey question option sort number.
|
|
17105
|
+
*/
|
|
17106
|
+
sortNumber?: number | null;
|
|
17107
|
+
};
|
|
17108
|
+
|
|
16506
17109
|
/**
|
|
16507
17110
|
* Post model for survey question updates.
|
|
16508
17111
|
*/
|
|
@@ -16510,11 +17113,32 @@ type SurveyQuestionPatch = {
|
|
|
16510
17113
|
/**
|
|
16511
17114
|
* Gets or sets the tenant Id.
|
|
16512
17115
|
*/
|
|
16513
|
-
tenantId
|
|
17116
|
+
tenantId: string;
|
|
16514
17117
|
/**
|
|
16515
17118
|
* Gets or sets the Id.
|
|
16516
17119
|
*/
|
|
16517
|
-
id
|
|
17120
|
+
id: string;
|
|
17121
|
+
/**
|
|
17122
|
+
* Gets or sets the survey question name.
|
|
17123
|
+
*/
|
|
17124
|
+
name?: string | null;
|
|
17125
|
+
/**
|
|
17126
|
+
* Gets or sets the survey question number.
|
|
17127
|
+
*/
|
|
17128
|
+
number?: number;
|
|
17129
|
+
type?: SurveyQuestionType;
|
|
17130
|
+
/**
|
|
17131
|
+
* Gets or sets a value indicating whether the question is required.
|
|
17132
|
+
*/
|
|
17133
|
+
required?: boolean | null;
|
|
17134
|
+
/**
|
|
17135
|
+
* Gets or sets a value indicating whether the question is active.
|
|
17136
|
+
*/
|
|
17137
|
+
active?: boolean | null;
|
|
17138
|
+
/**
|
|
17139
|
+
* Gets or sets the surveys question options.
|
|
17140
|
+
*/
|
|
17141
|
+
options?: Array<PatchSurveyQuestionOption> | null;
|
|
16518
17142
|
};
|
|
16519
17143
|
|
|
16520
17144
|
/**
|
|
@@ -16524,7 +17148,28 @@ type SurveyQuestionPost = {
|
|
|
16524
17148
|
/**
|
|
16525
17149
|
* Gets or sets the tenant Id.
|
|
16526
17150
|
*/
|
|
16527
|
-
tenantId
|
|
17151
|
+
tenantId: string;
|
|
17152
|
+
/**
|
|
17153
|
+
* Gets or sets the survey id.
|
|
17154
|
+
*/
|
|
17155
|
+
surveyId?: string | null;
|
|
17156
|
+
/**
|
|
17157
|
+
* Gets or sets the survey question name.
|
|
17158
|
+
*/
|
|
17159
|
+
name?: string | null;
|
|
17160
|
+
/**
|
|
17161
|
+
* Gets or sets the survey question number.
|
|
17162
|
+
*/
|
|
17163
|
+
number?: number;
|
|
17164
|
+
type?: SurveyQuestionType;
|
|
17165
|
+
/**
|
|
17166
|
+
* Gets or sets a value indicating whether the question is required.
|
|
17167
|
+
*/
|
|
17168
|
+
required?: boolean | null;
|
|
17169
|
+
/**
|
|
17170
|
+
* Gets or sets a value indicating whether the question is active.
|
|
17171
|
+
*/
|
|
17172
|
+
active?: boolean | null;
|
|
16528
17173
|
};
|
|
16529
17174
|
|
|
16530
17175
|
/**
|
|
@@ -16835,11 +17480,21 @@ type SurveyPatch = {
|
|
|
16835
17480
|
/**
|
|
16836
17481
|
* Gets or sets the tenant Id.
|
|
16837
17482
|
*/
|
|
16838
|
-
tenantId
|
|
17483
|
+
tenantId: string;
|
|
16839
17484
|
/**
|
|
16840
17485
|
* Gets or sets the Id.
|
|
16841
17486
|
*/
|
|
16842
|
-
id
|
|
17487
|
+
id: string;
|
|
17488
|
+
/**
|
|
17489
|
+
* Gets or sets the survey name.
|
|
17490
|
+
*/
|
|
17491
|
+
name?: string | null;
|
|
17492
|
+
type?: SurveyType;
|
|
17493
|
+
target?: SurveyQuestionsTarget;
|
|
17494
|
+
/**
|
|
17495
|
+
* Gets or sets a value indicating whether the survey is active.
|
|
17496
|
+
*/
|
|
17497
|
+
active?: boolean | null;
|
|
16843
17498
|
};
|
|
16844
17499
|
|
|
16845
17500
|
/**
|
|
@@ -16849,7 +17504,17 @@ type SurveyPost = {
|
|
|
16849
17504
|
/**
|
|
16850
17505
|
* Gets or sets the tenant Id.
|
|
16851
17506
|
*/
|
|
16852
|
-
tenantId
|
|
17507
|
+
tenantId: string;
|
|
17508
|
+
/**
|
|
17509
|
+
* Gets or sets the survey name.
|
|
17510
|
+
*/
|
|
17511
|
+
name?: string | null;
|
|
17512
|
+
type?: SurveyType;
|
|
17513
|
+
target?: SurveyQuestionsTarget;
|
|
17514
|
+
/**
|
|
17515
|
+
* Gets or sets a value indicating whether the survey is active.
|
|
17516
|
+
*/
|
|
17517
|
+
active?: boolean | null;
|
|
16853
17518
|
};
|
|
16854
17519
|
|
|
16855
17520
|
declare class PublicSurveysService {
|
|
@@ -17050,11 +17715,11 @@ type TenantPatch = {
|
|
|
17050
17715
|
/**
|
|
17051
17716
|
* Gets or sets the tenant Id.
|
|
17052
17717
|
*/
|
|
17053
|
-
tenantId
|
|
17718
|
+
tenantId: string;
|
|
17054
17719
|
/**
|
|
17055
17720
|
* Gets or sets the Id.
|
|
17056
17721
|
*/
|
|
17057
|
-
id
|
|
17722
|
+
id: string;
|
|
17058
17723
|
};
|
|
17059
17724
|
|
|
17060
17725
|
/**
|
|
@@ -17064,7 +17729,7 @@ type TenantPost = {
|
|
|
17064
17729
|
/**
|
|
17065
17730
|
* Gets or sets the tenant Id.
|
|
17066
17731
|
*/
|
|
17067
|
-
tenantId
|
|
17732
|
+
tenantId: string;
|
|
17068
17733
|
};
|
|
17069
17734
|
|
|
17070
17735
|
declare class PublicTenantsService {
|
|
@@ -17295,11 +17960,12 @@ type VenuePatch = {
|
|
|
17295
17960
|
/**
|
|
17296
17961
|
* Gets or sets the tenant Id.
|
|
17297
17962
|
*/
|
|
17298
|
-
tenantId
|
|
17963
|
+
tenantId: string;
|
|
17299
17964
|
/**
|
|
17300
17965
|
* Gets or sets the Id.
|
|
17301
17966
|
*/
|
|
17302
|
-
id
|
|
17967
|
+
id: string;
|
|
17968
|
+
emailSettings?: UpdateEmailSettings;
|
|
17303
17969
|
};
|
|
17304
17970
|
|
|
17305
17971
|
/**
|
|
@@ -17309,11 +17975,8 @@ type VenuePost = {
|
|
|
17309
17975
|
/**
|
|
17310
17976
|
* Gets or sets the tenant Id.
|
|
17311
17977
|
*/
|
|
17312
|
-
tenantId
|
|
17313
|
-
|
|
17314
|
-
* Gets or sets the venues name.
|
|
17315
|
-
*/
|
|
17316
|
-
name: string;
|
|
17978
|
+
tenantId: string;
|
|
17979
|
+
emailSettings?: UpdateEmailSettings;
|
|
17317
17980
|
};
|
|
17318
17981
|
|
|
17319
17982
|
declare class PublicVenuesService {
|
|
@@ -17610,11 +18273,11 @@ type WaitlistActivityPatch = {
|
|
|
17610
18273
|
/**
|
|
17611
18274
|
* Gets or sets the tenant Id.
|
|
17612
18275
|
*/
|
|
17613
|
-
tenantId
|
|
18276
|
+
tenantId: string;
|
|
17614
18277
|
/**
|
|
17615
18278
|
* Gets or sets the Id.
|
|
17616
18279
|
*/
|
|
17617
|
-
id
|
|
18280
|
+
id: string;
|
|
17618
18281
|
};
|
|
17619
18282
|
|
|
17620
18283
|
/**
|
|
@@ -17624,7 +18287,7 @@ type WaitlistActivityPost = {
|
|
|
17624
18287
|
/**
|
|
17625
18288
|
* Gets or sets the tenant Id.
|
|
17626
18289
|
*/
|
|
17627
|
-
tenantId
|
|
18290
|
+
tenantId: string;
|
|
17628
18291
|
};
|
|
17629
18292
|
|
|
17630
18293
|
declare class PublicWaitlistActivityService {
|
|
@@ -17876,11 +18539,11 @@ type WaitlistOpportunityPatch = {
|
|
|
17876
18539
|
/**
|
|
17877
18540
|
* Gets or sets the tenant Id.
|
|
17878
18541
|
*/
|
|
17879
|
-
tenantId
|
|
18542
|
+
tenantId: string;
|
|
17880
18543
|
/**
|
|
17881
18544
|
* Gets or sets the Id.
|
|
17882
18545
|
*/
|
|
17883
|
-
id
|
|
18546
|
+
id: string;
|
|
17884
18547
|
};
|
|
17885
18548
|
|
|
17886
18549
|
/**
|
|
@@ -17890,7 +18553,7 @@ type WaitlistOpportunityPost = {
|
|
|
17890
18553
|
/**
|
|
17891
18554
|
* Gets or sets the tenant Id.
|
|
17892
18555
|
*/
|
|
17893
|
-
tenantId
|
|
18556
|
+
tenantId: string;
|
|
17894
18557
|
};
|
|
17895
18558
|
|
|
17896
18559
|
declare class PublicWaitlistOpportunityService {
|
|
@@ -18212,11 +18875,11 @@ type RecentOrderActivityReportPatch = {
|
|
|
18212
18875
|
/**
|
|
18213
18876
|
* Gets or sets the tenant Id.
|
|
18214
18877
|
*/
|
|
18215
|
-
tenantId
|
|
18878
|
+
tenantId: string;
|
|
18216
18879
|
/**
|
|
18217
18880
|
* Gets or sets the Id.
|
|
18218
18881
|
*/
|
|
18219
|
-
id
|
|
18882
|
+
id: string;
|
|
18220
18883
|
};
|
|
18221
18884
|
|
|
18222
18885
|
/**
|
|
@@ -18226,7 +18889,7 @@ type RecentOrderActivityReportPost = {
|
|
|
18226
18889
|
/**
|
|
18227
18890
|
* Gets or sets the tenant Id.
|
|
18228
18891
|
*/
|
|
18229
|
-
tenantId
|
|
18892
|
+
tenantId: string;
|
|
18230
18893
|
};
|
|
18231
18894
|
|
|
18232
18895
|
declare class RecentOrderActivityReportService {
|
|
@@ -19037,11 +19700,11 @@ type ScheduledSessionSchedulePatch = {
|
|
|
19037
19700
|
/**
|
|
19038
19701
|
* Gets or sets the tenant Id.
|
|
19039
19702
|
*/
|
|
19040
|
-
tenantId
|
|
19703
|
+
tenantId: string;
|
|
19041
19704
|
/**
|
|
19042
19705
|
* Gets or sets the Id.
|
|
19043
19706
|
*/
|
|
19044
|
-
id
|
|
19707
|
+
id: string;
|
|
19045
19708
|
};
|
|
19046
19709
|
|
|
19047
19710
|
/**
|
|
@@ -19051,7 +19714,7 @@ type ScheduledSessionSchedulePost = {
|
|
|
19051
19714
|
/**
|
|
19052
19715
|
* Gets or sets the tenant Id.
|
|
19053
19716
|
*/
|
|
19054
|
-
tenantId
|
|
19717
|
+
tenantId: string;
|
|
19055
19718
|
};
|
|
19056
19719
|
|
|
19057
19720
|
declare class ScheduledSessionsSchedulesService {
|
|
@@ -19785,11 +20448,11 @@ type SlotOfferPatch = {
|
|
|
19785
20448
|
/**
|
|
19786
20449
|
* Gets or sets the tenant Id.
|
|
19787
20450
|
*/
|
|
19788
|
-
tenantId
|
|
20451
|
+
tenantId: string;
|
|
19789
20452
|
/**
|
|
19790
20453
|
* Gets or sets the Id.
|
|
19791
20454
|
*/
|
|
19792
|
-
id
|
|
20455
|
+
id: string;
|
|
19793
20456
|
};
|
|
19794
20457
|
|
|
19795
20458
|
/**
|
|
@@ -19799,7 +20462,7 @@ type SlotOfferPost = {
|
|
|
19799
20462
|
/**
|
|
19800
20463
|
* Gets or sets the tenant Id.
|
|
19801
20464
|
*/
|
|
19802
|
-
tenantId
|
|
20465
|
+
tenantId: string;
|
|
19803
20466
|
};
|
|
19804
20467
|
|
|
19805
20468
|
declare class SlotOffersService {
|
|
@@ -20590,11 +21253,11 @@ type SlotScheduleOfferPatch = {
|
|
|
20590
21253
|
/**
|
|
20591
21254
|
* Gets or sets the tenant Id.
|
|
20592
21255
|
*/
|
|
20593
|
-
tenantId
|
|
21256
|
+
tenantId: string;
|
|
20594
21257
|
/**
|
|
20595
21258
|
* Gets or sets the Id.
|
|
20596
21259
|
*/
|
|
20597
|
-
id
|
|
21260
|
+
id: string;
|
|
20598
21261
|
};
|
|
20599
21262
|
|
|
20600
21263
|
/**
|
|
@@ -20604,7 +21267,7 @@ type SlotScheduleOfferPost = {
|
|
|
20604
21267
|
/**
|
|
20605
21268
|
* Gets or sets the tenant Id.
|
|
20606
21269
|
*/
|
|
20607
|
-
tenantId
|
|
21270
|
+
tenantId: string;
|
|
20608
21271
|
};
|
|
20609
21272
|
|
|
20610
21273
|
declare class SlotScheduleOffersService {
|
|
@@ -20877,11 +21540,11 @@ type SlotSchedulePatch = {
|
|
|
20877
21540
|
/**
|
|
20878
21541
|
* Gets or sets the tenant Id.
|
|
20879
21542
|
*/
|
|
20880
|
-
tenantId
|
|
21543
|
+
tenantId: string;
|
|
20881
21544
|
/**
|
|
20882
21545
|
* Gets or sets the Id.
|
|
20883
21546
|
*/
|
|
20884
|
-
id
|
|
21547
|
+
id: string;
|
|
20885
21548
|
};
|
|
20886
21549
|
|
|
20887
21550
|
/**
|
|
@@ -20891,7 +21554,7 @@ type SlotSchedulePost = {
|
|
|
20891
21554
|
/**
|
|
20892
21555
|
* Gets or sets the tenant Id.
|
|
20893
21556
|
*/
|
|
20894
|
-
tenantId
|
|
21557
|
+
tenantId: string;
|
|
20895
21558
|
};
|
|
20896
21559
|
|
|
20897
21560
|
declare class SlotSchedulesService {
|
|
@@ -21247,11 +21910,11 @@ type StripeAccountPatch = {
|
|
|
21247
21910
|
/**
|
|
21248
21911
|
* Gets or sets the tenant Id.
|
|
21249
21912
|
*/
|
|
21250
|
-
tenantId
|
|
21913
|
+
tenantId: string;
|
|
21251
21914
|
/**
|
|
21252
21915
|
* Gets or sets the Id.
|
|
21253
21916
|
*/
|
|
21254
|
-
id
|
|
21917
|
+
id: string;
|
|
21255
21918
|
};
|
|
21256
21919
|
|
|
21257
21920
|
/**
|
|
@@ -21261,7 +21924,7 @@ type StripeAccountPost = {
|
|
|
21261
21924
|
/**
|
|
21262
21925
|
* Gets or sets the tenant Id.
|
|
21263
21926
|
*/
|
|
21264
|
-
tenantId
|
|
21927
|
+
tenantId: string;
|
|
21265
21928
|
};
|
|
21266
21929
|
|
|
21267
21930
|
declare class StripeAccountService {
|
|
@@ -21674,11 +22337,11 @@ type SurveyAnswerPatch = {
|
|
|
21674
22337
|
/**
|
|
21675
22338
|
* Gets or sets the tenant Id.
|
|
21676
22339
|
*/
|
|
21677
|
-
tenantId
|
|
22340
|
+
tenantId: string;
|
|
21678
22341
|
/**
|
|
21679
22342
|
* Gets or sets the Id.
|
|
21680
22343
|
*/
|
|
21681
|
-
id
|
|
22344
|
+
id: string;
|
|
21682
22345
|
};
|
|
21683
22346
|
|
|
21684
22347
|
/**
|
|
@@ -21688,7 +22351,7 @@ type SurveyAnswerPost = {
|
|
|
21688
22351
|
/**
|
|
21689
22352
|
* Gets or sets the tenant Id.
|
|
21690
22353
|
*/
|
|
21691
|
-
tenantId
|
|
22354
|
+
tenantId: string;
|
|
21692
22355
|
};
|
|
21693
22356
|
|
|
21694
22357
|
declare class SurveyAnswersService {
|
|
@@ -22381,11 +23044,11 @@ type SurveyReportExtendedPatch = {
|
|
|
22381
23044
|
/**
|
|
22382
23045
|
* Gets or sets the tenant Id.
|
|
22383
23046
|
*/
|
|
22384
|
-
tenantId
|
|
23047
|
+
tenantId: string;
|
|
22385
23048
|
/**
|
|
22386
23049
|
* Gets or sets the Id.
|
|
22387
23050
|
*/
|
|
22388
|
-
id
|
|
23051
|
+
id: string;
|
|
22389
23052
|
};
|
|
22390
23053
|
|
|
22391
23054
|
/**
|
|
@@ -22395,7 +23058,7 @@ type SurveyReportExtendedPost = {
|
|
|
22395
23058
|
/**
|
|
22396
23059
|
* Gets or sets the tenant Id.
|
|
22397
23060
|
*/
|
|
22398
|
-
tenantId
|
|
23061
|
+
tenantId: string;
|
|
22399
23062
|
};
|
|
22400
23063
|
|
|
22401
23064
|
declare class SurveyReportExtendedService {
|
|
@@ -23377,11 +24040,11 @@ type TenantWebsiteSettingPatch = {
|
|
|
23377
24040
|
/**
|
|
23378
24041
|
* Gets or sets the tenant Id.
|
|
23379
24042
|
*/
|
|
23380
|
-
tenantId
|
|
24043
|
+
tenantId: string;
|
|
23381
24044
|
/**
|
|
23382
24045
|
* Gets or sets the Id.
|
|
23383
24046
|
*/
|
|
23384
|
-
id
|
|
24047
|
+
id: string;
|
|
23385
24048
|
};
|
|
23386
24049
|
|
|
23387
24050
|
/**
|
|
@@ -23391,7 +24054,7 @@ type TenantWebsiteSettingPost = {
|
|
|
23391
24054
|
/**
|
|
23392
24055
|
* Gets or sets the tenant Id.
|
|
23393
24056
|
*/
|
|
23394
|
-
tenantId
|
|
24057
|
+
tenantId: string;
|
|
23395
24058
|
};
|
|
23396
24059
|
|
|
23397
24060
|
declare class TenantWebsiteSettingsService {
|
|
@@ -23788,11 +24451,11 @@ type TotalRevenueReportPatch = {
|
|
|
23788
24451
|
/**
|
|
23789
24452
|
* Gets or sets the tenant Id.
|
|
23790
24453
|
*/
|
|
23791
|
-
tenantId
|
|
24454
|
+
tenantId: string;
|
|
23792
24455
|
/**
|
|
23793
24456
|
* Gets or sets the Id.
|
|
23794
24457
|
*/
|
|
23795
|
-
id
|
|
24458
|
+
id: string;
|
|
23796
24459
|
};
|
|
23797
24460
|
|
|
23798
24461
|
/**
|
|
@@ -23802,7 +24465,7 @@ type TotalRevenueReportPost = {
|
|
|
23802
24465
|
/**
|
|
23803
24466
|
* Gets or sets the tenant Id.
|
|
23804
24467
|
*/
|
|
23805
|
-
tenantId
|
|
24468
|
+
tenantId: string;
|
|
23806
24469
|
};
|
|
23807
24470
|
|
|
23808
24471
|
declare class TotalRevenueReportService {
|
|
@@ -24099,11 +24762,11 @@ type UserPatch = {
|
|
|
24099
24762
|
/**
|
|
24100
24763
|
* Gets or sets the tenant Id.
|
|
24101
24764
|
*/
|
|
24102
|
-
tenantId
|
|
24765
|
+
tenantId: string;
|
|
24103
24766
|
/**
|
|
24104
24767
|
* Gets or sets the Id.
|
|
24105
24768
|
*/
|
|
24106
|
-
id
|
|
24769
|
+
id: string;
|
|
24107
24770
|
};
|
|
24108
24771
|
|
|
24109
24772
|
/**
|
|
@@ -24113,7 +24776,7 @@ type UserPost = {
|
|
|
24113
24776
|
/**
|
|
24114
24777
|
* Gets or sets the tenant Id.
|
|
24115
24778
|
*/
|
|
24116
|
-
tenantId
|
|
24779
|
+
tenantId: string;
|
|
24117
24780
|
};
|
|
24118
24781
|
|
|
24119
24782
|
declare class UsersService {
|
|
@@ -24888,11 +25551,11 @@ type VenuesReportPatch = {
|
|
|
24888
25551
|
/**
|
|
24889
25552
|
* Gets or sets the tenant Id.
|
|
24890
25553
|
*/
|
|
24891
|
-
tenantId
|
|
25554
|
+
tenantId: string;
|
|
24892
25555
|
/**
|
|
24893
25556
|
* Gets or sets the Id.
|
|
24894
25557
|
*/
|
|
24895
|
-
id
|
|
25558
|
+
id: string;
|
|
24896
25559
|
};
|
|
24897
25560
|
|
|
24898
25561
|
/**
|
|
@@ -24902,7 +25565,7 @@ type VenuesReportPost = {
|
|
|
24902
25565
|
/**
|
|
24903
25566
|
* Gets or sets the tenant Id.
|
|
24904
25567
|
*/
|
|
24905
|
-
tenantId
|
|
25568
|
+
tenantId: string;
|
|
24906
25569
|
};
|
|
24907
25570
|
|
|
24908
25571
|
declare class VenuesReportService {
|
|
@@ -25847,6 +26510,7 @@ type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
|
|
|
25847
26510
|
declare class ApiClient {
|
|
25848
26511
|
readonly activity: ActivityService;
|
|
25849
26512
|
readonly amenity: AmenityService;
|
|
26513
|
+
readonly badEnglandReport: BadEnglandReportService;
|
|
25850
26514
|
readonly booking: BookingService;
|
|
25851
26515
|
readonly country: CountryService;
|
|
25852
26516
|
readonly courses: CoursesService;
|
|
@@ -26047,4 +26711,4 @@ type ValidationResultModel = {
|
|
|
26047
26711
|
readonly errors?: Array<ValidationError> | null;
|
|
26048
26712
|
};
|
|
26049
26713
|
|
|
26050
|
-
export { Activity, ActivityService, ActivityType, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, AutoCompleteResponseModel, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CoursesService, Customer, CustomerCancellationOption, CustomerPage, CustomerPatch, CustomerPost, CustomerType, CustomersService, DayOfWeek, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, 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, OpportunityType, Order, OrderItem, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPost, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, 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, PublicFacilitiesService, PublicHealthCheckService, PublicLeasingService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, ScheduleStatus, ScheduledSession, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionGender, 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, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPost, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveySubmissionModel, SurveyType, SurveysService, Tax, Tenant, TenantPage, TenantPatch, TenantPost, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, User, UserPage, UserPatch, UserPost, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueOpeningHours, VenuePage, VenuePatch, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityService };
|
|
26714
|
+
export { Activity, ActivityService, ActivityType, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CoursesService, Customer, CustomerCancellationOption, CustomerPage, CustomerPatch, CustomerPost, CustomerType, CustomersService, DayOfWeek, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, 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, OpportunityType, Order, OrderItem, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPost, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, 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, PublicFacilitiesService, PublicHealthCheckService, PublicLeasingService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, ScheduleStatus, ScheduledSession, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionGender, 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, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPost, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveySubmissionModel, SurveyType, SurveysService, Tax, Tenant, TenantPage, TenantPatch, TenantPost, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UpdateEmailSettings, User, UserPage, UserPatch, UserPost, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueOpeningHours, VenuePage, VenuePatch, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityService };
|