reach-api-sdk 1.0.111 → 1.0.112

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.
@@ -191,90 +191,18 @@ declare class ActivityService {
191
191
  }
192
192
 
193
193
  /**
194
- * Represents a Country within the Reach application.
194
+ * The activity type.
195
195
  */
196
- type Amenity = {
197
- /**
198
- * Gets or sets the activities Id.
199
- */
200
- id?: number;
201
- /**
202
- * Gets or sets the countries Name.
203
- */
204
- openActiveType?: string | null;
205
- /**
206
- * Gets or sets the countries Code.
207
- */
208
- name?: string | null;
209
- };
210
-
211
- declare class AmenityService {
212
- readonly httpRequest: BaseHttpRequest;
213
- constructor(httpRequest: BaseHttpRequest);
214
- /**
215
- * Gets a Reach.Models.Amenity by its Id.
216
- * @returns Amenity Success
217
- * @throws ApiError
218
- */
219
- getObject({ id, }: {
220
- /**
221
- * The Reach.Models.Amenity id.
222
- */
223
- id: number;
224
- }): CancelablePromise<Amenity>;
225
- /**
226
- * Gets a list of Reach.Models.Amenity.
227
- * @returns Amenity Success
228
- * @throws ApiError
229
- */
230
- getList({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
231
- /**
232
- * Gets or sets the page number for paged queries.
233
- */
234
- pageNumber?: number;
235
- /**
236
- * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
237
- */
238
- take?: number;
239
- /**
240
- * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
241
- */
242
- limitListRequests?: boolean;
243
- /**
244
- * Gets or sets the Tenant Id.
245
- */
246
- tenantId?: string;
247
- /**
248
- * Gets or sets the Modifed By Id.
249
- */
250
- modifiedById?: string;
251
- /**
252
- * Gets or sets the Modifed By Ids.
253
- */
254
- modifiedByIds?: Array<string>;
255
- /**
256
- * Gets or sets the Date Created greater than equal to.
257
- */
258
- dateCreatedGte?: string;
259
- /**
260
- * Gets or sets the Date Created less than equal to.
261
- */
262
- dateCreatedLte?: string;
263
- /**
264
- * Gets or sets the queryable only is live status.
265
- */
266
- isLive?: boolean;
267
- /**
268
- * Gets or sets the sort order direction.
269
- */
270
- sortOrderDirection?: SearchSortOrderDirection;
271
- }): CancelablePromise<Array<Amenity>>;
196
+ declare enum ActivityType {
197
+ FACILITY = "Facility",
198
+ SESSION = "Session",
199
+ COURSE = "Course"
272
200
  }
273
201
 
274
202
  /**
275
- * Represents a Attendee within the Reach application.
203
+ * Represents an activity performance row within the Reach application.
276
204
  */
277
- type Attendee = {
205
+ type ActivityPerformance = {
278
206
  /**
279
207
  * Gets or sets the entities Id.
280
208
  */
@@ -300,29 +228,46 @@ type Attendee = {
300
228
  */
301
229
  isLive: boolean;
302
230
  /**
303
- * Gets or sets the venue id.
231
+ * Gets or sets the activity name.
304
232
  */
305
- venueId: string;
233
+ activityName?: string | null;
306
234
  /**
307
- * Gets or sets the customer id.
235
+ * Gets or sets the venue name.
308
236
  */
309
- customerId: string;
237
+ venueName?: string | null;
238
+ activityType?: ActivityType;
310
239
  /**
311
- * Gets or sets the first name.
240
+ * Gets or sets a value indicating whether the performance row has unlimited capacity.
312
241
  */
313
- firstName: string;
242
+ unlimitedCapacity?: boolean;
314
243
  /**
315
- * Gets or sets the last name.
244
+ * Gets or sets the capacity.
316
245
  */
317
- lastName: string;
246
+ totalCapacity?: number;
318
247
  /**
319
- * Gets the attendees abbreviated name.
248
+ * Gets or sets the remaining uses.
320
249
  */
321
- readonly nameAbbreviation: string;
250
+ usedCapacity?: number;
322
251
  /**
323
- * Gets the attendees full name.
252
+ * Gets or sets the remaining uses.
324
253
  */
325
- readonly fullName?: string | null;
254
+ unusedCapacity?: number;
255
+ /**
256
+ * Gets or sets the utilisation.
257
+ */
258
+ utilisation?: number;
259
+ /**
260
+ * Gets or sets the total orders.
261
+ */
262
+ totalOrders?: number;
263
+ /**
264
+ * Gets or sets the total revenue.
265
+ */
266
+ totalRevenue?: number;
267
+ /**
268
+ * Gets or sets the revenue potential.
269
+ */
270
+ revenuePotential?: number;
326
271
  };
327
272
 
328
273
  /**
@@ -347,15 +292,15 @@ type Pagination = {
347
292
  readonly totalItems: number;
348
293
  };
349
294
 
350
- type AttendeePage = {
295
+ type ActivityPerformancePage = {
351
296
  pagination: Pagination;
352
- readonly items: Array<Attendee>;
297
+ readonly items: Array<ActivityPerformance>;
353
298
  };
354
299
 
355
300
  /**
356
- * Post model for attendee updates.
301
+ * Post model for Activity Performance updates.
357
302
  */
358
- type AttendeePatch = {
303
+ type ActivityPerformancePatch = {
359
304
  /**
360
305
  * Gets or sets the tenant Id.
361
306
  */
@@ -367,74 +312,144 @@ type AttendeePatch = {
367
312
  };
368
313
 
369
314
  /**
370
- * Post model for attendee inserts.
315
+ * Post model for Activity Performance inserts.
371
316
  */
372
- type AttendeePost = {
317
+ type ActivityPerformancePost = {
373
318
  /**
374
319
  * Gets or sets the tenant Id.
375
320
  */
376
321
  tenantId: string;
377
- /**
378
- * Gets or sets the attendee first name.
379
- */
380
- firstName: string;
381
- /**
382
- * Gets or sets the attendee last name.
383
- */
384
- lastName: string;
385
- /**
386
- * Gets or sets the attendee last name.
387
- */
388
- customerId: string;
389
322
  };
390
323
 
391
- declare class AttendeesService {
324
+ declare class ActivityPerformanceService {
392
325
  readonly httpRequest: BaseHttpRequest;
393
326
  constructor(httpRequest: BaseHttpRequest);
327
+ /**
328
+ * Exports the performance list to a csv format.
329
+ * Endpoint has AllowAnonymous attr, however the jwt is validated in the method body (in support of authenticated file downloads.
330
+ * @returns any Success
331
+ * @throws ApiError
332
+ */
333
+ exportToCsv({ venueId, userId, programmeId, startDateGte, startDateLte, onlineActivitiesOnly, onlineVenuesOnly, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
334
+ /**
335
+ * Gets or sets the Venue Id.
336
+ */
337
+ venueId?: string;
338
+ /**
339
+ * Gets or sets the User Id.
340
+ */
341
+ userId?: string;
342
+ /**
343
+ * Gets or sets the Programme Id.
344
+ */
345
+ programmeId?: string;
346
+ /**
347
+ * Gets or sets the starting date greater than or equal to.
348
+ */
349
+ startDateGte?: string;
350
+ /**
351
+ * Gets or sets the starting date less than or equal to.
352
+ */
353
+ startDateLte?: string;
354
+ /**
355
+ * Gets or sets a value indicating whether to include online activities only.
356
+ */
357
+ onlineActivitiesOnly?: boolean;
358
+ /**
359
+ * Gets or sets a value indicating whether to include online venues only.
360
+ */
361
+ onlineVenuesOnly?: boolean;
362
+ /**
363
+ * Gets or sets the page number for paged queries.
364
+ */
365
+ pageNumber?: number;
366
+ /**
367
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
368
+ */
369
+ take?: number;
370
+ /**
371
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
372
+ */
373
+ limitListRequests?: boolean;
374
+ /**
375
+ * Gets or sets the Tenant Id.
376
+ */
377
+ tenantId?: string;
378
+ /**
379
+ * Gets or sets the Modifed By Id.
380
+ */
381
+ modifiedById?: string;
382
+ /**
383
+ * Gets or sets the Modifed By Ids.
384
+ */
385
+ modifiedByIds?: Array<string>;
386
+ /**
387
+ * Gets or sets the Date Created greater than equal to.
388
+ */
389
+ dateCreatedGte?: string;
390
+ /**
391
+ * Gets or sets the Date Created less than equal to.
392
+ */
393
+ dateCreatedLte?: string;
394
+ /**
395
+ * Gets or sets the queryable only is live status.
396
+ */
397
+ isLive?: boolean;
398
+ /**
399
+ * Gets or sets the sort order direction.
400
+ */
401
+ sortOrderDirection?: SearchSortOrderDirection;
402
+ formData?: {
403
+ /**
404
+ * Gets or sets the auth token.
405
+ */
406
+ Token?: string;
407
+ };
408
+ }): CancelablePromise<any>;
394
409
  /**
395
410
  * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
396
- * @returns Attendee Success
411
+ * @returns ActivityPerformance Success
397
412
  * @throws ApiError
398
413
  */
399
414
  post({ requestBody, }: {
400
415
  /**
401
416
  * The <typeparamref name="TObject" /> model.
402
417
  */
403
- requestBody?: AttendeePost;
404
- }): CancelablePromise<Attendee>;
418
+ requestBody?: ActivityPerformancePost;
419
+ }): CancelablePromise<ActivityPerformance>;
405
420
  /**
406
421
  * Patches the resource.
407
- * @returns Attendee Success
422
+ * @returns ActivityPerformance Success
408
423
  * @throws ApiError
409
424
  */
410
425
  patch({ requestBody, }: {
411
426
  /**
412
427
  * The <typeparamref name="TObject" /> model.
413
428
  */
414
- requestBody?: AttendeePatch;
415
- }): CancelablePromise<Attendee>;
429
+ requestBody?: ActivityPerformancePatch;
430
+ }): CancelablePromise<ActivityPerformance>;
416
431
  /**
417
432
  * Inserts a list of resources.
418
- * @returns Attendee Success
433
+ * @returns ActivityPerformance Success
419
434
  * @throws ApiError
420
435
  */
421
436
  postList({ requestBody, }: {
422
437
  /**
423
438
  * The list of <typeparamref name="TObject" />.
424
439
  */
425
- requestBody?: Array<AttendeePost>;
426
- }): CancelablePromise<Array<Attendee>>;
440
+ requestBody?: Array<ActivityPerformancePost>;
441
+ }): CancelablePromise<Array<ActivityPerformance>>;
427
442
  /**
428
443
  * Patches the resource.
429
- * @returns Attendee Success
444
+ * @returns ActivityPerformance Success
430
445
  * @throws ApiError
431
446
  */
432
447
  patchWithReferences({ requestBody, }: {
433
448
  /**
434
449
  * The <typeparamref name="TObject" /> model.
435
450
  */
436
- requestBody?: AttendeePatch;
437
- }): CancelablePromise<Attendee>;
451
+ requestBody?: ActivityPerformancePatch;
452
+ }): CancelablePromise<ActivityPerformance>;
438
453
  /**
439
454
  * Deletes the resource.
440
455
  * @returns any Success
@@ -444,30 +459,42 @@ declare class AttendeesService {
444
459
  /**
445
460
  * The <typeparamref name="TObject" /> model.
446
461
  */
447
- requestBody?: Attendee;
462
+ requestBody?: ActivityPerformance;
448
463
  }): CancelablePromise<any>;
449
464
  /**
450
465
  * Gets a list of resources.
451
- * @returns AttendeePage Success
466
+ * @returns ActivityPerformancePage Success
452
467
  * @throws ApiError
453
468
  */
454
- getPage({ venueId, customerId, firstName, lastName, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
469
+ getPage({ venueId, userId, programmeId, startDateGte, startDateLte, onlineActivitiesOnly, onlineVenuesOnly, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
455
470
  /**
456
- * Gets or sets the queryable venue id.
471
+ * Gets or sets the Venue Id.
457
472
  */
458
473
  venueId?: string;
459
474
  /**
460
- * Gets or sets the queryable customer id.
475
+ * Gets or sets the User Id.
461
476
  */
462
- customerId?: string;
477
+ userId?: string;
463
478
  /**
464
- * Gets or sets the queryable attendee first name.
479
+ * Gets or sets the Programme Id.
465
480
  */
466
- firstName?: string;
481
+ programmeId?: string;
467
482
  /**
468
- * Gets or sets the queryable attendee last name.
483
+ * Gets or sets the starting date greater than or equal to.
469
484
  */
470
- lastName?: string;
485
+ startDateGte?: string;
486
+ /**
487
+ * Gets or sets the starting date less than or equal to.
488
+ */
489
+ startDateLte?: string;
490
+ /**
491
+ * Gets or sets a value indicating whether to include online activities only.
492
+ */
493
+ onlineActivitiesOnly?: boolean;
494
+ /**
495
+ * Gets or sets a value indicating whether to include online venues only.
496
+ */
497
+ onlineVenuesOnly?: boolean;
471
498
  /**
472
499
  * Gets or sets the page number for paged queries.
473
500
  */
@@ -508,7 +535,7 @@ declare class AttendeesService {
508
535
  * Gets or sets the sort order direction.
509
536
  */
510
537
  sortOrderDirection?: SearchSortOrderDirection;
511
- }): CancelablePromise<AttendeePage>;
538
+ }): CancelablePromise<ActivityPerformancePage>;
512
539
  /**
513
540
  * Deletes the resource.
514
541
  * @returns any Success
@@ -522,7 +549,7 @@ declare class AttendeesService {
522
549
  }): CancelablePromise<any>;
523
550
  /**
524
551
  * Gets the resource by its Id.
525
- * @returns Attendee Success
552
+ * @returns ActivityPerformance Success
526
553
  * @throws ApiError
527
554
  */
528
555
  getObject({ id, }: {
@@ -530,7 +557,7 @@ declare class AttendeesService {
530
557
  * The <typeparamref name="TObject" /> id.
531
558
  */
532
559
  id: string;
533
- }): CancelablePromise<Attendee>;
560
+ }): CancelablePromise<ActivityPerformance>;
534
561
  /**
535
562
  * Returns a value indicating whether the resource is deletable.
536
563
  * @returns boolean Success
@@ -547,23 +574,35 @@ declare class AttendeesService {
547
574
  * @returns boolean Success
548
575
  * @throws ApiError
549
576
  */
550
- exists({ venueId, customerId, firstName, lastName, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
577
+ exists({ venueId, userId, programmeId, startDateGte, startDateLte, onlineActivitiesOnly, onlineVenuesOnly, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
551
578
  /**
552
- * Gets or sets the queryable venue id.
579
+ * Gets or sets the Venue Id.
553
580
  */
554
581
  venueId?: string;
555
582
  /**
556
- * Gets or sets the queryable customer id.
583
+ * Gets or sets the User Id.
557
584
  */
558
- customerId?: string;
585
+ userId?: string;
559
586
  /**
560
- * Gets or sets the queryable attendee first name.
587
+ * Gets or sets the Programme Id.
561
588
  */
562
- firstName?: string;
589
+ programmeId?: string;
563
590
  /**
564
- * Gets or sets the queryable attendee last name.
591
+ * Gets or sets the starting date greater than or equal to.
565
592
  */
566
- lastName?: string;
593
+ startDateGte?: string;
594
+ /**
595
+ * Gets or sets the starting date less than or equal to.
596
+ */
597
+ startDateLte?: string;
598
+ /**
599
+ * Gets or sets a value indicating whether to include online activities only.
600
+ */
601
+ onlineActivitiesOnly?: boolean;
602
+ /**
603
+ * Gets or sets a value indicating whether to include online venues only.
604
+ */
605
+ onlineVenuesOnly?: boolean;
567
606
  /**
568
607
  * Gets or sets the page number for paged queries.
569
608
  */
@@ -607,26 +646,38 @@ declare class AttendeesService {
607
646
  }): CancelablePromise<boolean>;
608
647
  /**
609
648
  * Gets a list of resources unpaged and without references.
610
- * @returns Attendee Success
649
+ * @returns ActivityPerformance Success
611
650
  * @throws ApiError
612
651
  */
613
- getListWithoutReferences({ venueId, customerId, firstName, lastName, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
652
+ getListWithoutReferences({ venueId, userId, programmeId, startDateGte, startDateLte, onlineActivitiesOnly, onlineVenuesOnly, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
614
653
  /**
615
- * Gets or sets the queryable venue id.
654
+ * Gets or sets the Venue Id.
616
655
  */
617
656
  venueId?: string;
618
657
  /**
619
- * Gets or sets the queryable customer id.
658
+ * Gets or sets the User Id.
620
659
  */
621
- customerId?: string;
660
+ userId?: string;
622
661
  /**
623
- * Gets or sets the queryable attendee first name.
662
+ * Gets or sets the Programme Id.
624
663
  */
625
- firstName?: string;
664
+ programmeId?: string;
626
665
  /**
627
- * Gets or sets the queryable attendee last name.
666
+ * Gets or sets the starting date greater than or equal to.
628
667
  */
629
- lastName?: string;
668
+ startDateGte?: string;
669
+ /**
670
+ * Gets or sets the starting date less than or equal to.
671
+ */
672
+ startDateLte?: string;
673
+ /**
674
+ * Gets or sets a value indicating whether to include online activities only.
675
+ */
676
+ onlineActivitiesOnly?: boolean;
677
+ /**
678
+ * Gets or sets a value indicating whether to include online venues only.
679
+ */
680
+ onlineVenuesOnly?: boolean;
630
681
  /**
631
682
  * Gets or sets the page number for paged queries.
632
683
  */
@@ -667,29 +718,41 @@ declare class AttendeesService {
667
718
  * Gets or sets the sort order direction.
668
719
  */
669
720
  sortOrderDirection?: SearchSortOrderDirection;
670
- }): CancelablePromise<Array<Attendee>>;
721
+ }): CancelablePromise<Array<ActivityPerformance>>;
671
722
  /**
672
723
  * Gets a list of resources.
673
- * @returns Attendee Success
724
+ * @returns ActivityPerformance Success
674
725
  * @throws ApiError
675
726
  */
676
- getListIdName({ venueId, customerId, firstName, lastName, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
727
+ getListIdName({ venueId, userId, programmeId, startDateGte, startDateLte, onlineActivitiesOnly, onlineVenuesOnly, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
677
728
  /**
678
- * Gets or sets the queryable venue id.
729
+ * Gets or sets the Venue Id.
679
730
  */
680
731
  venueId?: string;
681
732
  /**
682
- * Gets or sets the queryable customer id.
733
+ * Gets or sets the User Id.
683
734
  */
684
- customerId?: string;
735
+ userId?: string;
685
736
  /**
686
- * Gets or sets the queryable attendee first name.
737
+ * Gets or sets the Programme Id.
687
738
  */
688
- firstName?: string;
739
+ programmeId?: string;
689
740
  /**
690
- * Gets or sets the queryable attendee last name.
741
+ * Gets or sets the starting date greater than or equal to.
691
742
  */
692
- lastName?: string;
743
+ startDateGte?: string;
744
+ /**
745
+ * Gets or sets the starting date less than or equal to.
746
+ */
747
+ startDateLte?: string;
748
+ /**
749
+ * Gets or sets a value indicating whether to include online activities only.
750
+ */
751
+ onlineActivitiesOnly?: boolean;
752
+ /**
753
+ * Gets or sets a value indicating whether to include online venues only.
754
+ */
755
+ onlineVenuesOnly?: boolean;
693
756
  /**
694
757
  * Gets or sets the page number for paged queries.
695
758
  */
@@ -730,13 +793,94 @@ declare class AttendeesService {
730
793
  * Gets or sets the sort order direction.
731
794
  */
732
795
  sortOrderDirection?: SearchSortOrderDirection;
733
- }): CancelablePromise<Array<Attendee>>;
796
+ }): CancelablePromise<Array<ActivityPerformance>>;
734
797
  }
735
798
 
736
799
  /**
737
- * Represents the recent Venue England badminton report model.
800
+ * Represents a Country within the Reach application.
738
801
  */
739
- type VenueBadmintonEnglandReport = {
802
+ type Amenity = {
803
+ /**
804
+ * Gets or sets the activities Id.
805
+ */
806
+ id?: number;
807
+ /**
808
+ * Gets or sets the countries Name.
809
+ */
810
+ openActiveType?: string | null;
811
+ /**
812
+ * Gets or sets the countries Code.
813
+ */
814
+ name?: string | null;
815
+ };
816
+
817
+ declare class AmenityService {
818
+ readonly httpRequest: BaseHttpRequest;
819
+ constructor(httpRequest: BaseHttpRequest);
820
+ /**
821
+ * Gets a Reach.Models.Amenity by its Id.
822
+ * @returns Amenity Success
823
+ * @throws ApiError
824
+ */
825
+ getObject({ id, }: {
826
+ /**
827
+ * The Reach.Models.Amenity id.
828
+ */
829
+ id: number;
830
+ }): CancelablePromise<Amenity>;
831
+ /**
832
+ * Gets a list of Reach.Models.Amenity.
833
+ * @returns Amenity Success
834
+ * @throws ApiError
835
+ */
836
+ getList({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
837
+ /**
838
+ * Gets or sets the page number for paged queries.
839
+ */
840
+ pageNumber?: number;
841
+ /**
842
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
843
+ */
844
+ take?: number;
845
+ /**
846
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
847
+ */
848
+ limitListRequests?: boolean;
849
+ /**
850
+ * Gets or sets the Tenant Id.
851
+ */
852
+ tenantId?: string;
853
+ /**
854
+ * Gets or sets the Modifed By Id.
855
+ */
856
+ modifiedById?: string;
857
+ /**
858
+ * Gets or sets the Modifed By Ids.
859
+ */
860
+ modifiedByIds?: Array<string>;
861
+ /**
862
+ * Gets or sets the Date Created greater than equal to.
863
+ */
864
+ dateCreatedGte?: string;
865
+ /**
866
+ * Gets or sets the Date Created less than equal to.
867
+ */
868
+ dateCreatedLte?: string;
869
+ /**
870
+ * Gets or sets the queryable only is live status.
871
+ */
872
+ isLive?: boolean;
873
+ /**
874
+ * Gets or sets the sort order direction.
875
+ */
876
+ sortOrderDirection?: SearchSortOrderDirection;
877
+ }): CancelablePromise<Array<Amenity>>;
878
+ }
879
+
880
+ /**
881
+ * Represents a Attendee within the Reach application.
882
+ */
883
+ type Attendee = {
740
884
  /**
741
885
  * Gets or sets the entities Id.
742
886
  */
@@ -762,56 +906,40 @@ type VenueBadmintonEnglandReport = {
762
906
  */
763
907
  isLive: boolean;
764
908
  /**
765
- * Gets or sets the venue name.
766
- */
767
- venueName?: string | null;
768
- /**
769
- * Gets or sets the Street address.
770
- */
771
- streetAddress?: string | null;
772
- /**
773
- * Gets or sets the address locality.
774
- */
775
- addressLocality?: string | null;
776
- /**
777
- * Gets or sets the address region.
778
- */
779
- addressRegion?: string | null;
780
- /**
781
- * Gets or sets the address postal code.
909
+ * Gets or sets the venue id.
782
910
  */
783
- addressPostalcode?: string | null;
911
+ venueId: string;
784
912
  /**
785
- * Gets or sets the Longitude.
913
+ * Gets or sets the customer id.
786
914
  */
787
- lng?: number;
915
+ customerId: string;
788
916
  /**
789
- * Gets or sets the latitude.
917
+ * Gets or sets the first name.
790
918
  */
791
- lat?: number;
919
+ firstName: string;
792
920
  /**
793
- * Gets or sets the Contact email.
921
+ * Gets or sets the last name.
794
922
  */
795
- contactEmail?: string | null;
923
+ lastName: string;
796
924
  /**
797
- * Gets or sets the Contact Phone.
925
+ * Gets the attendees abbreviated name.
798
926
  */
799
- contactPhone?: string | null;
927
+ readonly nameAbbreviation: string;
800
928
  /**
801
- * Gets or sets the Contact Website.
929
+ * Gets the attendees full name.
802
930
  */
803
- contactWebsite?: string | null;
931
+ readonly fullName?: string | null;
804
932
  };
805
933
 
806
- type VenueBadmintonEnglandReportPage = {
934
+ type AttendeePage = {
807
935
  pagination: Pagination;
808
- readonly items: Array<VenueBadmintonEnglandReport>;
936
+ readonly items: Array<Attendee>;
809
937
  };
810
938
 
811
939
  /**
812
- * Post model for VenueBadmintonEnglandReport updates.
940
+ * Post model for attendee updates.
813
941
  */
814
- type VenueBadmintonEnglandReportPatch = {
942
+ type AttendeePatch = {
815
943
  /**
816
944
  * Gets or sets the tenant Id.
817
945
  */
@@ -823,25 +951,481 @@ type VenueBadmintonEnglandReportPatch = {
823
951
  };
824
952
 
825
953
  /**
826
- * Post model for VenueBadmintonEnglandReport inserts.
954
+ * Post model for attendee inserts.
827
955
  */
828
- type VenueBadmintonEnglandReportPost = {
956
+ type AttendeePost = {
829
957
  /**
830
958
  * Gets or sets the tenant Id.
831
959
  */
832
960
  tenantId: string;
961
+ /**
962
+ * Gets or sets the attendee first name.
963
+ */
964
+ firstName: string;
965
+ /**
966
+ * Gets or sets the attendee last name.
967
+ */
968
+ lastName: string;
969
+ /**
970
+ * Gets or sets the attendee last name.
971
+ */
972
+ customerId: string;
833
973
  };
834
974
 
835
- declare class BadEnglandReportService {
975
+ declare class AttendeesService {
836
976
  readonly httpRequest: BaseHttpRequest;
837
977
  constructor(httpRequest: BaseHttpRequest);
838
978
  /**
839
- * Exports the venues list to a csv format.
840
- * Endpoint has AllowAnonymous attr, however the jwt is validated in the method body (in support of authenticated file downloads.
841
- * @returns any Success
979
+ * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
980
+ * @returns Attendee Success
842
981
  * @throws ApiError
843
982
  */
844
- sendToSftp({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
983
+ post({ requestBody, }: {
984
+ /**
985
+ * The <typeparamref name="TObject" /> model.
986
+ */
987
+ requestBody?: AttendeePost;
988
+ }): CancelablePromise<Attendee>;
989
+ /**
990
+ * Patches the resource.
991
+ * @returns Attendee Success
992
+ * @throws ApiError
993
+ */
994
+ patch({ requestBody, }: {
995
+ /**
996
+ * The <typeparamref name="TObject" /> model.
997
+ */
998
+ requestBody?: AttendeePatch;
999
+ }): CancelablePromise<Attendee>;
1000
+ /**
1001
+ * Inserts a list of resources.
1002
+ * @returns Attendee Success
1003
+ * @throws ApiError
1004
+ */
1005
+ postList({ requestBody, }: {
1006
+ /**
1007
+ * The list of <typeparamref name="TObject" />.
1008
+ */
1009
+ requestBody?: Array<AttendeePost>;
1010
+ }): CancelablePromise<Array<Attendee>>;
1011
+ /**
1012
+ * Patches the resource.
1013
+ * @returns Attendee Success
1014
+ * @throws ApiError
1015
+ */
1016
+ patchWithReferences({ requestBody, }: {
1017
+ /**
1018
+ * The <typeparamref name="TObject" /> model.
1019
+ */
1020
+ requestBody?: AttendeePatch;
1021
+ }): CancelablePromise<Attendee>;
1022
+ /**
1023
+ * Deletes the resource.
1024
+ * @returns any Success
1025
+ * @throws ApiError
1026
+ */
1027
+ deleteByObject({ requestBody, }: {
1028
+ /**
1029
+ * The <typeparamref name="TObject" /> model.
1030
+ */
1031
+ requestBody?: Attendee;
1032
+ }): CancelablePromise<any>;
1033
+ /**
1034
+ * Gets a list of resources.
1035
+ * @returns AttendeePage Success
1036
+ * @throws ApiError
1037
+ */
1038
+ getPage({ venueId, customerId, firstName, lastName, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
1039
+ /**
1040
+ * Gets or sets the queryable venue id.
1041
+ */
1042
+ venueId?: string;
1043
+ /**
1044
+ * Gets or sets the queryable customer id.
1045
+ */
1046
+ customerId?: string;
1047
+ /**
1048
+ * Gets or sets the queryable attendee first name.
1049
+ */
1050
+ firstName?: string;
1051
+ /**
1052
+ * Gets or sets the queryable attendee last name.
1053
+ */
1054
+ lastName?: string;
1055
+ /**
1056
+ * Gets or sets the page number for paged queries.
1057
+ */
1058
+ pageNumber?: number;
1059
+ /**
1060
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
1061
+ */
1062
+ take?: number;
1063
+ /**
1064
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
1065
+ */
1066
+ limitListRequests?: boolean;
1067
+ /**
1068
+ * Gets or sets the Tenant Id.
1069
+ */
1070
+ tenantId?: string;
1071
+ /**
1072
+ * Gets or sets the Modifed By Id.
1073
+ */
1074
+ modifiedById?: string;
1075
+ /**
1076
+ * Gets or sets the Modifed By Ids.
1077
+ */
1078
+ modifiedByIds?: Array<string>;
1079
+ /**
1080
+ * Gets or sets the Date Created greater than equal to.
1081
+ */
1082
+ dateCreatedGte?: string;
1083
+ /**
1084
+ * Gets or sets the Date Created less than equal to.
1085
+ */
1086
+ dateCreatedLte?: string;
1087
+ /**
1088
+ * Gets or sets the queryable only is live status.
1089
+ */
1090
+ isLive?: boolean;
1091
+ /**
1092
+ * Gets or sets the sort order direction.
1093
+ */
1094
+ sortOrderDirection?: SearchSortOrderDirection;
1095
+ }): CancelablePromise<AttendeePage>;
1096
+ /**
1097
+ * Deletes the resource.
1098
+ * @returns any Success
1099
+ * @throws ApiError
1100
+ */
1101
+ deleteById({ id, }: {
1102
+ /**
1103
+ * The <typeparamref name="TObject" /> id.
1104
+ */
1105
+ id: string;
1106
+ }): CancelablePromise<any>;
1107
+ /**
1108
+ * Gets the resource by its Id.
1109
+ * @returns Attendee Success
1110
+ * @throws ApiError
1111
+ */
1112
+ getObject({ id, }: {
1113
+ /**
1114
+ * The <typeparamref name="TObject" /> id.
1115
+ */
1116
+ id: string;
1117
+ }): CancelablePromise<Attendee>;
1118
+ /**
1119
+ * Returns a value indicating whether the resource is deletable.
1120
+ * @returns boolean Success
1121
+ * @throws ApiError
1122
+ */
1123
+ canDelete({ id, }: {
1124
+ /**
1125
+ * The <typeparamref name="TObject" /> id.
1126
+ */
1127
+ id: string;
1128
+ }): CancelablePromise<boolean>;
1129
+ /**
1130
+ * Returns a value indicating whether the resource exists in the database given the provided search params.
1131
+ * @returns boolean Success
1132
+ * @throws ApiError
1133
+ */
1134
+ exists({ venueId, customerId, firstName, lastName, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
1135
+ /**
1136
+ * Gets or sets the queryable venue id.
1137
+ */
1138
+ venueId?: string;
1139
+ /**
1140
+ * Gets or sets the queryable customer id.
1141
+ */
1142
+ customerId?: string;
1143
+ /**
1144
+ * Gets or sets the queryable attendee first name.
1145
+ */
1146
+ firstName?: string;
1147
+ /**
1148
+ * Gets or sets the queryable attendee last name.
1149
+ */
1150
+ lastName?: string;
1151
+ /**
1152
+ * Gets or sets the page number for paged queries.
1153
+ */
1154
+ pageNumber?: number;
1155
+ /**
1156
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
1157
+ */
1158
+ take?: number;
1159
+ /**
1160
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
1161
+ */
1162
+ limitListRequests?: boolean;
1163
+ /**
1164
+ * Gets or sets the Tenant Id.
1165
+ */
1166
+ tenantId?: string;
1167
+ /**
1168
+ * Gets or sets the Modifed By Id.
1169
+ */
1170
+ modifiedById?: string;
1171
+ /**
1172
+ * Gets or sets the Modifed By Ids.
1173
+ */
1174
+ modifiedByIds?: Array<string>;
1175
+ /**
1176
+ * Gets or sets the Date Created greater than equal to.
1177
+ */
1178
+ dateCreatedGte?: string;
1179
+ /**
1180
+ * Gets or sets the Date Created less than equal to.
1181
+ */
1182
+ dateCreatedLte?: string;
1183
+ /**
1184
+ * Gets or sets the queryable only is live status.
1185
+ */
1186
+ isLive?: boolean;
1187
+ /**
1188
+ * Gets or sets the sort order direction.
1189
+ */
1190
+ sortOrderDirection?: SearchSortOrderDirection;
1191
+ }): CancelablePromise<boolean>;
1192
+ /**
1193
+ * Gets a list of resources unpaged and without references.
1194
+ * @returns Attendee Success
1195
+ * @throws ApiError
1196
+ */
1197
+ getListWithoutReferences({ venueId, customerId, firstName, lastName, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
1198
+ /**
1199
+ * Gets or sets the queryable venue id.
1200
+ */
1201
+ venueId?: string;
1202
+ /**
1203
+ * Gets or sets the queryable customer id.
1204
+ */
1205
+ customerId?: string;
1206
+ /**
1207
+ * Gets or sets the queryable attendee first name.
1208
+ */
1209
+ firstName?: string;
1210
+ /**
1211
+ * Gets or sets the queryable attendee last name.
1212
+ */
1213
+ lastName?: string;
1214
+ /**
1215
+ * Gets or sets the page number for paged queries.
1216
+ */
1217
+ pageNumber?: number;
1218
+ /**
1219
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
1220
+ */
1221
+ take?: number;
1222
+ /**
1223
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
1224
+ */
1225
+ limitListRequests?: boolean;
1226
+ /**
1227
+ * Gets or sets the Tenant Id.
1228
+ */
1229
+ tenantId?: string;
1230
+ /**
1231
+ * Gets or sets the Modifed By Id.
1232
+ */
1233
+ modifiedById?: string;
1234
+ /**
1235
+ * Gets or sets the Modifed By Ids.
1236
+ */
1237
+ modifiedByIds?: Array<string>;
1238
+ /**
1239
+ * Gets or sets the Date Created greater than equal to.
1240
+ */
1241
+ dateCreatedGte?: string;
1242
+ /**
1243
+ * Gets or sets the Date Created less than equal to.
1244
+ */
1245
+ dateCreatedLte?: string;
1246
+ /**
1247
+ * Gets or sets the queryable only is live status.
1248
+ */
1249
+ isLive?: boolean;
1250
+ /**
1251
+ * Gets or sets the sort order direction.
1252
+ */
1253
+ sortOrderDirection?: SearchSortOrderDirection;
1254
+ }): CancelablePromise<Array<Attendee>>;
1255
+ /**
1256
+ * Gets a list of resources.
1257
+ * @returns Attendee Success
1258
+ * @throws ApiError
1259
+ */
1260
+ getListIdName({ venueId, customerId, firstName, lastName, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
1261
+ /**
1262
+ * Gets or sets the queryable venue id.
1263
+ */
1264
+ venueId?: string;
1265
+ /**
1266
+ * Gets or sets the queryable customer id.
1267
+ */
1268
+ customerId?: string;
1269
+ /**
1270
+ * Gets or sets the queryable attendee first name.
1271
+ */
1272
+ firstName?: string;
1273
+ /**
1274
+ * Gets or sets the queryable attendee last name.
1275
+ */
1276
+ lastName?: string;
1277
+ /**
1278
+ * Gets or sets the page number for paged queries.
1279
+ */
1280
+ pageNumber?: number;
1281
+ /**
1282
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
1283
+ */
1284
+ take?: number;
1285
+ /**
1286
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
1287
+ */
1288
+ limitListRequests?: boolean;
1289
+ /**
1290
+ * Gets or sets the Tenant Id.
1291
+ */
1292
+ tenantId?: string;
1293
+ /**
1294
+ * Gets or sets the Modifed By Id.
1295
+ */
1296
+ modifiedById?: string;
1297
+ /**
1298
+ * Gets or sets the Modifed By Ids.
1299
+ */
1300
+ modifiedByIds?: Array<string>;
1301
+ /**
1302
+ * Gets or sets the Date Created greater than equal to.
1303
+ */
1304
+ dateCreatedGte?: string;
1305
+ /**
1306
+ * Gets or sets the Date Created less than equal to.
1307
+ */
1308
+ dateCreatedLte?: string;
1309
+ /**
1310
+ * Gets or sets the queryable only is live status.
1311
+ */
1312
+ isLive?: boolean;
1313
+ /**
1314
+ * Gets or sets the sort order direction.
1315
+ */
1316
+ sortOrderDirection?: SearchSortOrderDirection;
1317
+ }): CancelablePromise<Array<Attendee>>;
1318
+ }
1319
+
1320
+ /**
1321
+ * Represents the recent Venue England badminton report model.
1322
+ */
1323
+ type VenueBadmintonEnglandReport = {
1324
+ /**
1325
+ * Gets or sets the entities Id.
1326
+ */
1327
+ id?: string;
1328
+ /**
1329
+ * Gets or sets the tenant Id.
1330
+ */
1331
+ tenantId: string;
1332
+ /**
1333
+ * Gets or sets the created date of this entity.
1334
+ */
1335
+ dateCreated: string;
1336
+ /**
1337
+ * Gets or sets the last modified date of this entity.
1338
+ */
1339
+ dateModified: string;
1340
+ /**
1341
+ * Gets or sets the modified by Id.
1342
+ */
1343
+ modifiedById?: string | null;
1344
+ /**
1345
+ * Gets or sets a value indicating whether the record is live and available for use within the application.
1346
+ */
1347
+ isLive: boolean;
1348
+ /**
1349
+ * Gets or sets the venue name.
1350
+ */
1351
+ venueName?: string | null;
1352
+ /**
1353
+ * Gets or sets the Street address.
1354
+ */
1355
+ streetAddress?: string | null;
1356
+ /**
1357
+ * Gets or sets the address locality.
1358
+ */
1359
+ addressLocality?: string | null;
1360
+ /**
1361
+ * Gets or sets the address region.
1362
+ */
1363
+ addressRegion?: string | null;
1364
+ /**
1365
+ * Gets or sets the address postal code.
1366
+ */
1367
+ addressPostalcode?: string | null;
1368
+ /**
1369
+ * Gets or sets the Longitude.
1370
+ */
1371
+ lng?: number;
1372
+ /**
1373
+ * Gets or sets the latitude.
1374
+ */
1375
+ lat?: number;
1376
+ /**
1377
+ * Gets or sets the Contact email.
1378
+ */
1379
+ contactEmail?: string | null;
1380
+ /**
1381
+ * Gets or sets the Contact Phone.
1382
+ */
1383
+ contactPhone?: string | null;
1384
+ /**
1385
+ * Gets or sets the Contact Website.
1386
+ */
1387
+ contactWebsite?: string | null;
1388
+ };
1389
+
1390
+ type VenueBadmintonEnglandReportPage = {
1391
+ pagination: Pagination;
1392
+ readonly items: Array<VenueBadmintonEnglandReport>;
1393
+ };
1394
+
1395
+ /**
1396
+ * Post model for VenueBadmintonEnglandReport updates.
1397
+ */
1398
+ type VenueBadmintonEnglandReportPatch = {
1399
+ /**
1400
+ * Gets or sets the tenant Id.
1401
+ */
1402
+ tenantId: string;
1403
+ /**
1404
+ * Gets or sets the Id.
1405
+ */
1406
+ id: string;
1407
+ };
1408
+
1409
+ /**
1410
+ * Post model for VenueBadmintonEnglandReport inserts.
1411
+ */
1412
+ type VenueBadmintonEnglandReportPost = {
1413
+ /**
1414
+ * Gets or sets the tenant Id.
1415
+ */
1416
+ tenantId: string;
1417
+ };
1418
+
1419
+ declare class BadEnglandReportService {
1420
+ readonly httpRequest: BaseHttpRequest;
1421
+ constructor(httpRequest: BaseHttpRequest);
1422
+ /**
1423
+ * Exports the venues list to a csv format.
1424
+ * Endpoint has AllowAnonymous attr, however the jwt is validated in the method body (in support of authenticated file downloads.
1425
+ * @returns any Success
1426
+ * @throws ApiError
1427
+ */
1428
+ sendToSftp({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
845
1429
  /**
846
1430
  * Gets or sets the page number for paged queries.
847
1431
  */
@@ -1426,15 +2010,6 @@ declare enum CustomerCancellationOption {
1426
2010
  UNDETERMINED = "Undetermined"
1427
2011
  }
1428
2012
 
1429
- /**
1430
- * The activity type.
1431
- */
1432
- declare enum ActivityType {
1433
- FACILITY = "Facility",
1434
- SESSION = "Session",
1435
- COURSE = "Course"
1436
- }
1437
-
1438
2013
  /**
1439
2014
  * The Opportunity booking status, indicating whether the opportunity has an active booking or has been attended.
1440
2015
  */
@@ -17095,994 +17670,29 @@ declare class OrdersService {
17095
17670
  */
17096
17671
  facilityId?: string;
17097
17672
  /**
17098
- * Gets or sets the course Id for use in a query search.
17099
- */
17100
- courseId?: string;
17101
- /**
17102
- * Gets or sets the queryable order stage. This cannot be used in conjunction with IsBookedOrPendingPayment.
17103
- */
17104
- orderStage?: OrderStage;
17105
- /**
17106
- * Gets or sets a value indicating whether to return orders that are either booked or pending payment. This cannot be used in conjunction with OrderStage.
17107
- */
17108
- isBookedOrPendingPayment?: boolean;
17109
- /**
17110
- * Gets or sets the queryable order stages.
17111
- */
17112
- orderStages?: Array<OrderStage>;
17113
- /**
17114
- * Gets or sets the queryable order date creted is greater than or equal to.
17115
- */
17116
- orderDateGte?: string;
17117
- /**
17118
- * Gets or sets the queryable order date created is less than or equal to.
17119
- */
17120
- orderDateLte?: string;
17121
- /**
17122
- * Gets or sets the page number for paged queries.
17123
- */
17124
- pageNumber?: number;
17125
- /**
17126
- * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
17127
- */
17128
- take?: number;
17129
- /**
17130
- * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
17131
- */
17132
- limitListRequests?: boolean;
17133
- /**
17134
- * Gets or sets the Tenant Id.
17135
- */
17136
- tenantId?: string;
17137
- /**
17138
- * Gets or sets the Modifed By Id.
17139
- */
17140
- modifiedById?: string;
17141
- /**
17142
- * Gets or sets the Modifed By Ids.
17143
- */
17144
- modifiedByIds?: Array<string>;
17145
- /**
17146
- * Gets or sets the Date Created greater than equal to.
17147
- */
17148
- dateCreatedGte?: string;
17149
- /**
17150
- * Gets or sets the Date Created less than equal to.
17151
- */
17152
- dateCreatedLte?: string;
17153
- /**
17154
- * Gets or sets the queryable only is live status.
17155
- */
17156
- isLive?: boolean;
17157
- /**
17158
- * Gets or sets the sort order direction.
17159
- */
17160
- sortOrderDirection?: SearchSortOrderDirection;
17161
- }): CancelablePromise<Array<Order>>;
17162
- /**
17163
- * Gets a list of resources.
17164
- * @returns Order Success
17165
- * @throws ApiError
17166
- */
17167
- getListIdName({ wildcard, accessCode, venueId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
17168
- /**
17169
- * Gets or sets the wildcard for use in a query search.
17170
- */
17171
- wildcard?: string;
17172
- /**
17173
- * Gets or sets the access code for use in a query search.
17174
- */
17175
- accessCode?: string;
17176
- /**
17177
- * Gets or sets the venue Id for use in a query search.
17178
- */
17179
- venueId?: string;
17180
- /**
17181
- * Gets or sets the customer Id for use in a query search.
17182
- */
17183
- customerId?: string;
17184
- /**
17185
- * Gets or sets the queryable order ids.
17186
- */
17187
- orderIds?: Array<string>;
17188
- /**
17189
- * Gets or sets the session Id for use in a query search.
17190
- */
17191
- sessionId?: string;
17192
- /**
17193
- * Gets or sets the facility Id for use in a query search.
17194
- */
17195
- facilityId?: string;
17196
- /**
17197
- * Gets or sets the course Id for use in a query search.
17198
- */
17199
- courseId?: string;
17200
- /**
17201
- * Gets or sets the queryable order stage. This cannot be used in conjunction with IsBookedOrPendingPayment.
17202
- */
17203
- orderStage?: OrderStage;
17204
- /**
17205
- * Gets or sets a value indicating whether to return orders that are either booked or pending payment. This cannot be used in conjunction with OrderStage.
17206
- */
17207
- isBookedOrPendingPayment?: boolean;
17208
- /**
17209
- * Gets or sets the queryable order stages.
17210
- */
17211
- orderStages?: Array<OrderStage>;
17212
- /**
17213
- * Gets or sets the queryable order date creted is greater than or equal to.
17214
- */
17215
- orderDateGte?: string;
17216
- /**
17217
- * Gets or sets the queryable order date created is less than or equal to.
17218
- */
17219
- orderDateLte?: string;
17220
- /**
17221
- * Gets or sets the page number for paged queries.
17222
- */
17223
- pageNumber?: number;
17224
- /**
17225
- * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
17226
- */
17227
- take?: number;
17228
- /**
17229
- * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
17230
- */
17231
- limitListRequests?: boolean;
17232
- /**
17233
- * Gets or sets the Tenant Id.
17234
- */
17235
- tenantId?: string;
17236
- /**
17237
- * Gets or sets the Modifed By Id.
17238
- */
17239
- modifiedById?: string;
17240
- /**
17241
- * Gets or sets the Modifed By Ids.
17242
- */
17243
- modifiedByIds?: Array<string>;
17244
- /**
17245
- * Gets or sets the Date Created greater than equal to.
17246
- */
17247
- dateCreatedGte?: string;
17248
- /**
17249
- * Gets or sets the Date Created less than equal to.
17250
- */
17251
- dateCreatedLte?: string;
17252
- /**
17253
- * Gets or sets the queryable only is live status.
17254
- */
17255
- isLive?: boolean;
17256
- /**
17257
- * Gets or sets the sort order direction.
17258
- */
17259
- sortOrderDirection?: SearchSortOrderDirection;
17260
- }): CancelablePromise<Array<Order>>;
17261
- }
17262
-
17263
- /**
17264
- * Represents an organisation within the Reach application.
17265
- */
17266
- type OrgCourseUtilisation = {
17267
- /**
17268
- * Gets or sets the entities Id.
17269
- */
17270
- id?: string;
17271
- /**
17272
- * Gets or sets the tenant Id.
17273
- */
17274
- tenantId: string;
17275
- /**
17276
- * Gets or sets the created date of this entity.
17277
- */
17278
- dateCreated: string;
17279
- /**
17280
- * Gets or sets the last modified date of this entity.
17281
- */
17282
- dateModified: string;
17283
- /**
17284
- * Gets or sets the modified by Id.
17285
- */
17286
- modifiedById?: string | null;
17287
- /**
17288
- * Gets or sets a value indicating whether the record is live and available for use within the application.
17289
- */
17290
- isLive: boolean;
17291
- /**
17292
- * Gets or sets the tenant name.
17293
- */
17294
- tenantName?: string | null;
17295
- /**
17296
- * Gets or sets the venue name.
17297
- */
17298
- venueName?: string | null;
17299
- /**
17300
- * Gets or sets the activity name.
17301
- */
17302
- activityName?: string | null;
17303
- /**
17304
- * Gets or sets a value indicating whether the venue is online.
17305
- */
17306
- venueOnline?: boolean;
17307
- /**
17308
- * Gets or sets a value indicating whether the activity is online.
17309
- */
17310
- activityOnline?: boolean;
17311
- /**
17312
- * Gets or sets the capacity.
17313
- */
17314
- capacity?: number;
17315
- /**
17316
- * Gets or sets the remaining uses.
17317
- */
17318
- remainingUses?: number;
17319
- /**
17320
- * Gets or sets the utilisation percentage.
17321
- */
17322
- utilisation?: number;
17323
- /**
17324
- * Gets or sets the total value realised.
17325
- */
17326
- totalValueRealised?: number;
17327
- /**
17328
- * Gets or sets the total value potential.
17329
- */
17330
- totalValuePotential?: number;
17331
- /**
17332
- * Gets or sets the minimum value of vacant slots.
17333
- */
17334
- minVacantValue?: number;
17335
- /**
17336
- * Gets or sets the maximum value of vacant slots.
17337
- */
17338
- maxVacantValue?: number;
17339
- };
17340
-
17341
- type OrgCourseUtilisationPage = {
17342
- pagination: Pagination;
17343
- readonly items: Array<OrgCourseUtilisation>;
17344
- };
17345
-
17346
- /**
17347
- * Post model for OrgCourseUtilisation updates.
17348
- */
17349
- type OrgCourseUtilisationPatch = {
17350
- /**
17351
- * Gets or sets the tenant Id.
17352
- */
17353
- tenantId: string;
17354
- /**
17355
- * Gets or sets the Id.
17356
- */
17357
- id: string;
17358
- };
17359
-
17360
- /**
17361
- * Post model for OrgCourseUtilisation inserts.
17362
- */
17363
- type OrgCourseUtilisationPost = {
17364
- /**
17365
- * Gets or sets the tenant Id.
17366
- */
17367
- tenantId: string;
17368
- };
17369
-
17370
- declare class OrgCourseUtilisationService {
17371
- readonly httpRequest: BaseHttpRequest;
17372
- constructor(httpRequest: BaseHttpRequest);
17373
- /**
17374
- * Exports the orders list to a csv format.
17375
- * Endpoint has AllowAnonymous attr, however the jwt is validated in the method body (in support of authenticated file downloads.
17376
- * @returns any Success
17377
- * @throws ApiError
17378
- */
17379
- exportToCsv({ venueId, userId, programmeId, startDateGte, startDateLte, endDateGte, endDateLte, onlineActivitiesOnly, onlineVenuesOnly, reportingLevel, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
17380
- /**
17381
- * Gets or sets the Venue Id.
17382
- */
17383
- venueId?: string;
17384
- /**
17385
- * Gets or sets the User Id.
17386
- */
17387
- userId?: string;
17388
- /**
17389
- * Gets or sets the Programme Id.
17390
- */
17391
- programmeId?: string;
17392
- /**
17393
- * Gets or sets the starting date greater than or equal to.
17394
- */
17395
- startDateGte?: string;
17396
- /**
17397
- * Gets or sets the starting date less than or equal to.
17398
- */
17399
- startDateLte?: string;
17400
- /**
17401
- * Gets or sets the end date greater than or equal to.
17402
- */
17403
- endDateGte?: string;
17404
- /**
17405
- * Gets or sets the end date less than or equal to.
17406
- */
17407
- endDateLte?: string;
17408
- /**
17409
- * Gets or sets a value indicating whether to include online activities only.
17410
- */
17411
- onlineActivitiesOnly?: boolean;
17412
- /**
17413
- * Gets or sets a value indicating whether to include online venues only.
17414
- */
17415
- onlineVenuesOnly?: boolean;
17416
- /**
17417
- * Gets or sets the reporting level ('activity' or 'venue').
17418
- */
17419
- reportingLevel?: string;
17420
- /**
17421
- * Gets or sets the page number for paged queries.
17422
- */
17423
- pageNumber?: number;
17424
- /**
17425
- * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
17426
- */
17427
- take?: number;
17428
- /**
17429
- * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
17430
- */
17431
- limitListRequests?: boolean;
17432
- /**
17433
- * Gets or sets the Tenant Id.
17434
- */
17435
- tenantId?: string;
17436
- /**
17437
- * Gets or sets the Modifed By Id.
17438
- */
17439
- modifiedById?: string;
17440
- /**
17441
- * Gets or sets the Modifed By Ids.
17442
- */
17443
- modifiedByIds?: Array<string>;
17444
- /**
17445
- * Gets or sets the Date Created greater than equal to.
17446
- */
17447
- dateCreatedGte?: string;
17448
- /**
17449
- * Gets or sets the Date Created less than equal to.
17450
- */
17451
- dateCreatedLte?: string;
17452
- /**
17453
- * Gets or sets the queryable only is live status.
17454
- */
17455
- isLive?: boolean;
17456
- /**
17457
- * Gets or sets the sort order direction.
17458
- */
17459
- sortOrderDirection?: SearchSortOrderDirection;
17460
- formData?: {
17461
- /**
17462
- * Gets or sets the auth token.
17463
- */
17464
- Token?: string;
17465
- };
17466
- }): CancelablePromise<any>;
17467
- /**
17468
- * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
17469
- * @returns OrgCourseUtilisation Success
17470
- * @throws ApiError
17471
- */
17472
- post({ requestBody, }: {
17473
- /**
17474
- * The <typeparamref name="TObject" /> model.
17475
- */
17476
- requestBody?: OrgCourseUtilisationPost;
17477
- }): CancelablePromise<OrgCourseUtilisation>;
17478
- /**
17479
- * Patches the resource.
17480
- * @returns OrgCourseUtilisation Success
17481
- * @throws ApiError
17482
- */
17483
- patch({ requestBody, }: {
17484
- /**
17485
- * The <typeparamref name="TObject" /> model.
17486
- */
17487
- requestBody?: OrgCourseUtilisationPatch;
17488
- }): CancelablePromise<OrgCourseUtilisation>;
17489
- /**
17490
- * Inserts a list of resources.
17491
- * @returns OrgCourseUtilisation Success
17492
- * @throws ApiError
17493
- */
17494
- postList({ requestBody, }: {
17495
- /**
17496
- * The list of <typeparamref name="TObject" />.
17497
- */
17498
- requestBody?: Array<OrgCourseUtilisationPost>;
17499
- }): CancelablePromise<Array<OrgCourseUtilisation>>;
17500
- /**
17501
- * Patches the resource.
17502
- * @returns OrgCourseUtilisation Success
17503
- * @throws ApiError
17504
- */
17505
- patchWithReferences({ requestBody, }: {
17506
- /**
17507
- * The <typeparamref name="TObject" /> model.
17508
- */
17509
- requestBody?: OrgCourseUtilisationPatch;
17510
- }): CancelablePromise<OrgCourseUtilisation>;
17511
- /**
17512
- * Deletes the resource.
17513
- * @returns any Success
17514
- * @throws ApiError
17515
- */
17516
- deleteByObject({ requestBody, }: {
17517
- /**
17518
- * The <typeparamref name="TObject" /> model.
17519
- */
17520
- requestBody?: OrgCourseUtilisation;
17521
- }): CancelablePromise<any>;
17522
- /**
17523
- * Gets a list of resources.
17524
- * @returns OrgCourseUtilisationPage Success
17525
- * @throws ApiError
17526
- */
17527
- getPage({ venueId, userId, programmeId, startDateGte, startDateLte, endDateGte, endDateLte, onlineActivitiesOnly, onlineVenuesOnly, reportingLevel, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
17528
- /**
17529
- * Gets or sets the Venue Id.
17530
- */
17531
- venueId?: string;
17532
- /**
17533
- * Gets or sets the User Id.
17534
- */
17535
- userId?: string;
17536
- /**
17537
- * Gets or sets the Programme Id.
17538
- */
17539
- programmeId?: string;
17540
- /**
17541
- * Gets or sets the starting date greater than or equal to.
17542
- */
17543
- startDateGte?: string;
17544
- /**
17545
- * Gets or sets the starting date less than or equal to.
17546
- */
17547
- startDateLte?: string;
17548
- /**
17549
- * Gets or sets the end date greater than or equal to.
17550
- */
17551
- endDateGte?: string;
17552
- /**
17553
- * Gets or sets the end date less than or equal to.
17554
- */
17555
- endDateLte?: string;
17556
- /**
17557
- * Gets or sets a value indicating whether to include online activities only.
17558
- */
17559
- onlineActivitiesOnly?: boolean;
17560
- /**
17561
- * Gets or sets a value indicating whether to include online venues only.
17562
- */
17563
- onlineVenuesOnly?: boolean;
17564
- /**
17565
- * Gets or sets the reporting level ('activity' or 'venue').
17566
- */
17567
- reportingLevel?: string;
17568
- /**
17569
- * Gets or sets the page number for paged queries.
17570
- */
17571
- pageNumber?: number;
17572
- /**
17573
- * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
17574
- */
17575
- take?: number;
17576
- /**
17577
- * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
17578
- */
17579
- limitListRequests?: boolean;
17580
- /**
17581
- * Gets or sets the Tenant Id.
17582
- */
17583
- tenantId?: string;
17584
- /**
17585
- * Gets or sets the Modifed By Id.
17586
- */
17587
- modifiedById?: string;
17588
- /**
17589
- * Gets or sets the Modifed By Ids.
17590
- */
17591
- modifiedByIds?: Array<string>;
17592
- /**
17593
- * Gets or sets the Date Created greater than equal to.
17594
- */
17595
- dateCreatedGte?: string;
17596
- /**
17597
- * Gets or sets the Date Created less than equal to.
17598
- */
17599
- dateCreatedLte?: string;
17600
- /**
17601
- * Gets or sets the queryable only is live status.
17602
- */
17603
- isLive?: boolean;
17604
- /**
17605
- * Gets or sets the sort order direction.
17606
- */
17607
- sortOrderDirection?: SearchSortOrderDirection;
17608
- }): CancelablePromise<OrgCourseUtilisationPage>;
17609
- /**
17610
- * Deletes the resource.
17611
- * @returns any Success
17612
- * @throws ApiError
17613
- */
17614
- deleteById({ id, }: {
17615
- /**
17616
- * The <typeparamref name="TObject" /> id.
17617
- */
17618
- id: string;
17619
- }): CancelablePromise<any>;
17620
- /**
17621
- * Gets the resource by its Id.
17622
- * @returns OrgCourseUtilisation Success
17623
- * @throws ApiError
17624
- */
17625
- getObject({ id, }: {
17626
- /**
17627
- * The <typeparamref name="TObject" /> id.
17628
- */
17629
- id: string;
17630
- }): CancelablePromise<OrgCourseUtilisation>;
17631
- /**
17632
- * Returns a value indicating whether the resource is deletable.
17633
- * @returns boolean Success
17634
- * @throws ApiError
17635
- */
17636
- canDelete({ id, }: {
17637
- /**
17638
- * The <typeparamref name="TObject" /> id.
17639
- */
17640
- id: string;
17641
- }): CancelablePromise<boolean>;
17642
- /**
17643
- * Returns a value indicating whether the resource exists in the database given the provided search params.
17644
- * @returns boolean Success
17645
- * @throws ApiError
17646
- */
17647
- exists({ venueId, userId, programmeId, startDateGte, startDateLte, endDateGte, endDateLte, onlineActivitiesOnly, onlineVenuesOnly, reportingLevel, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
17648
- /**
17649
- * Gets or sets the Venue Id.
17650
- */
17651
- venueId?: string;
17652
- /**
17653
- * Gets or sets the User Id.
17654
- */
17655
- userId?: string;
17656
- /**
17657
- * Gets or sets the Programme Id.
17658
- */
17659
- programmeId?: string;
17660
- /**
17661
- * Gets or sets the starting date greater than or equal to.
17662
- */
17663
- startDateGte?: string;
17664
- /**
17665
- * Gets or sets the starting date less than or equal to.
17666
- */
17667
- startDateLte?: string;
17668
- /**
17669
- * Gets or sets the end date greater than or equal to.
17670
- */
17671
- endDateGte?: string;
17672
- /**
17673
- * Gets or sets the end date less than or equal to.
17674
- */
17675
- endDateLte?: string;
17676
- /**
17677
- * Gets or sets a value indicating whether to include online activities only.
17678
- */
17679
- onlineActivitiesOnly?: boolean;
17680
- /**
17681
- * Gets or sets a value indicating whether to include online venues only.
17682
- */
17683
- onlineVenuesOnly?: boolean;
17684
- /**
17685
- * Gets or sets the reporting level ('activity' or 'venue').
17686
- */
17687
- reportingLevel?: string;
17688
- /**
17689
- * Gets or sets the page number for paged queries.
17690
- */
17691
- pageNumber?: number;
17692
- /**
17693
- * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
17694
- */
17695
- take?: number;
17696
- /**
17697
- * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
17698
- */
17699
- limitListRequests?: boolean;
17700
- /**
17701
- * Gets or sets the Tenant Id.
17702
- */
17703
- tenantId?: string;
17704
- /**
17705
- * Gets or sets the Modifed By Id.
17706
- */
17707
- modifiedById?: string;
17708
- /**
17709
- * Gets or sets the Modifed By Ids.
17710
- */
17711
- modifiedByIds?: Array<string>;
17712
- /**
17713
- * Gets or sets the Date Created greater than equal to.
17714
- */
17715
- dateCreatedGte?: string;
17716
- /**
17717
- * Gets or sets the Date Created less than equal to.
17718
- */
17719
- dateCreatedLte?: string;
17720
- /**
17721
- * Gets or sets the queryable only is live status.
17722
- */
17723
- isLive?: boolean;
17724
- /**
17725
- * Gets or sets the sort order direction.
17726
- */
17727
- sortOrderDirection?: SearchSortOrderDirection;
17728
- }): CancelablePromise<boolean>;
17729
- /**
17730
- * Gets a list of resources unpaged and without references.
17731
- * @returns OrgCourseUtilisation Success
17732
- * @throws ApiError
17733
- */
17734
- getListWithoutReferences({ venueId, userId, programmeId, startDateGte, startDateLte, endDateGte, endDateLte, onlineActivitiesOnly, onlineVenuesOnly, reportingLevel, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
17735
- /**
17736
- * Gets or sets the Venue Id.
17737
- */
17738
- venueId?: string;
17739
- /**
17740
- * Gets or sets the User Id.
17741
- */
17742
- userId?: string;
17743
- /**
17744
- * Gets or sets the Programme Id.
17745
- */
17746
- programmeId?: string;
17747
- /**
17748
- * Gets or sets the starting date greater than or equal to.
17749
- */
17750
- startDateGte?: string;
17751
- /**
17752
- * Gets or sets the starting date less than or equal to.
17753
- */
17754
- startDateLte?: string;
17755
- /**
17756
- * Gets or sets the end date greater than or equal to.
17757
- */
17758
- endDateGte?: string;
17759
- /**
17760
- * Gets or sets the end date less than or equal to.
17761
- */
17762
- endDateLte?: string;
17763
- /**
17764
- * Gets or sets a value indicating whether to include online activities only.
17765
- */
17766
- onlineActivitiesOnly?: boolean;
17767
- /**
17768
- * Gets or sets a value indicating whether to include online venues only.
17769
- */
17770
- onlineVenuesOnly?: boolean;
17771
- /**
17772
- * Gets or sets the reporting level ('activity' or 'venue').
17773
- */
17774
- reportingLevel?: string;
17775
- /**
17776
- * Gets or sets the page number for paged queries.
17777
- */
17778
- pageNumber?: number;
17779
- /**
17780
- * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
17781
- */
17782
- take?: number;
17783
- /**
17784
- * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
17785
- */
17786
- limitListRequests?: boolean;
17787
- /**
17788
- * Gets or sets the Tenant Id.
17789
- */
17790
- tenantId?: string;
17791
- /**
17792
- * Gets or sets the Modifed By Id.
17793
- */
17794
- modifiedById?: string;
17795
- /**
17796
- * Gets or sets the Modifed By Ids.
17797
- */
17798
- modifiedByIds?: Array<string>;
17799
- /**
17800
- * Gets or sets the Date Created greater than equal to.
17801
- */
17802
- dateCreatedGte?: string;
17803
- /**
17804
- * Gets or sets the Date Created less than equal to.
17805
- */
17806
- dateCreatedLte?: string;
17807
- /**
17808
- * Gets or sets the queryable only is live status.
17809
- */
17810
- isLive?: boolean;
17811
- /**
17812
- * Gets or sets the sort order direction.
17813
- */
17814
- sortOrderDirection?: SearchSortOrderDirection;
17815
- }): CancelablePromise<Array<OrgCourseUtilisation>>;
17816
- /**
17817
- * Gets a list of resources.
17818
- * @returns OrgCourseUtilisation Success
17819
- * @throws ApiError
17820
- */
17821
- getListIdName({ venueId, userId, programmeId, startDateGte, startDateLte, endDateGte, endDateLte, onlineActivitiesOnly, onlineVenuesOnly, reportingLevel, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
17822
- /**
17823
- * Gets or sets the Venue Id.
17824
- */
17825
- venueId?: string;
17826
- /**
17827
- * Gets or sets the User Id.
17828
- */
17829
- userId?: string;
17830
- /**
17831
- * Gets or sets the Programme Id.
17832
- */
17833
- programmeId?: string;
17834
- /**
17835
- * Gets or sets the starting date greater than or equal to.
17836
- */
17837
- startDateGte?: string;
17838
- /**
17839
- * Gets or sets the starting date less than or equal to.
17840
- */
17841
- startDateLte?: string;
17842
- /**
17843
- * Gets or sets the end date greater than or equal to.
17844
- */
17845
- endDateGte?: string;
17846
- /**
17847
- * Gets or sets the end date less than or equal to.
17848
- */
17849
- endDateLte?: string;
17850
- /**
17851
- * Gets or sets a value indicating whether to include online activities only.
17852
- */
17853
- onlineActivitiesOnly?: boolean;
17854
- /**
17855
- * Gets or sets a value indicating whether to include online venues only.
17856
- */
17857
- onlineVenuesOnly?: boolean;
17858
- /**
17859
- * Gets or sets the reporting level ('activity' or 'venue').
17860
- */
17861
- reportingLevel?: string;
17862
- /**
17863
- * Gets or sets the page number for paged queries.
17864
- */
17865
- pageNumber?: number;
17866
- /**
17867
- * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
17868
- */
17869
- take?: number;
17870
- /**
17871
- * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
17872
- */
17873
- limitListRequests?: boolean;
17874
- /**
17875
- * Gets or sets the Tenant Id.
17876
- */
17877
- tenantId?: string;
17878
- /**
17879
- * Gets or sets the Modifed By Id.
17880
- */
17881
- modifiedById?: string;
17882
- /**
17883
- * Gets or sets the Modifed By Ids.
17884
- */
17885
- modifiedByIds?: Array<string>;
17886
- /**
17887
- * Gets or sets the Date Created greater than equal to.
17888
- */
17889
- dateCreatedGte?: string;
17890
- /**
17891
- * Gets or sets the Date Created less than equal to.
17892
- */
17893
- dateCreatedLte?: string;
17894
- /**
17895
- * Gets or sets the queryable only is live status.
17896
- */
17897
- isLive?: boolean;
17898
- /**
17899
- * Gets or sets the sort order direction.
17900
- */
17901
- sortOrderDirection?: SearchSortOrderDirection;
17902
- }): CancelablePromise<Array<OrgCourseUtilisation>>;
17903
- }
17904
-
17905
- type PaymentPage = {
17906
- pagination: Pagination;
17907
- readonly items: Array<Payment>;
17908
- };
17909
-
17910
- /**
17911
- * Post model for payment updates.
17912
- */
17913
- type PaymentPatch = {
17914
- /**
17915
- * Gets or sets the tenant Id.
17916
- */
17917
- tenantId: string;
17918
- /**
17919
- * Gets or sets the Id.
17920
- */
17921
- id: string;
17922
- };
17923
-
17924
- /**
17925
- * Post model for payment inserts.
17926
- */
17927
- type PaymentPost = {
17928
- /**
17929
- * Gets or sets the tenant Id.
17930
- */
17931
- tenantId: string;
17932
- };
17933
-
17934
- declare class PaymentsService {
17935
- readonly httpRequest: BaseHttpRequest;
17936
- constructor(httpRequest: BaseHttpRequest);
17937
- /**
17938
- * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
17939
- * @returns Payment Success
17940
- * @throws ApiError
17941
- */
17942
- post({ requestBody, }: {
17943
- /**
17944
- * The <typeparamref name="TObject" /> model.
17945
- */
17946
- requestBody?: PaymentPost;
17947
- }): CancelablePromise<Payment>;
17948
- /**
17949
- * Patches the resource.
17950
- * @returns Payment Success
17951
- * @throws ApiError
17952
- */
17953
- patch({ requestBody, }: {
17954
- /**
17955
- * The <typeparamref name="TObject" /> model.
17956
- */
17957
- requestBody?: PaymentPatch;
17958
- }): CancelablePromise<Payment>;
17959
- /**
17960
- * Inserts a list of resources.
17961
- * @returns Payment Success
17962
- * @throws ApiError
17963
- */
17964
- postList({ requestBody, }: {
17965
- /**
17966
- * The list of <typeparamref name="TObject" />.
17967
- */
17968
- requestBody?: Array<PaymentPost>;
17969
- }): CancelablePromise<Array<Payment>>;
17970
- /**
17971
- * Patches the resource.
17972
- * @returns Payment Success
17973
- * @throws ApiError
17974
- */
17975
- patchWithReferences({ requestBody, }: {
17976
- /**
17977
- * The <typeparamref name="TObject" /> model.
17978
- */
17979
- requestBody?: PaymentPatch;
17980
- }): CancelablePromise<Payment>;
17981
- /**
17982
- * Deletes the resource.
17983
- * @returns any Success
17984
- * @throws ApiError
17985
- */
17986
- deleteByObject({ requestBody, }: {
17987
- /**
17988
- * The <typeparamref name="TObject" /> model.
17989
- */
17990
- requestBody?: Payment;
17991
- }): CancelablePromise<any>;
17992
- /**
17993
- * Gets a list of resources.
17994
- * @returns PaymentPage Success
17995
- * @throws ApiError
17996
- */
17997
- getPage({ orderId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
17998
- /**
17999
- * Gets or sets the order Id for use in a query search.
18000
- */
18001
- orderId?: string;
18002
- /**
18003
- * Gets or sets the page number for paged queries.
18004
- */
18005
- pageNumber?: number;
18006
- /**
18007
- * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
18008
- */
18009
- take?: number;
18010
- /**
18011
- * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
18012
- */
18013
- limitListRequests?: boolean;
18014
- /**
18015
- * Gets or sets the Tenant Id.
18016
- */
18017
- tenantId?: string;
18018
- /**
18019
- * Gets or sets the Modifed By Id.
18020
- */
18021
- modifiedById?: string;
18022
- /**
18023
- * Gets or sets the Modifed By Ids.
18024
- */
18025
- modifiedByIds?: Array<string>;
18026
- /**
18027
- * Gets or sets the Date Created greater than equal to.
18028
- */
18029
- dateCreatedGte?: string;
18030
- /**
18031
- * Gets or sets the Date Created less than equal to.
18032
- */
18033
- dateCreatedLte?: string;
18034
- /**
18035
- * Gets or sets the queryable only is live status.
18036
- */
18037
- isLive?: boolean;
18038
- /**
18039
- * Gets or sets the sort order direction.
18040
- */
18041
- sortOrderDirection?: SearchSortOrderDirection;
18042
- }): CancelablePromise<PaymentPage>;
18043
- /**
18044
- * Deletes the resource.
18045
- * @returns any Success
18046
- * @throws ApiError
18047
- */
18048
- deleteById({ id, }: {
17673
+ * Gets or sets the course Id for use in a query search.
17674
+ */
17675
+ courseId?: string;
18049
17676
  /**
18050
- * The <typeparamref name="TObject" /> id.
17677
+ * Gets or sets the queryable order stage. This cannot be used in conjunction with IsBookedOrPendingPayment.
18051
17678
  */
18052
- id: string;
18053
- }): CancelablePromise<any>;
18054
- /**
18055
- * Gets the resource by its Id.
18056
- * @returns Payment Success
18057
- * @throws ApiError
18058
- */
18059
- getObject({ id, }: {
17679
+ orderStage?: OrderStage;
18060
17680
  /**
18061
- * The <typeparamref name="TObject" /> id.
17681
+ * Gets or sets a value indicating whether to return orders that are either booked or pending payment. This cannot be used in conjunction with OrderStage.
18062
17682
  */
18063
- id: string;
18064
- }): CancelablePromise<Payment>;
18065
- /**
18066
- * Returns a value indicating whether the resource is deletable.
18067
- * @returns boolean Success
18068
- * @throws ApiError
18069
- */
18070
- canDelete({ id, }: {
17683
+ isBookedOrPendingPayment?: boolean;
18071
17684
  /**
18072
- * The <typeparamref name="TObject" /> id.
17685
+ * Gets or sets the queryable order stages.
18073
17686
  */
18074
- id: string;
18075
- }): CancelablePromise<boolean>;
18076
- /**
18077
- * Returns a value indicating whether the resource exists in the database given the provided search params.
18078
- * @returns boolean Success
18079
- * @throws ApiError
18080
- */
18081
- exists({ orderId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
17687
+ orderStages?: Array<OrderStage>;
18082
17688
  /**
18083
- * Gets or sets the order Id for use in a query search.
17689
+ * Gets or sets the queryable order date creted is greater than or equal to.
18084
17690
  */
18085
- orderId?: string;
17691
+ orderDateGte?: string;
17692
+ /**
17693
+ * Gets or sets the queryable order date created is less than or equal to.
17694
+ */
17695
+ orderDateLte?: string;
18086
17696
  /**
18087
17697
  * Gets or sets the page number for paged queries.
18088
17698
  */
@@ -18123,68 +17733,65 @@ declare class PaymentsService {
18123
17733
  * Gets or sets the sort order direction.
18124
17734
  */
18125
17735
  sortOrderDirection?: SearchSortOrderDirection;
18126
- }): CancelablePromise<boolean>;
17736
+ }): CancelablePromise<Array<Order>>;
18127
17737
  /**
18128
- * Gets a list of resources unpaged and without references.
18129
- * @returns Payment Success
17738
+ * Gets a list of resources.
17739
+ * @returns Order Success
18130
17740
  * @throws ApiError
18131
17741
  */
18132
- getListWithoutReferences({ orderId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
17742
+ getListIdName({ wildcard, accessCode, venueId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
18133
17743
  /**
18134
- * Gets or sets the order Id for use in a query search.
17744
+ * Gets or sets the wildcard for use in a query search.
18135
17745
  */
18136
- orderId?: string;
17746
+ wildcard?: string;
18137
17747
  /**
18138
- * Gets or sets the page number for paged queries.
17748
+ * Gets or sets the access code for use in a query search.
18139
17749
  */
18140
- pageNumber?: number;
17750
+ accessCode?: string;
18141
17751
  /**
18142
- * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
17752
+ * Gets or sets the venue Id for use in a query search.
18143
17753
  */
18144
- take?: number;
17754
+ venueId?: string;
18145
17755
  /**
18146
- * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
17756
+ * Gets or sets the customer Id for use in a query search.
18147
17757
  */
18148
- limitListRequests?: boolean;
17758
+ customerId?: string;
18149
17759
  /**
18150
- * Gets or sets the Tenant Id.
17760
+ * Gets or sets the queryable order ids.
18151
17761
  */
18152
- tenantId?: string;
17762
+ orderIds?: Array<string>;
18153
17763
  /**
18154
- * Gets or sets the Modifed By Id.
17764
+ * Gets or sets the session Id for use in a query search.
18155
17765
  */
18156
- modifiedById?: string;
17766
+ sessionId?: string;
18157
17767
  /**
18158
- * Gets or sets the Modifed By Ids.
17768
+ * Gets or sets the facility Id for use in a query search.
18159
17769
  */
18160
- modifiedByIds?: Array<string>;
17770
+ facilityId?: string;
18161
17771
  /**
18162
- * Gets or sets the Date Created greater than equal to.
17772
+ * Gets or sets the course Id for use in a query search.
18163
17773
  */
18164
- dateCreatedGte?: string;
17774
+ courseId?: string;
18165
17775
  /**
18166
- * Gets or sets the Date Created less than equal to.
17776
+ * Gets or sets the queryable order stage. This cannot be used in conjunction with IsBookedOrPendingPayment.
18167
17777
  */
18168
- dateCreatedLte?: string;
17778
+ orderStage?: OrderStage;
18169
17779
  /**
18170
- * Gets or sets the queryable only is live status.
17780
+ * Gets or sets a value indicating whether to return orders that are either booked or pending payment. This cannot be used in conjunction with OrderStage.
18171
17781
  */
18172
- isLive?: boolean;
17782
+ isBookedOrPendingPayment?: boolean;
18173
17783
  /**
18174
- * Gets or sets the sort order direction.
17784
+ * Gets or sets the queryable order stages.
18175
17785
  */
18176
- sortOrderDirection?: SearchSortOrderDirection;
18177
- }): CancelablePromise<Array<Payment>>;
18178
- /**
18179
- * Gets a list of resources.
18180
- * @returns Payment Success
18181
- * @throws ApiError
18182
- */
18183
- getListIdName({ orderId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
17786
+ orderStages?: Array<OrderStage>;
18184
17787
  /**
18185
- * Gets or sets the order Id for use in a query search.
17788
+ * Gets or sets the queryable order date creted is greater than or equal to.
18186
17789
  */
18187
- orderId?: string;
17790
+ orderDateGte?: string;
17791
+ /**
17792
+ * Gets or sets the queryable order date created is less than or equal to.
17793
+ */
17794
+ orderDateLte?: string;
18188
17795
  /**
18189
17796
  * Gets or sets the page number for paged queries.
18190
17797
  */
@@ -18225,13 +17832,13 @@ declare class PaymentsService {
18225
17832
  * Gets or sets the sort order direction.
18226
17833
  */
18227
17834
  sortOrderDirection?: SearchSortOrderDirection;
18228
- }): CancelablePromise<Array<Payment>>;
17835
+ }): CancelablePromise<Array<Order>>;
18229
17836
  }
18230
17837
 
18231
17838
  /**
18232
- * Represents a performance row within the Reach application.
17839
+ * Represents an organisation within the Reach application.
18233
17840
  */
18234
- type Performance = {
17841
+ type OrgCourseUtilisation = {
18235
17842
  /**
18236
17843
  * Gets or sets the entities Id.
18237
17844
  */
@@ -18257,57 +17864,64 @@ type Performance = {
18257
17864
  */
18258
17865
  isLive: boolean;
18259
17866
  /**
18260
- * Gets or sets the activity name.
17867
+ * Gets or sets the tenant name.
18261
17868
  */
18262
- activityName?: string | null;
17869
+ tenantName?: string | null;
18263
17870
  /**
18264
17871
  * Gets or sets the venue name.
18265
17872
  */
18266
17873
  venueName?: string | null;
18267
- activityType?: ActivityType;
18268
17874
  /**
18269
- * Gets or sets a value indicating whether the performance row has unlimited capacity.
17875
+ * Gets or sets the activity name.
18270
17876
  */
18271
- unlimitedCapacity?: boolean;
17877
+ activityName?: string | null;
18272
17878
  /**
18273
- * Gets or sets the capacity.
17879
+ * Gets or sets a value indicating whether the venue is online.
18274
17880
  */
18275
- totalCapacity?: number;
17881
+ venueOnline?: boolean;
18276
17882
  /**
18277
- * Gets or sets the remaining uses.
17883
+ * Gets or sets a value indicating whether the activity is online.
18278
17884
  */
18279
- usedCapacity?: number;
17885
+ activityOnline?: boolean;
17886
+ /**
17887
+ * Gets or sets the capacity.
17888
+ */
17889
+ capacity?: number;
18280
17890
  /**
18281
17891
  * Gets or sets the remaining uses.
18282
17892
  */
18283
- unusedCapacity?: number;
17893
+ remainingUses?: number;
18284
17894
  /**
18285
- * Gets or sets the utilisation.
17895
+ * Gets or sets the utilisation percentage.
18286
17896
  */
18287
17897
  utilisation?: number;
18288
17898
  /**
18289
- * Gets or sets the total orders.
17899
+ * Gets or sets the total value realised.
18290
17900
  */
18291
- totalOrders?: number;
17901
+ totalValueRealised?: number;
18292
17902
  /**
18293
- * Gets or sets the total revenue.
17903
+ * Gets or sets the total value potential.
18294
17904
  */
18295
- totalRevenue?: number;
17905
+ totalValuePotential?: number;
18296
17906
  /**
18297
- * Gets or sets the revenue potential.
17907
+ * Gets or sets the minimum value of vacant slots.
18298
17908
  */
18299
- revenuePotential?: number;
17909
+ minVacantValue?: number;
17910
+ /**
17911
+ * Gets or sets the maximum value of vacant slots.
17912
+ */
17913
+ maxVacantValue?: number;
18300
17914
  };
18301
17915
 
18302
- type PerformancePage = {
17916
+ type OrgCourseUtilisationPage = {
18303
17917
  pagination: Pagination;
18304
- readonly items: Array<Performance>;
17918
+ readonly items: Array<OrgCourseUtilisation>;
18305
17919
  };
18306
17920
 
18307
17921
  /**
18308
- * Post model for Performance updates.
17922
+ * Post model for OrgCourseUtilisation updates.
18309
17923
  */
18310
- type PerformancePatch = {
17924
+ type OrgCourseUtilisationPatch = {
18311
17925
  /**
18312
17926
  * Gets or sets the tenant Id.
18313
17927
  */
@@ -18319,20 +17933,20 @@ type PerformancePatch = {
18319
17933
  };
18320
17934
 
18321
17935
  /**
18322
- * Post model for Performance inserts.
17936
+ * Post model for OrgCourseUtilisation inserts.
18323
17937
  */
18324
- type PerformancePost = {
17938
+ type OrgCourseUtilisationPost = {
18325
17939
  /**
18326
17940
  * Gets or sets the tenant Id.
18327
17941
  */
18328
17942
  tenantId: string;
18329
17943
  };
18330
17944
 
18331
- declare class PerformanceService {
17945
+ declare class OrgCourseUtilisationService {
18332
17946
  readonly httpRequest: BaseHttpRequest;
18333
17947
  constructor(httpRequest: BaseHttpRequest);
18334
17948
  /**
18335
- * Exports the performance list to a csv format.
17949
+ * Exports the orders list to a csv format.
18336
17950
  * Endpoint has AllowAnonymous attr, however the jwt is validated in the method body (in support of authenticated file downloads.
18337
17951
  * @returns any Success
18338
17952
  * @throws ApiError
@@ -18427,48 +18041,48 @@ declare class PerformanceService {
18427
18041
  }): CancelablePromise<any>;
18428
18042
  /**
18429
18043
  * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
18430
- * @returns Performance Success
18044
+ * @returns OrgCourseUtilisation Success
18431
18045
  * @throws ApiError
18432
18046
  */
18433
18047
  post({ requestBody, }: {
18434
18048
  /**
18435
18049
  * The <typeparamref name="TObject" /> model.
18436
18050
  */
18437
- requestBody?: PerformancePost;
18438
- }): CancelablePromise<Performance>;
18051
+ requestBody?: OrgCourseUtilisationPost;
18052
+ }): CancelablePromise<OrgCourseUtilisation>;
18439
18053
  /**
18440
18054
  * Patches the resource.
18441
- * @returns Performance Success
18055
+ * @returns OrgCourseUtilisation Success
18442
18056
  * @throws ApiError
18443
18057
  */
18444
18058
  patch({ requestBody, }: {
18445
18059
  /**
18446
18060
  * The <typeparamref name="TObject" /> model.
18447
18061
  */
18448
- requestBody?: PerformancePatch;
18449
- }): CancelablePromise<Performance>;
18062
+ requestBody?: OrgCourseUtilisationPatch;
18063
+ }): CancelablePromise<OrgCourseUtilisation>;
18450
18064
  /**
18451
18065
  * Inserts a list of resources.
18452
- * @returns Performance Success
18066
+ * @returns OrgCourseUtilisation Success
18453
18067
  * @throws ApiError
18454
18068
  */
18455
18069
  postList({ requestBody, }: {
18456
18070
  /**
18457
18071
  * The list of <typeparamref name="TObject" />.
18458
18072
  */
18459
- requestBody?: Array<PerformancePost>;
18460
- }): CancelablePromise<Array<Performance>>;
18073
+ requestBody?: Array<OrgCourseUtilisationPost>;
18074
+ }): CancelablePromise<Array<OrgCourseUtilisation>>;
18461
18075
  /**
18462
18076
  * Patches the resource.
18463
- * @returns Performance Success
18077
+ * @returns OrgCourseUtilisation Success
18464
18078
  * @throws ApiError
18465
18079
  */
18466
18080
  patchWithReferences({ requestBody, }: {
18467
18081
  /**
18468
18082
  * The <typeparamref name="TObject" /> model.
18469
18083
  */
18470
- requestBody?: PerformancePatch;
18471
- }): CancelablePromise<Performance>;
18084
+ requestBody?: OrgCourseUtilisationPatch;
18085
+ }): CancelablePromise<OrgCourseUtilisation>;
18472
18086
  /**
18473
18087
  * Deletes the resource.
18474
18088
  * @returns any Success
@@ -18478,11 +18092,11 @@ declare class PerformanceService {
18478
18092
  /**
18479
18093
  * The <typeparamref name="TObject" /> model.
18480
18094
  */
18481
- requestBody?: Performance;
18095
+ requestBody?: OrgCourseUtilisation;
18482
18096
  }): CancelablePromise<any>;
18483
18097
  /**
18484
18098
  * Gets a list of resources.
18485
- * @returns PerformancePage Success
18099
+ * @returns OrgCourseUtilisationPage Success
18486
18100
  * @throws ApiError
18487
18101
  */
18488
18102
  getPage({ venueId, userId, programmeId, startDateGte, startDateLte, endDateGte, endDateLte, onlineActivitiesOnly, onlineVenuesOnly, reportingLevel, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
@@ -18566,7 +18180,7 @@ declare class PerformanceService {
18566
18180
  * Gets or sets the sort order direction.
18567
18181
  */
18568
18182
  sortOrderDirection?: SearchSortOrderDirection;
18569
- }): CancelablePromise<PerformancePage>;
18183
+ }): CancelablePromise<OrgCourseUtilisationPage>;
18570
18184
  /**
18571
18185
  * Deletes the resource.
18572
18186
  * @returns any Success
@@ -18580,7 +18194,7 @@ declare class PerformanceService {
18580
18194
  }): CancelablePromise<any>;
18581
18195
  /**
18582
18196
  * Gets the resource by its Id.
18583
- * @returns Performance Success
18197
+ * @returns OrgCourseUtilisation Success
18584
18198
  * @throws ApiError
18585
18199
  */
18586
18200
  getObject({ id, }: {
@@ -18588,7 +18202,7 @@ declare class PerformanceService {
18588
18202
  * The <typeparamref name="TObject" /> id.
18589
18203
  */
18590
18204
  id: string;
18591
- }): CancelablePromise<Performance>;
18205
+ }): CancelablePromise<OrgCourseUtilisation>;
18592
18206
  /**
18593
18207
  * Returns a value indicating whether the resource is deletable.
18594
18208
  * @returns boolean Success
@@ -18689,7 +18303,7 @@ declare class PerformanceService {
18689
18303
  }): CancelablePromise<boolean>;
18690
18304
  /**
18691
18305
  * Gets a list of resources unpaged and without references.
18692
- * @returns Performance Success
18306
+ * @returns OrgCourseUtilisation Success
18693
18307
  * @throws ApiError
18694
18308
  */
18695
18309
  getListWithoutReferences({ venueId, userId, programmeId, startDateGte, startDateLte, endDateGte, endDateLte, onlineActivitiesOnly, onlineVenuesOnly, reportingLevel, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
@@ -18773,10 +18387,10 @@ declare class PerformanceService {
18773
18387
  * Gets or sets the sort order direction.
18774
18388
  */
18775
18389
  sortOrderDirection?: SearchSortOrderDirection;
18776
- }): CancelablePromise<Array<Performance>>;
18390
+ }): CancelablePromise<Array<OrgCourseUtilisation>>;
18777
18391
  /**
18778
18392
  * Gets a list of resources.
18779
- * @returns Performance Success
18393
+ * @returns OrgCourseUtilisation Success
18780
18394
  * @throws ApiError
18781
18395
  */
18782
18396
  getListIdName({ venueId, userId, programmeId, startDateGte, startDateLte, endDateGte, endDateLte, onlineActivitiesOnly, onlineVenuesOnly, reportingLevel, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
@@ -18860,7 +18474,333 @@ declare class PerformanceService {
18860
18474
  * Gets or sets the sort order direction.
18861
18475
  */
18862
18476
  sortOrderDirection?: SearchSortOrderDirection;
18863
- }): CancelablePromise<Array<Performance>>;
18477
+ }): CancelablePromise<Array<OrgCourseUtilisation>>;
18478
+ }
18479
+
18480
+ type PaymentPage = {
18481
+ pagination: Pagination;
18482
+ readonly items: Array<Payment>;
18483
+ };
18484
+
18485
+ /**
18486
+ * Post model for payment updates.
18487
+ */
18488
+ type PaymentPatch = {
18489
+ /**
18490
+ * Gets or sets the tenant Id.
18491
+ */
18492
+ tenantId: string;
18493
+ /**
18494
+ * Gets or sets the Id.
18495
+ */
18496
+ id: string;
18497
+ };
18498
+
18499
+ /**
18500
+ * Post model for payment inserts.
18501
+ */
18502
+ type PaymentPost = {
18503
+ /**
18504
+ * Gets or sets the tenant Id.
18505
+ */
18506
+ tenantId: string;
18507
+ };
18508
+
18509
+ declare class PaymentsService {
18510
+ readonly httpRequest: BaseHttpRequest;
18511
+ constructor(httpRequest: BaseHttpRequest);
18512
+ /**
18513
+ * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
18514
+ * @returns Payment Success
18515
+ * @throws ApiError
18516
+ */
18517
+ post({ requestBody, }: {
18518
+ /**
18519
+ * The <typeparamref name="TObject" /> model.
18520
+ */
18521
+ requestBody?: PaymentPost;
18522
+ }): CancelablePromise<Payment>;
18523
+ /**
18524
+ * Patches the resource.
18525
+ * @returns Payment Success
18526
+ * @throws ApiError
18527
+ */
18528
+ patch({ requestBody, }: {
18529
+ /**
18530
+ * The <typeparamref name="TObject" /> model.
18531
+ */
18532
+ requestBody?: PaymentPatch;
18533
+ }): CancelablePromise<Payment>;
18534
+ /**
18535
+ * Inserts a list of resources.
18536
+ * @returns Payment Success
18537
+ * @throws ApiError
18538
+ */
18539
+ postList({ requestBody, }: {
18540
+ /**
18541
+ * The list of <typeparamref name="TObject" />.
18542
+ */
18543
+ requestBody?: Array<PaymentPost>;
18544
+ }): CancelablePromise<Array<Payment>>;
18545
+ /**
18546
+ * Patches the resource.
18547
+ * @returns Payment Success
18548
+ * @throws ApiError
18549
+ */
18550
+ patchWithReferences({ requestBody, }: {
18551
+ /**
18552
+ * The <typeparamref name="TObject" /> model.
18553
+ */
18554
+ requestBody?: PaymentPatch;
18555
+ }): CancelablePromise<Payment>;
18556
+ /**
18557
+ * Deletes the resource.
18558
+ * @returns any Success
18559
+ * @throws ApiError
18560
+ */
18561
+ deleteByObject({ requestBody, }: {
18562
+ /**
18563
+ * The <typeparamref name="TObject" /> model.
18564
+ */
18565
+ requestBody?: Payment;
18566
+ }): CancelablePromise<any>;
18567
+ /**
18568
+ * Gets a list of resources.
18569
+ * @returns PaymentPage Success
18570
+ * @throws ApiError
18571
+ */
18572
+ getPage({ orderId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
18573
+ /**
18574
+ * Gets or sets the order Id for use in a query search.
18575
+ */
18576
+ orderId?: string;
18577
+ /**
18578
+ * Gets or sets the page number for paged queries.
18579
+ */
18580
+ pageNumber?: number;
18581
+ /**
18582
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
18583
+ */
18584
+ take?: number;
18585
+ /**
18586
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
18587
+ */
18588
+ limitListRequests?: boolean;
18589
+ /**
18590
+ * Gets or sets the Tenant Id.
18591
+ */
18592
+ tenantId?: string;
18593
+ /**
18594
+ * Gets or sets the Modifed By Id.
18595
+ */
18596
+ modifiedById?: string;
18597
+ /**
18598
+ * Gets or sets the Modifed By Ids.
18599
+ */
18600
+ modifiedByIds?: Array<string>;
18601
+ /**
18602
+ * Gets or sets the Date Created greater than equal to.
18603
+ */
18604
+ dateCreatedGte?: string;
18605
+ /**
18606
+ * Gets or sets the Date Created less than equal to.
18607
+ */
18608
+ dateCreatedLte?: string;
18609
+ /**
18610
+ * Gets or sets the queryable only is live status.
18611
+ */
18612
+ isLive?: boolean;
18613
+ /**
18614
+ * Gets or sets the sort order direction.
18615
+ */
18616
+ sortOrderDirection?: SearchSortOrderDirection;
18617
+ }): CancelablePromise<PaymentPage>;
18618
+ /**
18619
+ * Deletes the resource.
18620
+ * @returns any Success
18621
+ * @throws ApiError
18622
+ */
18623
+ deleteById({ id, }: {
18624
+ /**
18625
+ * The <typeparamref name="TObject" /> id.
18626
+ */
18627
+ id: string;
18628
+ }): CancelablePromise<any>;
18629
+ /**
18630
+ * Gets the resource by its Id.
18631
+ * @returns Payment Success
18632
+ * @throws ApiError
18633
+ */
18634
+ getObject({ id, }: {
18635
+ /**
18636
+ * The <typeparamref name="TObject" /> id.
18637
+ */
18638
+ id: string;
18639
+ }): CancelablePromise<Payment>;
18640
+ /**
18641
+ * Returns a value indicating whether the resource is deletable.
18642
+ * @returns boolean Success
18643
+ * @throws ApiError
18644
+ */
18645
+ canDelete({ id, }: {
18646
+ /**
18647
+ * The <typeparamref name="TObject" /> id.
18648
+ */
18649
+ id: string;
18650
+ }): CancelablePromise<boolean>;
18651
+ /**
18652
+ * Returns a value indicating whether the resource exists in the database given the provided search params.
18653
+ * @returns boolean Success
18654
+ * @throws ApiError
18655
+ */
18656
+ exists({ orderId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
18657
+ /**
18658
+ * Gets or sets the order Id for use in a query search.
18659
+ */
18660
+ orderId?: string;
18661
+ /**
18662
+ * Gets or sets the page number for paged queries.
18663
+ */
18664
+ pageNumber?: number;
18665
+ /**
18666
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
18667
+ */
18668
+ take?: number;
18669
+ /**
18670
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
18671
+ */
18672
+ limitListRequests?: boolean;
18673
+ /**
18674
+ * Gets or sets the Tenant Id.
18675
+ */
18676
+ tenantId?: string;
18677
+ /**
18678
+ * Gets or sets the Modifed By Id.
18679
+ */
18680
+ modifiedById?: string;
18681
+ /**
18682
+ * Gets or sets the Modifed By Ids.
18683
+ */
18684
+ modifiedByIds?: Array<string>;
18685
+ /**
18686
+ * Gets or sets the Date Created greater than equal to.
18687
+ */
18688
+ dateCreatedGte?: string;
18689
+ /**
18690
+ * Gets or sets the Date Created less than equal to.
18691
+ */
18692
+ dateCreatedLte?: string;
18693
+ /**
18694
+ * Gets or sets the queryable only is live status.
18695
+ */
18696
+ isLive?: boolean;
18697
+ /**
18698
+ * Gets or sets the sort order direction.
18699
+ */
18700
+ sortOrderDirection?: SearchSortOrderDirection;
18701
+ }): CancelablePromise<boolean>;
18702
+ /**
18703
+ * Gets a list of resources unpaged and without references.
18704
+ * @returns Payment Success
18705
+ * @throws ApiError
18706
+ */
18707
+ getListWithoutReferences({ orderId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
18708
+ /**
18709
+ * Gets or sets the order Id for use in a query search.
18710
+ */
18711
+ orderId?: string;
18712
+ /**
18713
+ * Gets or sets the page number for paged queries.
18714
+ */
18715
+ pageNumber?: number;
18716
+ /**
18717
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
18718
+ */
18719
+ take?: number;
18720
+ /**
18721
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
18722
+ */
18723
+ limitListRequests?: boolean;
18724
+ /**
18725
+ * Gets or sets the Tenant Id.
18726
+ */
18727
+ tenantId?: string;
18728
+ /**
18729
+ * Gets or sets the Modifed By Id.
18730
+ */
18731
+ modifiedById?: string;
18732
+ /**
18733
+ * Gets or sets the Modifed By Ids.
18734
+ */
18735
+ modifiedByIds?: Array<string>;
18736
+ /**
18737
+ * Gets or sets the Date Created greater than equal to.
18738
+ */
18739
+ dateCreatedGte?: string;
18740
+ /**
18741
+ * Gets or sets the Date Created less than equal to.
18742
+ */
18743
+ dateCreatedLte?: string;
18744
+ /**
18745
+ * Gets or sets the queryable only is live status.
18746
+ */
18747
+ isLive?: boolean;
18748
+ /**
18749
+ * Gets or sets the sort order direction.
18750
+ */
18751
+ sortOrderDirection?: SearchSortOrderDirection;
18752
+ }): CancelablePromise<Array<Payment>>;
18753
+ /**
18754
+ * Gets a list of resources.
18755
+ * @returns Payment Success
18756
+ * @throws ApiError
18757
+ */
18758
+ getListIdName({ orderId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
18759
+ /**
18760
+ * Gets or sets the order Id for use in a query search.
18761
+ */
18762
+ orderId?: string;
18763
+ /**
18764
+ * Gets or sets the page number for paged queries.
18765
+ */
18766
+ pageNumber?: number;
18767
+ /**
18768
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
18769
+ */
18770
+ take?: number;
18771
+ /**
18772
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
18773
+ */
18774
+ limitListRequests?: boolean;
18775
+ /**
18776
+ * Gets or sets the Tenant Id.
18777
+ */
18778
+ tenantId?: string;
18779
+ /**
18780
+ * Gets or sets the Modifed By Id.
18781
+ */
18782
+ modifiedById?: string;
18783
+ /**
18784
+ * Gets or sets the Modifed By Ids.
18785
+ */
18786
+ modifiedByIds?: Array<string>;
18787
+ /**
18788
+ * Gets or sets the Date Created greater than equal to.
18789
+ */
18790
+ dateCreatedGte?: string;
18791
+ /**
18792
+ * Gets or sets the Date Created less than equal to.
18793
+ */
18794
+ dateCreatedLte?: string;
18795
+ /**
18796
+ * Gets or sets the queryable only is live status.
18797
+ */
18798
+ isLive?: boolean;
18799
+ /**
18800
+ * Gets or sets the sort order direction.
18801
+ */
18802
+ sortOrderDirection?: SearchSortOrderDirection;
18803
+ }): CancelablePromise<Array<Payment>>;
18864
18804
  }
18865
18805
 
18866
18806
  /**
@@ -38066,7 +38006,489 @@ declare class UsersService {
38066
38006
  * Gets or sets the sort order direction.
38067
38007
  */
38068
38008
  sortOrderDirection?: SearchSortOrderDirection;
38069
- }): CancelablePromise<UserPage>;
38009
+ }): CancelablePromise<UserPage>;
38010
+ /**
38011
+ * Deletes the resource.
38012
+ * @returns any Success
38013
+ * @throws ApiError
38014
+ */
38015
+ deleteById({ id, }: {
38016
+ /**
38017
+ * The <typeparamref name="TObject" /> id.
38018
+ */
38019
+ id: string;
38020
+ }): CancelablePromise<any>;
38021
+ /**
38022
+ * Gets the resource by its Id.
38023
+ * @returns User Success
38024
+ * @throws ApiError
38025
+ */
38026
+ getObject({ id, }: {
38027
+ /**
38028
+ * The <typeparamref name="TObject" /> id.
38029
+ */
38030
+ id: string;
38031
+ }): CancelablePromise<User>;
38032
+ /**
38033
+ * Returns a value indicating whether the resource is deletable.
38034
+ * @returns boolean Success
38035
+ * @throws ApiError
38036
+ */
38037
+ canDelete({ id, }: {
38038
+ /**
38039
+ * The <typeparamref name="TObject" /> id.
38040
+ */
38041
+ id: string;
38042
+ }): CancelablePromise<boolean>;
38043
+ /**
38044
+ * Returns a value indicating whether the resource exists in the database given the provided search params.
38045
+ * @returns boolean Success
38046
+ * @throws ApiError
38047
+ */
38048
+ exists({ ids, roles, name, nameLike, email, inviteStatus, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38049
+ /**
38050
+ * Gets or sets the queryable user ids.
38051
+ */
38052
+ ids?: Array<string>;
38053
+ /**
38054
+ * Gets or sets the queryable user ids.
38055
+ */
38056
+ roles?: Array<string>;
38057
+ /**
38058
+ * Gets or sets the users Name for use in a query search.
38059
+ */
38060
+ name?: string;
38061
+ /**
38062
+ * Gets or sets the users wildcard Name for use in a query search.
38063
+ */
38064
+ nameLike?: string;
38065
+ /**
38066
+ * Gets or sets the users Email for use in a query search.
38067
+ */
38068
+ email?: string;
38069
+ /**
38070
+ * Gets or sets the team member invite status for use in a query search.
38071
+ */
38072
+ inviteStatus?: InviteStatus;
38073
+ /**
38074
+ * Gets or sets the page number for paged queries.
38075
+ */
38076
+ pageNumber?: number;
38077
+ /**
38078
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
38079
+ */
38080
+ take?: number;
38081
+ /**
38082
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
38083
+ */
38084
+ limitListRequests?: boolean;
38085
+ /**
38086
+ * Gets or sets the Tenant Id.
38087
+ */
38088
+ tenantId?: string;
38089
+ /**
38090
+ * Gets or sets the Modifed By Id.
38091
+ */
38092
+ modifiedById?: string;
38093
+ /**
38094
+ * Gets or sets the Modifed By Ids.
38095
+ */
38096
+ modifiedByIds?: Array<string>;
38097
+ /**
38098
+ * Gets or sets the Date Created greater than equal to.
38099
+ */
38100
+ dateCreatedGte?: string;
38101
+ /**
38102
+ * Gets or sets the Date Created less than equal to.
38103
+ */
38104
+ dateCreatedLte?: string;
38105
+ /**
38106
+ * Gets or sets the queryable only is live status.
38107
+ */
38108
+ isLive?: boolean;
38109
+ /**
38110
+ * Gets or sets the sort order direction.
38111
+ */
38112
+ sortOrderDirection?: SearchSortOrderDirection;
38113
+ }): CancelablePromise<boolean>;
38114
+ /**
38115
+ * Gets a list of resources unpaged and without references.
38116
+ * @returns User Success
38117
+ * @throws ApiError
38118
+ */
38119
+ getListWithoutReferences({ ids, roles, name, nameLike, email, inviteStatus, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38120
+ /**
38121
+ * Gets or sets the queryable user ids.
38122
+ */
38123
+ ids?: Array<string>;
38124
+ /**
38125
+ * Gets or sets the queryable user ids.
38126
+ */
38127
+ roles?: Array<string>;
38128
+ /**
38129
+ * Gets or sets the users Name for use in a query search.
38130
+ */
38131
+ name?: string;
38132
+ /**
38133
+ * Gets or sets the users wildcard Name for use in a query search.
38134
+ */
38135
+ nameLike?: string;
38136
+ /**
38137
+ * Gets or sets the users Email for use in a query search.
38138
+ */
38139
+ email?: string;
38140
+ /**
38141
+ * Gets or sets the team member invite status for use in a query search.
38142
+ */
38143
+ inviteStatus?: InviteStatus;
38144
+ /**
38145
+ * Gets or sets the page number for paged queries.
38146
+ */
38147
+ pageNumber?: number;
38148
+ /**
38149
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
38150
+ */
38151
+ take?: number;
38152
+ /**
38153
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
38154
+ */
38155
+ limitListRequests?: boolean;
38156
+ /**
38157
+ * Gets or sets the Tenant Id.
38158
+ */
38159
+ tenantId?: string;
38160
+ /**
38161
+ * Gets or sets the Modifed By Id.
38162
+ */
38163
+ modifiedById?: string;
38164
+ /**
38165
+ * Gets or sets the Modifed By Ids.
38166
+ */
38167
+ modifiedByIds?: Array<string>;
38168
+ /**
38169
+ * Gets or sets the Date Created greater than equal to.
38170
+ */
38171
+ dateCreatedGte?: string;
38172
+ /**
38173
+ * Gets or sets the Date Created less than equal to.
38174
+ */
38175
+ dateCreatedLte?: string;
38176
+ /**
38177
+ * Gets or sets the queryable only is live status.
38178
+ */
38179
+ isLive?: boolean;
38180
+ /**
38181
+ * Gets or sets the sort order direction.
38182
+ */
38183
+ sortOrderDirection?: SearchSortOrderDirection;
38184
+ }): CancelablePromise<Array<User>>;
38185
+ /**
38186
+ * Gets a list of resources.
38187
+ * @returns User Success
38188
+ * @throws ApiError
38189
+ */
38190
+ getListIdName({ ids, roles, name, nameLike, email, inviteStatus, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38191
+ /**
38192
+ * Gets or sets the queryable user ids.
38193
+ */
38194
+ ids?: Array<string>;
38195
+ /**
38196
+ * Gets or sets the queryable user ids.
38197
+ */
38198
+ roles?: Array<string>;
38199
+ /**
38200
+ * Gets or sets the users Name for use in a query search.
38201
+ */
38202
+ name?: string;
38203
+ /**
38204
+ * Gets or sets the users wildcard Name for use in a query search.
38205
+ */
38206
+ nameLike?: string;
38207
+ /**
38208
+ * Gets or sets the users Email for use in a query search.
38209
+ */
38210
+ email?: string;
38211
+ /**
38212
+ * Gets or sets the team member invite status for use in a query search.
38213
+ */
38214
+ inviteStatus?: InviteStatus;
38215
+ /**
38216
+ * Gets or sets the page number for paged queries.
38217
+ */
38218
+ pageNumber?: number;
38219
+ /**
38220
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
38221
+ */
38222
+ take?: number;
38223
+ /**
38224
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
38225
+ */
38226
+ limitListRequests?: boolean;
38227
+ /**
38228
+ * Gets or sets the Tenant Id.
38229
+ */
38230
+ tenantId?: string;
38231
+ /**
38232
+ * Gets or sets the Modifed By Id.
38233
+ */
38234
+ modifiedById?: string;
38235
+ /**
38236
+ * Gets or sets the Modifed By Ids.
38237
+ */
38238
+ modifiedByIds?: Array<string>;
38239
+ /**
38240
+ * Gets or sets the Date Created greater than equal to.
38241
+ */
38242
+ dateCreatedGte?: string;
38243
+ /**
38244
+ * Gets or sets the Date Created less than equal to.
38245
+ */
38246
+ dateCreatedLte?: string;
38247
+ /**
38248
+ * Gets or sets the queryable only is live status.
38249
+ */
38250
+ isLive?: boolean;
38251
+ /**
38252
+ * Gets or sets the sort order direction.
38253
+ */
38254
+ sortOrderDirection?: SearchSortOrderDirection;
38255
+ }): CancelablePromise<Array<User>>;
38256
+ }
38257
+
38258
+ /**
38259
+ * Represents a relationship between a venue and a user.
38260
+ */
38261
+ type VenueManager = {
38262
+ /**
38263
+ * Gets or sets the entities Id.
38264
+ */
38265
+ id?: string;
38266
+ /**
38267
+ * Gets or sets the tenant Id.
38268
+ */
38269
+ tenantId: string;
38270
+ /**
38271
+ * Gets or sets the created date of this entity.
38272
+ */
38273
+ dateCreated: string;
38274
+ /**
38275
+ * Gets or sets the last modified date of this entity.
38276
+ */
38277
+ dateModified: string;
38278
+ /**
38279
+ * Gets or sets the modified by Id.
38280
+ */
38281
+ modifiedById?: string | null;
38282
+ /**
38283
+ * Gets or sets a value indicating whether the record is live and available for use within the application.
38284
+ */
38285
+ isLive: boolean;
38286
+ /**
38287
+ * Gets or sets the user id.
38288
+ */
38289
+ userId?: string | null;
38290
+ /**
38291
+ * Gets or sets the venue id.
38292
+ */
38293
+ venueId?: string | null;
38294
+ };
38295
+
38296
+ type VenueManagerPage = {
38297
+ pagination: Pagination;
38298
+ readonly items: Array<VenueManager>;
38299
+ };
38300
+
38301
+ /**
38302
+ * Post model for venue manager updates.
38303
+ */
38304
+ type VenueManagerPatch = {
38305
+ /**
38306
+ * Gets or sets the tenant Id.
38307
+ */
38308
+ tenantId: string;
38309
+ /**
38310
+ * Gets or sets the Id.
38311
+ */
38312
+ id: string;
38313
+ /**
38314
+ * Gets or sets the user id.
38315
+ */
38316
+ userId?: string | null;
38317
+ /**
38318
+ * Gets or sets the venue id.
38319
+ */
38320
+ venueId?: string | null;
38321
+ };
38322
+
38323
+ /**
38324
+ * Post model for venue manager inserts.
38325
+ */
38326
+ type VenueManagerPost = {
38327
+ /**
38328
+ * Gets or sets the tenant Id.
38329
+ */
38330
+ tenantId: string;
38331
+ /**
38332
+ * Gets or sets the user id.
38333
+ */
38334
+ userId?: string | null;
38335
+ /**
38336
+ * Gets or sets the venue id.
38337
+ */
38338
+ venueId?: string | null;
38339
+ };
38340
+
38341
+ declare class VenueManagersService {
38342
+ readonly httpRequest: BaseHttpRequest;
38343
+ constructor(httpRequest: BaseHttpRequest);
38344
+ /**
38345
+ * Updates the assigned venues for the user />.
38346
+ * @returns any Success
38347
+ * @throws ApiError
38348
+ */
38349
+ updateUserVenueAssignments({ userId, requestBody, }: {
38350
+ /**
38351
+ * The user Id.
38352
+ */
38353
+ userId: string;
38354
+ /**
38355
+ * The post model.
38356
+ */
38357
+ requestBody?: Array<VenueManagerPost>;
38358
+ }): CancelablePromise<any>;
38359
+ /**
38360
+ * Updates the assigned users for the venue />.
38361
+ * @returns any Success
38362
+ * @throws ApiError
38363
+ */
38364
+ updateVenueUserAssignments({ venueId, requestBody, }: {
38365
+ /**
38366
+ * The venue Id.
38367
+ */
38368
+ venueId: string;
38369
+ /**
38370
+ * The post model.
38371
+ */
38372
+ requestBody?: Array<VenueManagerPost>;
38373
+ }): CancelablePromise<any>;
38374
+ /**
38375
+ * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
38376
+ * @returns VenueManager Success
38377
+ * @throws ApiError
38378
+ */
38379
+ post({ requestBody, }: {
38380
+ /**
38381
+ * The <typeparamref name="TObject" /> model.
38382
+ */
38383
+ requestBody?: VenueManagerPost;
38384
+ }): CancelablePromise<VenueManager>;
38385
+ /**
38386
+ * Patches the resource.
38387
+ * @returns VenueManager Success
38388
+ * @throws ApiError
38389
+ */
38390
+ patch({ requestBody, }: {
38391
+ /**
38392
+ * The <typeparamref name="TObject" /> model.
38393
+ */
38394
+ requestBody?: VenueManagerPatch;
38395
+ }): CancelablePromise<VenueManager>;
38396
+ /**
38397
+ * Inserts a list of resources.
38398
+ * @returns VenueManager Success
38399
+ * @throws ApiError
38400
+ */
38401
+ postList({ requestBody, }: {
38402
+ /**
38403
+ * The list of <typeparamref name="TObject" />.
38404
+ */
38405
+ requestBody?: Array<VenueManagerPost>;
38406
+ }): CancelablePromise<Array<VenueManager>>;
38407
+ /**
38408
+ * Patches the resource.
38409
+ * @returns VenueManager Success
38410
+ * @throws ApiError
38411
+ */
38412
+ patchWithReferences({ requestBody, }: {
38413
+ /**
38414
+ * The <typeparamref name="TObject" /> model.
38415
+ */
38416
+ requestBody?: VenueManagerPatch;
38417
+ }): CancelablePromise<VenueManager>;
38418
+ /**
38419
+ * Deletes the resource.
38420
+ * @returns any Success
38421
+ * @throws ApiError
38422
+ */
38423
+ deleteByObject({ requestBody, }: {
38424
+ /**
38425
+ * The <typeparamref name="TObject" /> model.
38426
+ */
38427
+ requestBody?: VenueManager;
38428
+ }): CancelablePromise<any>;
38429
+ /**
38430
+ * Gets a list of resources.
38431
+ * @returns VenueManagerPage Success
38432
+ * @throws ApiError
38433
+ */
38434
+ getPage({ venueId, venueIds, userId, userIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38435
+ /**
38436
+ * Gets or sets the queryable venue id.
38437
+ */
38438
+ venueId?: string;
38439
+ /**
38440
+ * Gets or sets the queryable venueids.
38441
+ */
38442
+ venueIds?: Array<string>;
38443
+ /**
38444
+ * Gets or sets the queryable user id.
38445
+ */
38446
+ userId?: string;
38447
+ /**
38448
+ * Gets or sets the queryable user ids.
38449
+ */
38450
+ userIds?: Array<string>;
38451
+ /**
38452
+ * Gets or sets the page number for paged queries.
38453
+ */
38454
+ pageNumber?: number;
38455
+ /**
38456
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
38457
+ */
38458
+ take?: number;
38459
+ /**
38460
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
38461
+ */
38462
+ limitListRequests?: boolean;
38463
+ /**
38464
+ * Gets or sets the Tenant Id.
38465
+ */
38466
+ tenantId?: string;
38467
+ /**
38468
+ * Gets or sets the Modifed By Id.
38469
+ */
38470
+ modifiedById?: string;
38471
+ /**
38472
+ * Gets or sets the Modifed By Ids.
38473
+ */
38474
+ modifiedByIds?: Array<string>;
38475
+ /**
38476
+ * Gets or sets the Date Created greater than equal to.
38477
+ */
38478
+ dateCreatedGte?: string;
38479
+ /**
38480
+ * Gets or sets the Date Created less than equal to.
38481
+ */
38482
+ dateCreatedLte?: string;
38483
+ /**
38484
+ * Gets or sets the queryable only is live status.
38485
+ */
38486
+ isLive?: boolean;
38487
+ /**
38488
+ * Gets or sets the sort order direction.
38489
+ */
38490
+ sortOrderDirection?: SearchSortOrderDirection;
38491
+ }): CancelablePromise<VenueManagerPage>;
38070
38492
  /**
38071
38493
  * Deletes the resource.
38072
38494
  * @returns any Success
@@ -38080,7 +38502,7 @@ declare class UsersService {
38080
38502
  }): CancelablePromise<any>;
38081
38503
  /**
38082
38504
  * Gets the resource by its Id.
38083
- * @returns User Success
38505
+ * @returns VenueManager Success
38084
38506
  * @throws ApiError
38085
38507
  */
38086
38508
  getObject({ id, }: {
@@ -38088,7 +38510,7 @@ declare class UsersService {
38088
38510
  * The <typeparamref name="TObject" /> id.
38089
38511
  */
38090
38512
  id: string;
38091
- }): CancelablePromise<User>;
38513
+ }): CancelablePromise<VenueManager>;
38092
38514
  /**
38093
38515
  * Returns a value indicating whether the resource is deletable.
38094
38516
  * @returns boolean Success
@@ -38105,31 +38527,23 @@ declare class UsersService {
38105
38527
  * @returns boolean Success
38106
38528
  * @throws ApiError
38107
38529
  */
38108
- exists({ ids, roles, name, nameLike, email, inviteStatus, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38109
- /**
38110
- * Gets or sets the queryable user ids.
38111
- */
38112
- ids?: Array<string>;
38113
- /**
38114
- * Gets or sets the queryable user ids.
38115
- */
38116
- roles?: Array<string>;
38530
+ exists({ venueId, venueIds, userId, userIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38117
38531
  /**
38118
- * Gets or sets the users Name for use in a query search.
38532
+ * Gets or sets the queryable venue id.
38119
38533
  */
38120
- name?: string;
38534
+ venueId?: string;
38121
38535
  /**
38122
- * Gets or sets the users wildcard Name for use in a query search.
38536
+ * Gets or sets the queryable venueids.
38123
38537
  */
38124
- nameLike?: string;
38538
+ venueIds?: Array<string>;
38125
38539
  /**
38126
- * Gets or sets the users Email for use in a query search.
38540
+ * Gets or sets the queryable user id.
38127
38541
  */
38128
- email?: string;
38542
+ userId?: string;
38129
38543
  /**
38130
- * Gets or sets the team member invite status for use in a query search.
38544
+ * Gets or sets the queryable user ids.
38131
38545
  */
38132
- inviteStatus?: InviteStatus;
38546
+ userIds?: Array<string>;
38133
38547
  /**
38134
38548
  * Gets or sets the page number for paged queries.
38135
38549
  */
@@ -38173,34 +38587,26 @@ declare class UsersService {
38173
38587
  }): CancelablePromise<boolean>;
38174
38588
  /**
38175
38589
  * Gets a list of resources unpaged and without references.
38176
- * @returns User Success
38590
+ * @returns VenueManager Success
38177
38591
  * @throws ApiError
38178
38592
  */
38179
- getListWithoutReferences({ ids, roles, name, nameLike, email, inviteStatus, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38180
- /**
38181
- * Gets or sets the queryable user ids.
38182
- */
38183
- ids?: Array<string>;
38184
- /**
38185
- * Gets or sets the queryable user ids.
38186
- */
38187
- roles?: Array<string>;
38593
+ getListWithoutReferences({ venueId, venueIds, userId, userIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38188
38594
  /**
38189
- * Gets or sets the users Name for use in a query search.
38595
+ * Gets or sets the queryable venue id.
38190
38596
  */
38191
- name?: string;
38597
+ venueId?: string;
38192
38598
  /**
38193
- * Gets or sets the users wildcard Name for use in a query search.
38599
+ * Gets or sets the queryable venueids.
38194
38600
  */
38195
- nameLike?: string;
38601
+ venueIds?: Array<string>;
38196
38602
  /**
38197
- * Gets or sets the users Email for use in a query search.
38603
+ * Gets or sets the queryable user id.
38198
38604
  */
38199
- email?: string;
38605
+ userId?: string;
38200
38606
  /**
38201
- * Gets or sets the team member invite status for use in a query search.
38607
+ * Gets or sets the queryable user ids.
38202
38608
  */
38203
- inviteStatus?: InviteStatus;
38609
+ userIds?: Array<string>;
38204
38610
  /**
38205
38611
  * Gets or sets the page number for paged queries.
38206
38612
  */
@@ -38241,37 +38647,29 @@ declare class UsersService {
38241
38647
  * Gets or sets the sort order direction.
38242
38648
  */
38243
38649
  sortOrderDirection?: SearchSortOrderDirection;
38244
- }): CancelablePromise<Array<User>>;
38650
+ }): CancelablePromise<Array<VenueManager>>;
38245
38651
  /**
38246
38652
  * Gets a list of resources.
38247
- * @returns User Success
38653
+ * @returns VenueManager Success
38248
38654
  * @throws ApiError
38249
38655
  */
38250
- getListIdName({ ids, roles, name, nameLike, email, inviteStatus, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38251
- /**
38252
- * Gets or sets the queryable user ids.
38253
- */
38254
- ids?: Array<string>;
38255
- /**
38256
- * Gets or sets the queryable user ids.
38257
- */
38258
- roles?: Array<string>;
38656
+ getListIdName({ venueId, venueIds, userId, userIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38259
38657
  /**
38260
- * Gets or sets the users Name for use in a query search.
38658
+ * Gets or sets the queryable venue id.
38261
38659
  */
38262
- name?: string;
38660
+ venueId?: string;
38263
38661
  /**
38264
- * Gets or sets the users wildcard Name for use in a query search.
38662
+ * Gets or sets the queryable venueids.
38265
38663
  */
38266
- nameLike?: string;
38664
+ venueIds?: Array<string>;
38267
38665
  /**
38268
- * Gets or sets the users Email for use in a query search.
38666
+ * Gets or sets the queryable user id.
38269
38667
  */
38270
- email?: string;
38668
+ userId?: string;
38271
38669
  /**
38272
- * Gets or sets the team member invite status for use in a query search.
38670
+ * Gets or sets the queryable user ids.
38273
38671
  */
38274
- inviteStatus?: InviteStatus;
38672
+ userIds?: Array<string>;
38275
38673
  /**
38276
38674
  * Gets or sets the page number for paged queries.
38277
38675
  */
@@ -38312,13 +38710,13 @@ declare class UsersService {
38312
38710
  * Gets or sets the sort order direction.
38313
38711
  */
38314
38712
  sortOrderDirection?: SearchSortOrderDirection;
38315
- }): CancelablePromise<Array<User>>;
38713
+ }): CancelablePromise<Array<VenueManager>>;
38316
38714
  }
38317
38715
 
38318
38716
  /**
38319
- * Represents a relationship between a venue and a user.
38717
+ * Represents a venue performance row within the Reach application.
38320
38718
  */
38321
- type VenueManager = {
38719
+ type VenuePerformance = {
38322
38720
  /**
38323
38721
  * Gets or sets the entities Id.
38324
38722
  */
@@ -38344,24 +38742,48 @@ type VenueManager = {
38344
38742
  */
38345
38743
  isLive: boolean;
38346
38744
  /**
38347
- * Gets or sets the user id.
38745
+ * Gets or sets the venue name.
38348
38746
  */
38349
- userId?: string | null;
38747
+ venueName?: string | null;
38350
38748
  /**
38351
- * Gets or sets the venue id.
38749
+ * Gets or sets the capacity.
38352
38750
  */
38353
- venueId?: string | null;
38751
+ totalCapacity?: number;
38752
+ /**
38753
+ * Gets or sets the remaining uses.
38754
+ */
38755
+ usedCapacity?: number;
38756
+ /**
38757
+ * Gets or sets the remaining uses.
38758
+ */
38759
+ unusedCapacity?: number;
38760
+ /**
38761
+ * Gets or sets the utilisation.
38762
+ */
38763
+ utilisation?: number;
38764
+ /**
38765
+ * Gets or sets the total orders.
38766
+ */
38767
+ totalOrders?: number;
38768
+ /**
38769
+ * Gets or sets the total revenue.
38770
+ */
38771
+ totalRevenue?: number;
38772
+ /**
38773
+ * Gets or sets the revenue potential.
38774
+ */
38775
+ revenuePotential?: number;
38354
38776
  };
38355
38777
 
38356
- type VenueManagerPage = {
38778
+ type VenuePerformancePage = {
38357
38779
  pagination: Pagination;
38358
- readonly items: Array<VenueManager>;
38780
+ readonly items: Array<VenuePerformance>;
38359
38781
  };
38360
38782
 
38361
38783
  /**
38362
- * Post model for venue manager updates.
38784
+ * Post model for Venue Performance updates.
38363
38785
  */
38364
- type VenueManagerPatch = {
38786
+ type VenuePerformancePatch = {
38365
38787
  /**
38366
38788
  * Gets or sets the tenant Id.
38367
38789
  */
@@ -38370,111 +38792,147 @@ type VenueManagerPatch = {
38370
38792
  * Gets or sets the Id.
38371
38793
  */
38372
38794
  id: string;
38373
- /**
38374
- * Gets or sets the user id.
38375
- */
38376
- userId?: string | null;
38377
- /**
38378
- * Gets or sets the venue id.
38379
- */
38380
- venueId?: string | null;
38381
38795
  };
38382
38796
 
38383
38797
  /**
38384
- * Post model for venue manager inserts.
38798
+ * Post model for Venue Performance inserts.
38385
38799
  */
38386
- type VenueManagerPost = {
38800
+ type VenuePerformancePost = {
38387
38801
  /**
38388
38802
  * Gets or sets the tenant Id.
38389
38803
  */
38390
38804
  tenantId: string;
38391
- /**
38392
- * Gets or sets the user id.
38393
- */
38394
- userId?: string | null;
38395
- /**
38396
- * Gets or sets the venue id.
38397
- */
38398
- venueId?: string | null;
38399
38805
  };
38400
38806
 
38401
- declare class VenueManagersService {
38807
+ declare class VenuePerformanceService {
38402
38808
  readonly httpRequest: BaseHttpRequest;
38403
38809
  constructor(httpRequest: BaseHttpRequest);
38404
38810
  /**
38405
- * Updates the assigned venues for the user />.
38811
+ * Exports the performance list to a csv format.
38812
+ * Endpoint has AllowAnonymous attr, however the jwt is validated in the method body (in support of authenticated file downloads.
38406
38813
  * @returns any Success
38407
38814
  * @throws ApiError
38408
38815
  */
38409
- updateUserVenueAssignments({ userId, requestBody, }: {
38816
+ exportToCsv({ venueId, userId, programmeId, startDateGte, startDateLte, onlineActivitiesOnly, onlineVenuesOnly, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
38410
38817
  /**
38411
- * The user Id.
38818
+ * Gets or sets the Venue Id.
38412
38819
  */
38413
- userId: string;
38820
+ venueId?: string;
38414
38821
  /**
38415
- * The post model.
38822
+ * Gets or sets the User Id.
38416
38823
  */
38417
- requestBody?: Array<VenueManagerPost>;
38418
- }): CancelablePromise<any>;
38419
- /**
38420
- * Updates the assigned users for the venue />.
38421
- * @returns any Success
38422
- * @throws ApiError
38423
- */
38424
- updateVenueUserAssignments({ venueId, requestBody, }: {
38824
+ userId?: string;
38425
38825
  /**
38426
- * The venue Id.
38826
+ * Gets or sets the Programme Id.
38427
38827
  */
38428
- venueId: string;
38828
+ programmeId?: string;
38429
38829
  /**
38430
- * The post model.
38830
+ * Gets or sets the starting date greater than or equal to.
38431
38831
  */
38432
- requestBody?: Array<VenueManagerPost>;
38832
+ startDateGte?: string;
38833
+ /**
38834
+ * Gets or sets the starting date less than or equal to.
38835
+ */
38836
+ startDateLte?: string;
38837
+ /**
38838
+ * Gets or sets a value indicating whether to include online activities only.
38839
+ */
38840
+ onlineActivitiesOnly?: boolean;
38841
+ /**
38842
+ * Gets or sets a value indicating whether to include online venues only.
38843
+ */
38844
+ onlineVenuesOnly?: boolean;
38845
+ /**
38846
+ * Gets or sets the page number for paged queries.
38847
+ */
38848
+ pageNumber?: number;
38849
+ /**
38850
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
38851
+ */
38852
+ take?: number;
38853
+ /**
38854
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
38855
+ */
38856
+ limitListRequests?: boolean;
38857
+ /**
38858
+ * Gets or sets the Tenant Id.
38859
+ */
38860
+ tenantId?: string;
38861
+ /**
38862
+ * Gets or sets the Modifed By Id.
38863
+ */
38864
+ modifiedById?: string;
38865
+ /**
38866
+ * Gets or sets the Modifed By Ids.
38867
+ */
38868
+ modifiedByIds?: Array<string>;
38869
+ /**
38870
+ * Gets or sets the Date Created greater than equal to.
38871
+ */
38872
+ dateCreatedGte?: string;
38873
+ /**
38874
+ * Gets or sets the Date Created less than equal to.
38875
+ */
38876
+ dateCreatedLte?: string;
38877
+ /**
38878
+ * Gets or sets the queryable only is live status.
38879
+ */
38880
+ isLive?: boolean;
38881
+ /**
38882
+ * Gets or sets the sort order direction.
38883
+ */
38884
+ sortOrderDirection?: SearchSortOrderDirection;
38885
+ formData?: {
38886
+ /**
38887
+ * Gets or sets the auth token.
38888
+ */
38889
+ Token?: string;
38890
+ };
38433
38891
  }): CancelablePromise<any>;
38434
38892
  /**
38435
38893
  * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
38436
- * @returns VenueManager Success
38894
+ * @returns VenuePerformance Success
38437
38895
  * @throws ApiError
38438
38896
  */
38439
38897
  post({ requestBody, }: {
38440
38898
  /**
38441
38899
  * The <typeparamref name="TObject" /> model.
38442
38900
  */
38443
- requestBody?: VenueManagerPost;
38444
- }): CancelablePromise<VenueManager>;
38901
+ requestBody?: VenuePerformancePost;
38902
+ }): CancelablePromise<VenuePerformance>;
38445
38903
  /**
38446
38904
  * Patches the resource.
38447
- * @returns VenueManager Success
38905
+ * @returns VenuePerformance Success
38448
38906
  * @throws ApiError
38449
38907
  */
38450
38908
  patch({ requestBody, }: {
38451
38909
  /**
38452
38910
  * The <typeparamref name="TObject" /> model.
38453
38911
  */
38454
- requestBody?: VenueManagerPatch;
38455
- }): CancelablePromise<VenueManager>;
38912
+ requestBody?: VenuePerformancePatch;
38913
+ }): CancelablePromise<VenuePerformance>;
38456
38914
  /**
38457
38915
  * Inserts a list of resources.
38458
- * @returns VenueManager Success
38916
+ * @returns VenuePerformance Success
38459
38917
  * @throws ApiError
38460
38918
  */
38461
38919
  postList({ requestBody, }: {
38462
38920
  /**
38463
38921
  * The list of <typeparamref name="TObject" />.
38464
38922
  */
38465
- requestBody?: Array<VenueManagerPost>;
38466
- }): CancelablePromise<Array<VenueManager>>;
38923
+ requestBody?: Array<VenuePerformancePost>;
38924
+ }): CancelablePromise<Array<VenuePerformance>>;
38467
38925
  /**
38468
38926
  * Patches the resource.
38469
- * @returns VenueManager Success
38927
+ * @returns VenuePerformance Success
38470
38928
  * @throws ApiError
38471
38929
  */
38472
38930
  patchWithReferences({ requestBody, }: {
38473
38931
  /**
38474
38932
  * The <typeparamref name="TObject" /> model.
38475
38933
  */
38476
- requestBody?: VenueManagerPatch;
38477
- }): CancelablePromise<VenueManager>;
38934
+ requestBody?: VenuePerformancePatch;
38935
+ }): CancelablePromise<VenuePerformance>;
38478
38936
  /**
38479
38937
  * Deletes the resource.
38480
38938
  * @returns any Success
@@ -38484,30 +38942,42 @@ declare class VenueManagersService {
38484
38942
  /**
38485
38943
  * The <typeparamref name="TObject" /> model.
38486
38944
  */
38487
- requestBody?: VenueManager;
38945
+ requestBody?: VenuePerformance;
38488
38946
  }): CancelablePromise<any>;
38489
38947
  /**
38490
38948
  * Gets a list of resources.
38491
- * @returns VenueManagerPage Success
38949
+ * @returns VenuePerformancePage Success
38492
38950
  * @throws ApiError
38493
38951
  */
38494
- getPage({ venueId, venueIds, userId, userIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38952
+ getPage({ venueId, userId, programmeId, startDateGte, startDateLte, onlineActivitiesOnly, onlineVenuesOnly, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38495
38953
  /**
38496
- * Gets or sets the queryable venue id.
38954
+ * Gets or sets the Venue Id.
38497
38955
  */
38498
38956
  venueId?: string;
38499
38957
  /**
38500
- * Gets or sets the queryable venueids.
38958
+ * Gets or sets the User Id.
38501
38959
  */
38502
- venueIds?: Array<string>;
38960
+ userId?: string;
38503
38961
  /**
38504
- * Gets or sets the queryable user id.
38962
+ * Gets or sets the Programme Id.
38505
38963
  */
38506
- userId?: string;
38964
+ programmeId?: string;
38507
38965
  /**
38508
- * Gets or sets the queryable user ids.
38966
+ * Gets or sets the starting date greater than or equal to.
38509
38967
  */
38510
- userIds?: Array<string>;
38968
+ startDateGte?: string;
38969
+ /**
38970
+ * Gets or sets the starting date less than or equal to.
38971
+ */
38972
+ startDateLte?: string;
38973
+ /**
38974
+ * Gets or sets a value indicating whether to include online activities only.
38975
+ */
38976
+ onlineActivitiesOnly?: boolean;
38977
+ /**
38978
+ * Gets or sets a value indicating whether to include online venues only.
38979
+ */
38980
+ onlineVenuesOnly?: boolean;
38511
38981
  /**
38512
38982
  * Gets or sets the page number for paged queries.
38513
38983
  */
@@ -38548,7 +39018,7 @@ declare class VenueManagersService {
38548
39018
  * Gets or sets the sort order direction.
38549
39019
  */
38550
39020
  sortOrderDirection?: SearchSortOrderDirection;
38551
- }): CancelablePromise<VenueManagerPage>;
39021
+ }): CancelablePromise<VenuePerformancePage>;
38552
39022
  /**
38553
39023
  * Deletes the resource.
38554
39024
  * @returns any Success
@@ -38562,7 +39032,7 @@ declare class VenueManagersService {
38562
39032
  }): CancelablePromise<any>;
38563
39033
  /**
38564
39034
  * Gets the resource by its Id.
38565
- * @returns VenueManager Success
39035
+ * @returns VenuePerformance Success
38566
39036
  * @throws ApiError
38567
39037
  */
38568
39038
  getObject({ id, }: {
@@ -38570,7 +39040,7 @@ declare class VenueManagersService {
38570
39040
  * The <typeparamref name="TObject" /> id.
38571
39041
  */
38572
39042
  id: string;
38573
- }): CancelablePromise<VenueManager>;
39043
+ }): CancelablePromise<VenuePerformance>;
38574
39044
  /**
38575
39045
  * Returns a value indicating whether the resource is deletable.
38576
39046
  * @returns boolean Success
@@ -38587,23 +39057,35 @@ declare class VenueManagersService {
38587
39057
  * @returns boolean Success
38588
39058
  * @throws ApiError
38589
39059
  */
38590
- exists({ venueId, venueIds, userId, userIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
39060
+ exists({ venueId, userId, programmeId, startDateGte, startDateLte, onlineActivitiesOnly, onlineVenuesOnly, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38591
39061
  /**
38592
- * Gets or sets the queryable venue id.
39062
+ * Gets or sets the Venue Id.
38593
39063
  */
38594
39064
  venueId?: string;
38595
39065
  /**
38596
- * Gets or sets the queryable venueids.
39066
+ * Gets or sets the User Id.
38597
39067
  */
38598
- venueIds?: Array<string>;
39068
+ userId?: string;
38599
39069
  /**
38600
- * Gets or sets the queryable user id.
39070
+ * Gets or sets the Programme Id.
38601
39071
  */
38602
- userId?: string;
39072
+ programmeId?: string;
38603
39073
  /**
38604
- * Gets or sets the queryable user ids.
39074
+ * Gets or sets the starting date greater than or equal to.
38605
39075
  */
38606
- userIds?: Array<string>;
39076
+ startDateGte?: string;
39077
+ /**
39078
+ * Gets or sets the starting date less than or equal to.
39079
+ */
39080
+ startDateLte?: string;
39081
+ /**
39082
+ * Gets or sets a value indicating whether to include online activities only.
39083
+ */
39084
+ onlineActivitiesOnly?: boolean;
39085
+ /**
39086
+ * Gets or sets a value indicating whether to include online venues only.
39087
+ */
39088
+ onlineVenuesOnly?: boolean;
38607
39089
  /**
38608
39090
  * Gets or sets the page number for paged queries.
38609
39091
  */
@@ -38647,26 +39129,38 @@ declare class VenueManagersService {
38647
39129
  }): CancelablePromise<boolean>;
38648
39130
  /**
38649
39131
  * Gets a list of resources unpaged and without references.
38650
- * @returns VenueManager Success
39132
+ * @returns VenuePerformance Success
38651
39133
  * @throws ApiError
38652
39134
  */
38653
- getListWithoutReferences({ venueId, venueIds, userId, userIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
39135
+ getListWithoutReferences({ venueId, userId, programmeId, startDateGte, startDateLte, onlineActivitiesOnly, onlineVenuesOnly, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38654
39136
  /**
38655
- * Gets or sets the queryable venue id.
39137
+ * Gets or sets the Venue Id.
38656
39138
  */
38657
39139
  venueId?: string;
38658
39140
  /**
38659
- * Gets or sets the queryable venueids.
39141
+ * Gets or sets the User Id.
38660
39142
  */
38661
- venueIds?: Array<string>;
39143
+ userId?: string;
38662
39144
  /**
38663
- * Gets or sets the queryable user id.
39145
+ * Gets or sets the Programme Id.
38664
39146
  */
38665
- userId?: string;
39147
+ programmeId?: string;
38666
39148
  /**
38667
- * Gets or sets the queryable user ids.
39149
+ * Gets or sets the starting date greater than or equal to.
38668
39150
  */
38669
- userIds?: Array<string>;
39151
+ startDateGte?: string;
39152
+ /**
39153
+ * Gets or sets the starting date less than or equal to.
39154
+ */
39155
+ startDateLte?: string;
39156
+ /**
39157
+ * Gets or sets a value indicating whether to include online activities only.
39158
+ */
39159
+ onlineActivitiesOnly?: boolean;
39160
+ /**
39161
+ * Gets or sets a value indicating whether to include online venues only.
39162
+ */
39163
+ onlineVenuesOnly?: boolean;
38670
39164
  /**
38671
39165
  * Gets or sets the page number for paged queries.
38672
39166
  */
@@ -38707,29 +39201,41 @@ declare class VenueManagersService {
38707
39201
  * Gets or sets the sort order direction.
38708
39202
  */
38709
39203
  sortOrderDirection?: SearchSortOrderDirection;
38710
- }): CancelablePromise<Array<VenueManager>>;
39204
+ }): CancelablePromise<Array<VenuePerformance>>;
38711
39205
  /**
38712
39206
  * Gets a list of resources.
38713
- * @returns VenueManager Success
39207
+ * @returns VenuePerformance Success
38714
39208
  * @throws ApiError
38715
39209
  */
38716
- getListIdName({ venueId, venueIds, userId, userIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
39210
+ getListIdName({ venueId, userId, programmeId, startDateGte, startDateLte, onlineActivitiesOnly, onlineVenuesOnly, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
38717
39211
  /**
38718
- * Gets or sets the queryable venue id.
39212
+ * Gets or sets the Venue Id.
38719
39213
  */
38720
39214
  venueId?: string;
38721
39215
  /**
38722
- * Gets or sets the queryable venueids.
39216
+ * Gets or sets the User Id.
38723
39217
  */
38724
- venueIds?: Array<string>;
39218
+ userId?: string;
38725
39219
  /**
38726
- * Gets or sets the queryable user id.
39220
+ * Gets or sets the Programme Id.
38727
39221
  */
38728
- userId?: string;
39222
+ programmeId?: string;
38729
39223
  /**
38730
- * Gets or sets the queryable user ids.
39224
+ * Gets or sets the starting date greater than or equal to.
38731
39225
  */
38732
- userIds?: Array<string>;
39226
+ startDateGte?: string;
39227
+ /**
39228
+ * Gets or sets the starting date less than or equal to.
39229
+ */
39230
+ startDateLte?: string;
39231
+ /**
39232
+ * Gets or sets a value indicating whether to include online activities only.
39233
+ */
39234
+ onlineActivitiesOnly?: boolean;
39235
+ /**
39236
+ * Gets or sets a value indicating whether to include online venues only.
39237
+ */
39238
+ onlineVenuesOnly?: boolean;
38733
39239
  /**
38734
39240
  * Gets or sets the page number for paged queries.
38735
39241
  */
@@ -38770,7 +39276,7 @@ declare class VenueManagersService {
38770
39276
  * Gets or sets the sort order direction.
38771
39277
  */
38772
39278
  sortOrderDirection?: SearchSortOrderDirection;
38773
- }): CancelablePromise<Array<VenueManager>>;
39279
+ }): CancelablePromise<Array<VenuePerformance>>;
38774
39280
  }
38775
39281
 
38776
39282
  /**
@@ -41704,6 +42210,7 @@ declare class WaitlistOpportunityReportService {
41704
42210
  type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
41705
42211
  declare class ApiClient {
41706
42212
  readonly activity: ActivityService;
42213
+ readonly activityPerformance: ActivityPerformanceService;
41707
42214
  readonly amenity: AmenityService;
41708
42215
  readonly attendees: AttendeesService;
41709
42216
  readonly badEnglandReport: BadEnglandReportService;
@@ -41739,7 +42246,6 @@ declare class ApiClient {
41739
42246
  readonly orders: OrdersService;
41740
42247
  readonly orgCourseUtilisation: OrgCourseUtilisationService;
41741
42248
  readonly payments: PaymentsService;
41742
- readonly performance: PerformanceService;
41743
42249
  readonly permissions: PermissionsService;
41744
42250
  readonly places: PlacesService;
41745
42251
  readonly programmes: ProgrammesService;
@@ -41792,6 +42298,7 @@ declare class ApiClient {
41792
42298
  readonly unsplash: UnsplashService;
41793
42299
  readonly users: UsersService;
41794
42300
  readonly venueManagers: VenueManagersService;
42301
+ readonly venuePerformance: VenuePerformanceService;
41795
42302
  readonly venues: VenuesService;
41796
42303
  readonly venuesReport: VenuesReportService;
41797
42304
  readonly waitlistActivity: WaitlistActivityService;
@@ -41928,4 +42435,4 @@ type ValidationResultModel = {
41928
42435
  readonly errors?: Array<ValidationError> | null;
41929
42436
  };
41930
42437
 
41931
- export { Activity, ActivityService, ActivityType, AddressComponent, 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, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EnglandGolfReportService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderEmailCustomerPatch, OrderItem, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPost, PaymentsService, Performance, PerformancePage, PerformancePatch, PerformancePost, PerformanceService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundStatus, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPost, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
42438
+ export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EnglandGolfReportService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderEmailCustomerPatch, OrderItem, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundStatus, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPost, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };