reach-api-sdk 1.0.194 → 1.0.195

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.
Files changed (82) hide show
  1. package/dist/reach-sdk.d.ts +6676 -871
  2. package/dist/reach-sdk.js +4290 -272
  3. package/package.json +1 -1
  4. package/src/definition/swagger.yaml +16349 -4310
  5. package/src/index.ts +1 -0
  6. package/src/models/Tenant.ts +2 -0
  7. package/src/models/TenantStatus.ts +12 -0
  8. package/src/services/ActivityPerformanceService.ts +129 -0
  9. package/src/services/AttendeesService.ts +111 -0
  10. package/src/services/BadEnglandReportService.ts +87 -0
  11. package/src/services/BookingService.ts +201 -0
  12. package/src/services/CancellationPoliciesService.ts +111 -0
  13. package/src/services/CourseSessionSchedulesService.ts +117 -0
  14. package/src/services/CourseSessionsService.ts +213 -0
  15. package/src/services/CoursesService.ts +273 -0
  16. package/src/services/CustomersService.ts +129 -0
  17. package/src/services/DealActivitiesService.ts +123 -0
  18. package/src/services/DealsService.ts +123 -0
  19. package/src/services/DiscountCodeUsesService.ts +105 -0
  20. package/src/services/EmailReminderSchedulesService.ts +117 -0
  21. package/src/services/EmailSettingsService.ts +117 -0
  22. package/src/services/FacilitiesService.ts +135 -0
  23. package/src/services/FacilityIndividualsService.ts +93 -0
  24. package/src/services/GenericActivityService.ts +316 -0
  25. package/src/services/ImageUploadHistoryService.ts +99 -0
  26. package/src/services/ImagesService.ts +147 -0
  27. package/src/services/LeasingService.ts +195 -0
  28. package/src/services/LocationsReportService.ts +105 -0
  29. package/src/services/NotificationQueueService.ts +99 -0
  30. package/src/services/NotificationSettingsService.ts +177 -0
  31. package/src/services/OffersService.ts +165 -0
  32. package/src/services/OpenactiveFeedIntermediateService.ts +93 -0
  33. package/src/services/OpenactiveFeedItemService.ts +99 -0
  34. package/src/services/OpportunityRegisterService.ts +147 -0
  35. package/src/services/OrderItemReportService.ts +123 -0
  36. package/src/services/OrderItemsService.ts +153 -24
  37. package/src/services/OrdersService.ts +195 -0
  38. package/src/services/OrgCourseUtilisationService.ts +147 -0
  39. package/src/services/PaymentPoliciesService.ts +111 -0
  40. package/src/services/PaymentsService.ts +93 -0
  41. package/src/services/PermissionsService.ts +87 -0
  42. package/src/services/PlatformPayoutsService.ts +99 -0
  43. package/src/services/ProgrammesService.ts +117 -0
  44. package/src/services/ProvidersService.ts +189 -0
  45. package/src/services/PublicGenericActivityService.ts +25 -0
  46. package/src/services/PublicOrderItemsService.ts +0 -12
  47. package/src/services/PublicVenuesService.ts +19 -0
  48. package/src/services/RecentOrderActivityReportService.ts +87 -0
  49. package/src/services/RegisterReportService.ts +117 -0
  50. package/src/services/RescheduleLogService.ts +99 -0
  51. package/src/services/ScheduledSessionsSchedulesService.ts +123 -0
  52. package/src/services/ScheduledSessionsService.ts +249 -0
  53. package/src/services/SessionsService.ts +273 -0
  54. package/src/services/SlotOffersService.ts +99 -0
  55. package/src/services/SlotScheduleOffersService.ts +99 -0
  56. package/src/services/SlotSchedulesService.ts +129 -0
  57. package/src/services/SlotsService.ts +207 -0
  58. package/src/services/StripeAccountService.ts +99 -0
  59. package/src/services/SurveyAnswersService.ts +129 -0
  60. package/src/services/SurveyCompletionLogService.ts +123 -0
  61. package/src/services/SurveyQuestionsService.ts +93 -0
  62. package/src/services/SurveyReportExtendedService.ts +105 -0
  63. package/src/services/SurveysService.ts +123 -0
  64. package/src/services/TemplateDetailsService.ts +93 -0
  65. package/src/services/TemplateFieldPermissionsService.ts +93 -0
  66. package/src/services/TemplateOffersService.ts +93 -0
  67. package/src/services/TemplatesService.ts +93 -0
  68. package/src/services/TenantWebsiteSettingsService.ts +87 -0
  69. package/src/services/TenantsService.ts +93 -0
  70. package/src/services/TotalRevenueReportService.ts +111 -0
  71. package/src/services/UserPermissionsService.ts +93 -0
  72. package/src/services/UserProgrammesService.ts +111 -0
  73. package/src/services/UserProvidersService.ts +111 -0
  74. package/src/services/UsersService.ts +123 -0
  75. package/src/services/VenueManagersService.ts +111 -0
  76. package/src/services/VenuePerformanceService.ts +129 -0
  77. package/src/services/VenuesReportService.ts +93 -0
  78. package/src/services/VenuesService.ts +238 -0
  79. package/src/services/WaitlistActivityReportService.ts +123 -0
  80. package/src/services/WaitlistActivityService.ts +123 -0
  81. package/src/services/WaitlistOpportunityReportService.ts +117 -0
  82. package/src/services/WaitlistOpportunityService.ts +117 -0
@@ -685,6 +685,201 @@ export class LeasingService {
685
685
  });
686
686
  }
687
687
 
688
+ /**
689
+ * Returns the number of results in the database given the provided search params.
690
+ * @returns number OK
691
+ * @throws ApiError
692
+ */
693
+ public count({
694
+ wildcard,
695
+ accessCode,
696
+ customerName,
697
+ email,
698
+ providerId,
699
+ venueId,
700
+ programmeId,
701
+ customerId,
702
+ orderIds,
703
+ sessionId,
704
+ facilityId,
705
+ courseId,
706
+ orderStage,
707
+ isBookedOrPendingPayment,
708
+ orderStages,
709
+ orderDateGte,
710
+ orderDateLte,
711
+ endUserIdentityId,
712
+ pageNumber,
713
+ take,
714
+ skip,
715
+ limitListRequests,
716
+ tenantId,
717
+ modifiedById,
718
+ modifiedByIds,
719
+ dateCreatedGte,
720
+ dateCreatedLte,
721
+ isLive,
722
+ sortOrderDirection,
723
+ }: {
724
+ /**
725
+ * Gets or sets the wildcard for use in a query search.
726
+ */
727
+ wildcard?: string;
728
+ /**
729
+ * Gets or sets the access code for use in a query search.
730
+ */
731
+ accessCode?: string;
732
+ /**
733
+ * Gets or sets the customer name for use in a query search.
734
+ */
735
+ customerName?: string;
736
+ /**
737
+ * Gets or sets the email for use in a query search.
738
+ */
739
+ email?: string;
740
+ /**
741
+ * Gets or sets the provider Id for use in a query search.
742
+ */
743
+ providerId?: string;
744
+ /**
745
+ * Gets or sets the venue Id for use in a query search.
746
+ */
747
+ venueId?: string;
748
+ /**
749
+ * Gets or sets the programme Id for use in a query search.
750
+ */
751
+ programmeId?: string;
752
+ /**
753
+ * Gets or sets the customer Id for use in a query search.
754
+ */
755
+ customerId?: string;
756
+ /**
757
+ * Gets or sets the queryable order ids.
758
+ */
759
+ orderIds?: Array<string>;
760
+ /**
761
+ * Gets or sets the session Id for use in a query search.
762
+ */
763
+ sessionId?: string;
764
+ /**
765
+ * Gets or sets the facility Id for use in a query search.
766
+ */
767
+ facilityId?: string;
768
+ /**
769
+ * Gets or sets the course Id for use in a query search.
770
+ */
771
+ courseId?: string;
772
+ /**
773
+ * Gets or sets the queryable order stage. This cannot be used in conjunction with IsBookedOrPendingPayment.
774
+ */
775
+ orderStage?: OrderStage;
776
+ /**
777
+ * 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.
778
+ */
779
+ isBookedOrPendingPayment?: boolean;
780
+ /**
781
+ * Gets or sets the queryable order stages.
782
+ */
783
+ orderStages?: Array<OrderStage>;
784
+ /**
785
+ * Gets or sets the queryable order date creted is greater than or equal to.
786
+ */
787
+ orderDateGte?: string;
788
+ /**
789
+ * Gets or sets the queryable order date created is less than or equal to.
790
+ */
791
+ orderDateLte?: string;
792
+ /**
793
+ * Gets or sets the end user identity Id for use in a query search.
794
+ */
795
+ endUserIdentityId?: string;
796
+ /**
797
+ * Gets or sets the page number for paged queries.
798
+ */
799
+ pageNumber?: number;
800
+ /**
801
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
802
+ */
803
+ take?: number;
804
+ /**
805
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
806
+ */
807
+ skip?: number;
808
+ /**
809
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
810
+ */
811
+ limitListRequests?: boolean;
812
+ /**
813
+ * Gets or sets the Tenant Id.
814
+ */
815
+ tenantId?: string;
816
+ /**
817
+ * Gets or sets the Modifed By Id.
818
+ */
819
+ modifiedById?: string;
820
+ /**
821
+ * Gets or sets the Modifed By Ids.
822
+ */
823
+ modifiedByIds?: Array<string>;
824
+ /**
825
+ * Gets or sets the Date Created greater than equal to.
826
+ */
827
+ dateCreatedGte?: string;
828
+ /**
829
+ * Gets or sets the Date Created less than equal to.
830
+ */
831
+ dateCreatedLte?: string;
832
+ /**
833
+ * Gets or sets the queryable only is live status.
834
+ */
835
+ isLive?: boolean;
836
+ /**
837
+ * Gets or sets the sort order direction.
838
+ */
839
+ sortOrderDirection?: SearchSortOrderDirection;
840
+ }): CancelablePromise<number> {
841
+ return this.httpRequest.request({
842
+ method: 'GET',
843
+ url: '/api/leases/count',
844
+ query: {
845
+ Wildcard: wildcard,
846
+ AccessCode: accessCode,
847
+ CustomerName: customerName,
848
+ Email: email,
849
+ ProviderId: providerId,
850
+ VenueId: venueId,
851
+ ProgrammeId: programmeId,
852
+ CustomerId: customerId,
853
+ OrderIds: orderIds,
854
+ SessionId: sessionId,
855
+ FacilityId: facilityId,
856
+ CourseId: courseId,
857
+ OrderStage: orderStage,
858
+ IsBookedOrPendingPayment: isBookedOrPendingPayment,
859
+ OrderStages: orderStages,
860
+ OrderDateGTE: orderDateGte,
861
+ OrderDateLTE: orderDateLte,
862
+ EndUserIdentityId: endUserIdentityId,
863
+ PageNumber: pageNumber,
864
+ Take: take,
865
+ Skip: skip,
866
+ LimitListRequests: limitListRequests,
867
+ TenantId: tenantId,
868
+ ModifiedById: modifiedById,
869
+ ModifiedByIds: modifiedByIds,
870
+ DateCreatedGTE: dateCreatedGte,
871
+ DateCreatedLTE: dateCreatedLte,
872
+ IsLive: isLive,
873
+ SortOrderDirection: sortOrderDirection,
874
+ },
875
+ errors: {
876
+ 400: `Bad Request`,
877
+ 422: `Unprocessable Content`,
878
+ 500: `Internal Server Error`,
879
+ },
880
+ });
881
+ }
882
+
688
883
  /**
689
884
  * Gets a list of resources unpaged and without references.
690
885
  * @returns Order OK
@@ -656,6 +656,111 @@ export class LocationsReportService {
656
656
  });
657
657
  }
658
658
 
659
+ /**
660
+ * Returns the number of results in the database given the provided search params.
661
+ * @returns number OK
662
+ * @throws ApiError
663
+ */
664
+ public count({
665
+ userId,
666
+ archived,
667
+ programmeId,
668
+ pageNumber,
669
+ take,
670
+ skip,
671
+ limitListRequests,
672
+ tenantId,
673
+ modifiedById,
674
+ modifiedByIds,
675
+ dateCreatedGte,
676
+ dateCreatedLte,
677
+ isLive,
678
+ sortOrderDirection,
679
+ }: {
680
+ /**
681
+ * Gets or sets the queryable User Id.
682
+ */
683
+ userId?: string;
684
+ /**
685
+ * Gets or sets a value indicating whether to include archived venues.
686
+ */
687
+ archived?: boolean;
688
+ /**
689
+ * Gets or sets the queryable programme Id.
690
+ */
691
+ programmeId?: string;
692
+ /**
693
+ * Gets or sets the page number for paged queries.
694
+ */
695
+ pageNumber?: number;
696
+ /**
697
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
698
+ */
699
+ take?: number;
700
+ /**
701
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
702
+ */
703
+ skip?: number;
704
+ /**
705
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
706
+ */
707
+ limitListRequests?: boolean;
708
+ /**
709
+ * Gets or sets the Tenant Id.
710
+ */
711
+ tenantId?: string;
712
+ /**
713
+ * Gets or sets the Modifed By Id.
714
+ */
715
+ modifiedById?: string;
716
+ /**
717
+ * Gets or sets the Modifed By Ids.
718
+ */
719
+ modifiedByIds?: Array<string>;
720
+ /**
721
+ * Gets or sets the Date Created greater than equal to.
722
+ */
723
+ dateCreatedGte?: string;
724
+ /**
725
+ * Gets or sets the Date Created less than equal to.
726
+ */
727
+ dateCreatedLte?: string;
728
+ /**
729
+ * Gets or sets the queryable only is live status.
730
+ */
731
+ isLive?: boolean;
732
+ /**
733
+ * Gets or sets the sort order direction.
734
+ */
735
+ sortOrderDirection?: SearchSortOrderDirection;
736
+ }): CancelablePromise<number> {
737
+ return this.httpRequest.request({
738
+ method: 'GET',
739
+ url: '/api/locations-report/count',
740
+ query: {
741
+ UserId: userId,
742
+ Archived: archived,
743
+ ProgrammeId: programmeId,
744
+ PageNumber: pageNumber,
745
+ Take: take,
746
+ Skip: skip,
747
+ LimitListRequests: limitListRequests,
748
+ TenantId: tenantId,
749
+ ModifiedById: modifiedById,
750
+ ModifiedByIds: modifiedByIds,
751
+ DateCreatedGTE: dateCreatedGte,
752
+ DateCreatedLTE: dateCreatedLte,
753
+ IsLive: isLive,
754
+ SortOrderDirection: sortOrderDirection,
755
+ },
756
+ errors: {
757
+ 400: `Bad Request`,
758
+ 422: `Unprocessable Content`,
759
+ 500: `Internal Server Error`,
760
+ },
761
+ });
762
+ }
763
+
659
764
  /**
660
765
  * Gets a list of resources unpaged and without references.
661
766
  * @returns LocationReport OK
@@ -440,6 +440,105 @@ export class NotificationQueueService {
440
440
  });
441
441
  }
442
442
 
443
+ /**
444
+ * Returns the number of results in the database given the provided search params.
445
+ * @returns number OK
446
+ * @throws ApiError
447
+ */
448
+ public count({
449
+ processed,
450
+ errored,
451
+ pageNumber,
452
+ take,
453
+ skip,
454
+ limitListRequests,
455
+ tenantId,
456
+ modifiedById,
457
+ modifiedByIds,
458
+ dateCreatedGte,
459
+ dateCreatedLte,
460
+ isLive,
461
+ sortOrderDirection,
462
+ }: {
463
+ /**
464
+ * Gets or sets the queryable processed status.
465
+ */
466
+ processed?: boolean;
467
+ /**
468
+ * Gets or sets the queryable errored status.
469
+ */
470
+ errored?: boolean;
471
+ /**
472
+ * Gets or sets the page number for paged queries.
473
+ */
474
+ pageNumber?: number;
475
+ /**
476
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
477
+ */
478
+ take?: number;
479
+ /**
480
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
481
+ */
482
+ skip?: number;
483
+ /**
484
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
485
+ */
486
+ limitListRequests?: boolean;
487
+ /**
488
+ * Gets or sets the Tenant Id.
489
+ */
490
+ tenantId?: string;
491
+ /**
492
+ * Gets or sets the Modifed By Id.
493
+ */
494
+ modifiedById?: string;
495
+ /**
496
+ * Gets or sets the Modifed By Ids.
497
+ */
498
+ modifiedByIds?: Array<string>;
499
+ /**
500
+ * Gets or sets the Date Created greater than equal to.
501
+ */
502
+ dateCreatedGte?: string;
503
+ /**
504
+ * Gets or sets the Date Created less than equal to.
505
+ */
506
+ dateCreatedLte?: string;
507
+ /**
508
+ * Gets or sets the queryable only is live status.
509
+ */
510
+ isLive?: boolean;
511
+ /**
512
+ * Gets or sets the sort order direction.
513
+ */
514
+ sortOrderDirection?: SearchSortOrderDirection;
515
+ }): CancelablePromise<number> {
516
+ return this.httpRequest.request({
517
+ method: 'GET',
518
+ url: '/api/notification-queue/count',
519
+ query: {
520
+ Processed: processed,
521
+ Errored: errored,
522
+ PageNumber: pageNumber,
523
+ Take: take,
524
+ Skip: skip,
525
+ LimitListRequests: limitListRequests,
526
+ TenantId: tenantId,
527
+ ModifiedById: modifiedById,
528
+ ModifiedByIds: modifiedByIds,
529
+ DateCreatedGTE: dateCreatedGte,
530
+ DateCreatedLTE: dateCreatedLte,
531
+ IsLive: isLive,
532
+ SortOrderDirection: sortOrderDirection,
533
+ },
534
+ errors: {
535
+ 400: `Bad Request`,
536
+ 422: `Unprocessable Content`,
537
+ 500: `Internal Server Error`,
538
+ },
539
+ });
540
+ }
541
+
443
542
  /**
444
543
  * Gets a list of resources unpaged and without references.
445
544
  * @returns NotificationQueue OK
@@ -579,6 +579,183 @@ export class NotificationSettingsService {
579
579
  });
580
580
  }
581
581
 
582
+ /**
583
+ * Returns the number of results in the database given the provided search params.
584
+ * @returns number OK
585
+ * @throws ApiError
586
+ */
587
+ public count({
588
+ userId,
589
+ newBooking,
590
+ cancellation,
591
+ reschedule,
592
+ waitlistActivity,
593
+ waitlistOpportunity,
594
+ capacityReached,
595
+ capacity75Percent,
596
+ stripeConnected,
597
+ stripeDisconnected,
598
+ activityScheduleUpdated,
599
+ activityPriceUpdated,
600
+ newActivity,
601
+ paymentReceived,
602
+ postCompletionSurveyCompleted,
603
+ pageNumber,
604
+ take,
605
+ skip,
606
+ limitListRequests,
607
+ tenantId,
608
+ modifiedById,
609
+ modifiedByIds,
610
+ dateCreatedGte,
611
+ dateCreatedLte,
612
+ isLive,
613
+ sortOrderDirection,
614
+ }: {
615
+ /**
616
+ * Gets or sets the queryable user id.
617
+ */
618
+ userId?: string;
619
+ /**
620
+ * Gets or sets the queryable new booking flag.
621
+ */
622
+ newBooking?: boolean;
623
+ /**
624
+ * Gets or sets the queryable cancellation flag.
625
+ */
626
+ cancellation?: boolean;
627
+ /**
628
+ * Gets or sets the queryable reschedule flag.
629
+ */
630
+ reschedule?: boolean;
631
+ /**
632
+ * Gets or sets the queryable waitlist activity flag.
633
+ */
634
+ waitlistActivity?: boolean;
635
+ /**
636
+ * Gets or sets the queryable waitlist opportunity flag.
637
+ */
638
+ waitlistOpportunity?: boolean;
639
+ /**
640
+ * Gets or sets the queryable capacity reached flag.
641
+ */
642
+ capacityReached?: boolean;
643
+ /**
644
+ * Gets or sets the queryable capacity reached flag.
645
+ */
646
+ capacity75Percent?: boolean;
647
+ /**
648
+ * Gets or sets the queryable stripe connected flag.
649
+ */
650
+ stripeConnected?: boolean;
651
+ /**
652
+ * Gets or sets the queryable stripe disconnected flag.
653
+ */
654
+ stripeDisconnected?: boolean;
655
+ /**
656
+ * Gets or sets the queryable activity schedule updated flag.
657
+ */
658
+ activityScheduleUpdated?: boolean;
659
+ /**
660
+ * Gets or sets the queryable activity price updated flag.
661
+ */
662
+ activityPriceUpdated?: boolean;
663
+ /**
664
+ * Gets or sets the queryable new activity flag.
665
+ */
666
+ newActivity?: boolean;
667
+ /**
668
+ * Gets or sets the queryable payment received flag.
669
+ */
670
+ paymentReceived?: boolean;
671
+ /**
672
+ * Gets or sets the queryable post completion survey completed flag.
673
+ */
674
+ postCompletionSurveyCompleted?: boolean;
675
+ /**
676
+ * Gets or sets the page number for paged queries.
677
+ */
678
+ pageNumber?: number;
679
+ /**
680
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
681
+ */
682
+ take?: number;
683
+ /**
684
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
685
+ */
686
+ skip?: number;
687
+ /**
688
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
689
+ */
690
+ limitListRequests?: boolean;
691
+ /**
692
+ * Gets or sets the Tenant Id.
693
+ */
694
+ tenantId?: string;
695
+ /**
696
+ * Gets or sets the Modifed By Id.
697
+ */
698
+ modifiedById?: string;
699
+ /**
700
+ * Gets or sets the Modifed By Ids.
701
+ */
702
+ modifiedByIds?: Array<string>;
703
+ /**
704
+ * Gets or sets the Date Created greater than equal to.
705
+ */
706
+ dateCreatedGte?: string;
707
+ /**
708
+ * Gets or sets the Date Created less than equal to.
709
+ */
710
+ dateCreatedLte?: string;
711
+ /**
712
+ * Gets or sets the queryable only is live status.
713
+ */
714
+ isLive?: boolean;
715
+ /**
716
+ * Gets or sets the sort order direction.
717
+ */
718
+ sortOrderDirection?: SearchSortOrderDirection;
719
+ }): CancelablePromise<number> {
720
+ return this.httpRequest.request({
721
+ method: 'GET',
722
+ url: '/api/notification-settings/count',
723
+ query: {
724
+ UserId: userId,
725
+ NewBooking: newBooking,
726
+ Cancellation: cancellation,
727
+ Reschedule: reschedule,
728
+ WaitlistActivity: waitlistActivity,
729
+ WaitlistOpportunity: waitlistOpportunity,
730
+ CapacityReached: capacityReached,
731
+ Capacity75Percent: capacity75Percent,
732
+ StripeConnected: stripeConnected,
733
+ StripeDisconnected: stripeDisconnected,
734
+ ActivityScheduleUpdated: activityScheduleUpdated,
735
+ ActivityPriceUpdated: activityPriceUpdated,
736
+ NewActivity: newActivity,
737
+ PaymentReceived: paymentReceived,
738
+ PostCompletionSurveyCompleted: postCompletionSurveyCompleted,
739
+ PageNumber: pageNumber,
740
+ Take: take,
741
+ Skip: skip,
742
+ LimitListRequests: limitListRequests,
743
+ TenantId: tenantId,
744
+ ModifiedById: modifiedById,
745
+ ModifiedByIds: modifiedByIds,
746
+ DateCreatedGTE: dateCreatedGte,
747
+ DateCreatedLTE: dateCreatedLte,
748
+ IsLive: isLive,
749
+ SortOrderDirection: sortOrderDirection,
750
+ },
751
+ errors: {
752
+ 400: `Bad Request`,
753
+ 422: `Unprocessable Content`,
754
+ 500: `Internal Server Error`,
755
+ },
756
+ });
757
+ }
758
+
582
759
  /**
583
760
  * Gets a list of resources unpaged and without references.
584
761
  * @returns NotificationSetting OK