@saritasa/renewaire-frontend-sdk 0.76.0 → 0.77.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts
CHANGED
|
@@ -290,6 +290,7 @@ declare enum AddressCountry {
|
|
|
290
290
|
* https://openapi-generator.tech
|
|
291
291
|
* Do not edit the class manually.
|
|
292
292
|
*/
|
|
293
|
+
|
|
293
294
|
/**
|
|
294
295
|
* DTO for RenewAire.Cores.Domain.Address.
|
|
295
296
|
*/
|
|
@@ -297,7 +298,7 @@ interface AddressDto {
|
|
|
297
298
|
/**
|
|
298
299
|
* AddressCountry<br />0 = Unknown<br />1 = UnitedStates<br />2 = Canada<br />3 = Mexico
|
|
299
300
|
*/
|
|
300
|
-
country:
|
|
301
|
+
country: AddressCountry;
|
|
301
302
|
address1: string;
|
|
302
303
|
state: string;
|
|
303
304
|
postalCode: string;
|
|
@@ -306,12 +307,6 @@ interface AddressDto {
|
|
|
306
307
|
county?: string | null;
|
|
307
308
|
apartmentNumber?: string | null;
|
|
308
309
|
}
|
|
309
|
-
declare enum AddressDtoCountryEnum {
|
|
310
|
-
Unknown = "Unknown",
|
|
311
|
-
UnitedStates = "UnitedStates",
|
|
312
|
-
Canada = "Canada",
|
|
313
|
-
Mexico = "Mexico"
|
|
314
|
-
}
|
|
315
310
|
|
|
316
311
|
/**
|
|
317
312
|
* RenewAire CORES API
|
|
@@ -527,6 +522,42 @@ interface FileDto {
|
|
|
527
522
|
preSignedUrlEndpoint?: string | null;
|
|
528
523
|
}
|
|
529
524
|
|
|
525
|
+
/**
|
|
526
|
+
* RenewAire CORES API
|
|
527
|
+
*
|
|
528
|
+
* Contact: renewaire@saritasa.com
|
|
529
|
+
*
|
|
530
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
531
|
+
* https://openapi-generator.tech
|
|
532
|
+
* Do not edit the class manually.
|
|
533
|
+
*/
|
|
534
|
+
/**
|
|
535
|
+
* ControllerProgramReleaseType<br />0 = Custom<br />1 = Factory
|
|
536
|
+
*/
|
|
537
|
+
declare enum ControllerProgramReleaseType {
|
|
538
|
+
Custom = "Custom",
|
|
539
|
+
Factory = "Factory"
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
/**
|
|
543
|
+
* RenewAire CORES API
|
|
544
|
+
*
|
|
545
|
+
* Contact: renewaire@saritasa.com
|
|
546
|
+
*
|
|
547
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
548
|
+
* https://openapi-generator.tech
|
|
549
|
+
* Do not edit the class manually.
|
|
550
|
+
*/
|
|
551
|
+
/**
|
|
552
|
+
* ControllerProgramType<br />0 = ERV<br />1 = DN<br />2 = Refrigeration<br />3 = Misc
|
|
553
|
+
*/
|
|
554
|
+
declare enum ControllerProgramType {
|
|
555
|
+
Erv = "ERV",
|
|
556
|
+
Dn = "DN",
|
|
557
|
+
Refrigeration = "Refrigeration",
|
|
558
|
+
Misc = "Misc"
|
|
559
|
+
}
|
|
560
|
+
|
|
530
561
|
/**
|
|
531
562
|
* RenewAire CORES API
|
|
532
563
|
*
|
|
@@ -545,12 +576,12 @@ interface ControllerProgramDto {
|
|
|
545
576
|
/**
|
|
546
577
|
* ControllerProgramType<br />0 = ERV<br />1 = DN<br />2 = Refrigeration<br />3 = Misc
|
|
547
578
|
*/
|
|
548
|
-
programType:
|
|
579
|
+
programType: ControllerProgramType;
|
|
549
580
|
versionNumber: string;
|
|
550
581
|
/**
|
|
551
582
|
* ControllerProgramReleaseType<br />0 = Custom<br />1 = Factory
|
|
552
583
|
*/
|
|
553
|
-
releaseType:
|
|
584
|
+
releaseType: ControllerProgramReleaseType;
|
|
554
585
|
createdAt: string;
|
|
555
586
|
/**
|
|
556
587
|
* Represents a data transfer object containing an identifier and a name. It is intended to be used in simple dropdown lists or in table views where we need to display a link to the object.
|
|
@@ -563,16 +594,6 @@ interface ControllerProgramDto {
|
|
|
563
594
|
file: FileDto;
|
|
564
595
|
isActive: boolean;
|
|
565
596
|
}
|
|
566
|
-
declare enum ControllerProgramDtoProgramTypeEnum {
|
|
567
|
-
Erv = "ERV",
|
|
568
|
-
Dn = "DN",
|
|
569
|
-
Refrigeration = "Refrigeration",
|
|
570
|
-
Misc = "Misc"
|
|
571
|
-
}
|
|
572
|
-
declare enum ControllerProgramDtoReleaseTypeEnum {
|
|
573
|
-
Custom = "Custom",
|
|
574
|
-
Factory = "Factory"
|
|
575
|
-
}
|
|
576
597
|
|
|
577
598
|
/**
|
|
578
599
|
* RenewAire CORES API
|
|
@@ -599,30 +620,11 @@ interface ControllerProgramDtoPagedListMetadataDto {
|
|
|
599
620
|
* Do not edit the class manually.
|
|
600
621
|
*/
|
|
601
622
|
/**
|
|
602
|
-
*
|
|
603
|
-
*/
|
|
604
|
-
declare enum ControllerProgramReleaseType {
|
|
605
|
-
Custom = "Custom",
|
|
606
|
-
Factory = "Factory"
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
/**
|
|
610
|
-
* RenewAire CORES API
|
|
611
|
-
*
|
|
612
|
-
* Contact: renewaire@saritasa.com
|
|
613
|
-
*
|
|
614
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
615
|
-
* https://openapi-generator.tech
|
|
616
|
-
* Do not edit the class manually.
|
|
617
|
-
*/
|
|
618
|
-
/**
|
|
619
|
-
* ControllerProgramType<br />0 = ERV<br />1 = DN<br />2 = Refrigeration<br />3 = Misc
|
|
623
|
+
* CoolingDesignBasis<br />0 = Cooling<br />1 = Dehumidification
|
|
620
624
|
*/
|
|
621
|
-
declare enum
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
Refrigeration = "Refrigeration",
|
|
625
|
-
Misc = "Misc"
|
|
625
|
+
declare enum CoolingDesignBasis {
|
|
626
|
+
Cooling = "Cooling",
|
|
627
|
+
Dehumidification = "Dehumidification"
|
|
626
628
|
}
|
|
627
629
|
|
|
628
630
|
/**
|
|
@@ -635,11 +637,14 @@ declare enum ControllerProgramType {
|
|
|
635
637
|
* Do not edit the class manually.
|
|
636
638
|
*/
|
|
637
639
|
/**
|
|
638
|
-
*
|
|
640
|
+
* DTO to save RenewAire.Cores.Domain.ReferenceInfo.LeadTime.
|
|
639
641
|
*/
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
642
|
+
interface SaveLeadTimeDto {
|
|
643
|
+
size: string;
|
|
644
|
+
weeks: string;
|
|
645
|
+
order: number;
|
|
646
|
+
id?: number | null;
|
|
647
|
+
wControls?: string | null;
|
|
643
648
|
}
|
|
644
649
|
|
|
645
650
|
/**
|
|
@@ -652,14 +657,11 @@ declare enum CoolingDesignBasis {
|
|
|
652
657
|
* Do not edit the class manually.
|
|
653
658
|
*/
|
|
654
659
|
/**
|
|
655
|
-
*
|
|
660
|
+
* LeadTimeType<br />0 = RenewAire<br />1 = SPUnits
|
|
656
661
|
*/
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
order: number;
|
|
661
|
-
id?: number | null;
|
|
662
|
-
wControls?: string | null;
|
|
662
|
+
declare enum LeadTimeType {
|
|
663
|
+
RenewAire = "RenewAire",
|
|
664
|
+
SpUnits = "SPUnits"
|
|
663
665
|
}
|
|
664
666
|
|
|
665
667
|
/**
|
|
@@ -679,7 +681,7 @@ interface CreateLeadTimeGroupDto {
|
|
|
679
681
|
/**
|
|
680
682
|
* LeadTimeType<br />0 = RenewAire<br />1 = SPUnits
|
|
681
683
|
*/
|
|
682
|
-
type:
|
|
684
|
+
type: LeadTimeType;
|
|
683
685
|
date: string;
|
|
684
686
|
tableDisclaimer: string;
|
|
685
687
|
isTopGroup: boolean;
|
|
@@ -688,10 +690,6 @@ interface CreateLeadTimeGroupDto {
|
|
|
688
690
|
*/
|
|
689
691
|
leadTimes: Array<SaveLeadTimeDto>;
|
|
690
692
|
}
|
|
691
|
-
declare enum CreateLeadTimeGroupDtoTypeEnum {
|
|
692
|
-
RenewAire = "RenewAire",
|
|
693
|
-
SpUnits = "SPUnits"
|
|
694
|
-
}
|
|
695
693
|
|
|
696
694
|
/**
|
|
697
695
|
* RenewAire CORES API
|
|
@@ -745,6 +743,25 @@ interface CreateRepSalesReportCommand {
|
|
|
745
743
|
* https://openapi-generator.tech
|
|
746
744
|
* Do not edit the class manually.
|
|
747
745
|
*/
|
|
746
|
+
/**
|
|
747
|
+
* FileType<br />0 = RsdRegionDocument<br />1 = ControllerProgram<br />2 = RepSalesReport
|
|
748
|
+
*/
|
|
749
|
+
declare enum FileType {
|
|
750
|
+
RsdRegionDocument = "RsdRegionDocument",
|
|
751
|
+
ControllerProgram = "ControllerProgram",
|
|
752
|
+
RepSalesReport = "RepSalesReport"
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
/**
|
|
756
|
+
* RenewAire CORES API
|
|
757
|
+
*
|
|
758
|
+
* Contact: renewaire@saritasa.com
|
|
759
|
+
*
|
|
760
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
761
|
+
* https://openapi-generator.tech
|
|
762
|
+
* Do not edit the class manually.
|
|
763
|
+
*/
|
|
764
|
+
|
|
748
765
|
/**
|
|
749
766
|
* Command to generate URL to upload RenewAire.Cores.Domain.Users.RsdRegionDocument.
|
|
750
767
|
*/
|
|
@@ -753,12 +770,28 @@ interface CreateUploadUrlCommand {
|
|
|
753
770
|
/**
|
|
754
771
|
* FileType<br />0 = RsdRegionDocument<br />1 = ControllerProgram<br />2 = RepSalesReport
|
|
755
772
|
*/
|
|
756
|
-
fileType:
|
|
773
|
+
fileType: FileType;
|
|
757
774
|
}
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
775
|
+
|
|
776
|
+
/**
|
|
777
|
+
* RenewAire CORES API
|
|
778
|
+
*
|
|
779
|
+
* Contact: renewaire@saritasa.com
|
|
780
|
+
*
|
|
781
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
782
|
+
* https://openapi-generator.tech
|
|
783
|
+
* Do not edit the class manually.
|
|
784
|
+
*/
|
|
785
|
+
/**
|
|
786
|
+
* RegistrationStatus<br />0 = EmailVerification<br />1 = SetPassword<br />2 = SetProfile<br />3 = SetAddress<br />4 = SetOccupation<br />5 = Completed
|
|
787
|
+
*/
|
|
788
|
+
declare enum RegistrationStatus {
|
|
789
|
+
EmailVerification = "EmailVerification",
|
|
790
|
+
SetPassword = "SetPassword",
|
|
791
|
+
SetProfile = "SetProfile",
|
|
792
|
+
SetAddress = "SetAddress",
|
|
793
|
+
SetOccupation = "SetOccupation",
|
|
794
|
+
Completed = "Completed"
|
|
762
795
|
}
|
|
763
796
|
|
|
764
797
|
/**
|
|
@@ -770,6 +803,24 @@ declare enum CreateUploadUrlCommandFileTypeEnum {
|
|
|
770
803
|
* https://openapi-generator.tech
|
|
771
804
|
* Do not edit the class manually.
|
|
772
805
|
*/
|
|
806
|
+
/**
|
|
807
|
+
* UnitSystem<br />0 = Imperial<br />1 = Metric
|
|
808
|
+
*/
|
|
809
|
+
declare enum UnitSystem {
|
|
810
|
+
Imperial = "Imperial",
|
|
811
|
+
Metric = "Metric"
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
/**
|
|
815
|
+
* RenewAire CORES API
|
|
816
|
+
*
|
|
817
|
+
* Contact: renewaire@saritasa.com
|
|
818
|
+
*
|
|
819
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
820
|
+
* https://openapi-generator.tech
|
|
821
|
+
* Do not edit the class manually.
|
|
822
|
+
*/
|
|
823
|
+
|
|
773
824
|
/**
|
|
774
825
|
* DTO for RenewAire.Cores.Domain.Users.User.
|
|
775
826
|
*/
|
|
@@ -778,31 +829,19 @@ interface CurrentUserDto {
|
|
|
778
829
|
/**
|
|
779
830
|
* RegistrationStatus<br />0 = EmailVerification<br />1 = SetPassword<br />2 = SetProfile<br />3 = SetAddress<br />4 = SetOccupation<br />5 = Completed
|
|
780
831
|
*/
|
|
781
|
-
registrationStatus:
|
|
832
|
+
registrationStatus: RegistrationStatus;
|
|
782
833
|
firstName: string;
|
|
783
834
|
lastName: string;
|
|
784
835
|
email: string;
|
|
785
836
|
/**
|
|
786
837
|
* UnitSystem<br />0 = Imperial<br />1 = Metric
|
|
787
838
|
*/
|
|
788
|
-
preferredUnit:
|
|
839
|
+
preferredUnit: UnitSystem;
|
|
789
840
|
/**
|
|
790
841
|
* Avatar URL.
|
|
791
842
|
*/
|
|
792
843
|
avatarUrl?: string | null;
|
|
793
844
|
}
|
|
794
|
-
declare enum CurrentUserDtoRegistrationStatusEnum {
|
|
795
|
-
EmailVerification = "EmailVerification",
|
|
796
|
-
SetPassword = "SetPassword",
|
|
797
|
-
SetProfile = "SetProfile",
|
|
798
|
-
SetAddress = "SetAddress",
|
|
799
|
-
SetOccupation = "SetOccupation",
|
|
800
|
-
Completed = "Completed"
|
|
801
|
-
}
|
|
802
|
-
declare enum CurrentUserDtoPreferredUnitEnum {
|
|
803
|
-
Imperial = "Imperial",
|
|
804
|
-
Metric = "Metric"
|
|
805
|
-
}
|
|
806
845
|
|
|
807
846
|
/**
|
|
808
847
|
* RenewAire CORES API
|
|
@@ -893,12 +932,13 @@ declare enum FeedbackType {
|
|
|
893
932
|
* Do not edit the class manually.
|
|
894
933
|
*/
|
|
895
934
|
/**
|
|
896
|
-
*
|
|
935
|
+
* Command for forgot password processing.
|
|
897
936
|
*/
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
937
|
+
interface ForgotPasswordCommand {
|
|
938
|
+
/**
|
|
939
|
+
* Email.
|
|
940
|
+
*/
|
|
941
|
+
email: string;
|
|
902
942
|
}
|
|
903
943
|
|
|
904
944
|
/**
|
|
@@ -911,13 +951,13 @@ declare enum FileType {
|
|
|
911
951
|
* Do not edit the class manually.
|
|
912
952
|
*/
|
|
913
953
|
/**
|
|
914
|
-
*
|
|
954
|
+
* GroupCustomerType<br />0 = Ess<br />1 = Distributor<br />2 = Oem<br />3 = Other
|
|
915
955
|
*/
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
956
|
+
declare enum GroupCustomerType {
|
|
957
|
+
Ess = "Ess",
|
|
958
|
+
Distributor = "Distributor",
|
|
959
|
+
Oem = "Oem",
|
|
960
|
+
Other = "Other"
|
|
921
961
|
}
|
|
922
962
|
|
|
923
963
|
/**
|
|
@@ -930,13 +970,12 @@ interface ForgotPasswordCommand {
|
|
|
930
970
|
* Do not edit the class manually.
|
|
931
971
|
*/
|
|
932
972
|
/**
|
|
933
|
-
*
|
|
973
|
+
* GroupType<br />0 = None<br />1 = Customer<br />2 = System
|
|
934
974
|
*/
|
|
935
|
-
declare enum
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
Other = "Other"
|
|
975
|
+
declare enum GroupType {
|
|
976
|
+
None = "None",
|
|
977
|
+
Customer = "Customer",
|
|
978
|
+
System = "System"
|
|
940
979
|
}
|
|
941
980
|
|
|
942
981
|
/**
|
|
@@ -958,7 +997,7 @@ interface GroupDto {
|
|
|
958
997
|
/**
|
|
959
998
|
* GroupType<br />0 = None<br />1 = Customer<br />2 = System
|
|
960
999
|
*/
|
|
961
|
-
type:
|
|
1000
|
+
type: GroupType;
|
|
962
1001
|
/**
|
|
963
1002
|
* DTO for RenewAire.Cores.Domain.Address.
|
|
964
1003
|
*/
|
|
@@ -970,7 +1009,7 @@ interface GroupDto {
|
|
|
970
1009
|
/**
|
|
971
1010
|
* GroupCustomerType<br />0 = Ess<br />1 = Distributor<br />2 = Oem<br />3 = Other
|
|
972
1011
|
*/
|
|
973
|
-
customerType:
|
|
1012
|
+
customerType: GroupCustomerType;
|
|
974
1013
|
/**
|
|
975
1014
|
* Represents a data transfer object containing an identifier and a name. It is intended to be used in simple dropdown lists or in table views where we need to display a link to the object.
|
|
976
1015
|
*/
|
|
@@ -989,35 +1028,6 @@ interface GroupDto {
|
|
|
989
1028
|
*/
|
|
990
1029
|
connectedGroups?: Array<ConnectedGroupDto> | null;
|
|
991
1030
|
}
|
|
992
|
-
declare enum GroupDtoTypeEnum {
|
|
993
|
-
None = "None",
|
|
994
|
-
Customer = "Customer",
|
|
995
|
-
System = "System"
|
|
996
|
-
}
|
|
997
|
-
declare enum GroupDtoCustomerTypeEnum {
|
|
998
|
-
Ess = "Ess",
|
|
999
|
-
Distributor = "Distributor",
|
|
1000
|
-
Oem = "Oem",
|
|
1001
|
-
Other = "Other"
|
|
1002
|
-
}
|
|
1003
|
-
|
|
1004
|
-
/**
|
|
1005
|
-
* RenewAire CORES API
|
|
1006
|
-
*
|
|
1007
|
-
* Contact: renewaire@saritasa.com
|
|
1008
|
-
*
|
|
1009
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1010
|
-
* https://openapi-generator.tech
|
|
1011
|
-
* Do not edit the class manually.
|
|
1012
|
-
*/
|
|
1013
|
-
/**
|
|
1014
|
-
* GroupType<br />0 = None<br />1 = Customer<br />2 = System
|
|
1015
|
-
*/
|
|
1016
|
-
declare enum GroupType {
|
|
1017
|
-
None = "None",
|
|
1018
|
-
Customer = "Customer",
|
|
1019
|
-
System = "System"
|
|
1020
|
-
}
|
|
1021
1031
|
|
|
1022
1032
|
/**
|
|
1023
1033
|
* RenewAire CORES API
|
|
@@ -1118,7 +1128,7 @@ interface LeadTimeGroupDto {
|
|
|
1118
1128
|
/**
|
|
1119
1129
|
* LeadTimeType<br />0 = RenewAire<br />1 = SPUnits
|
|
1120
1130
|
*/
|
|
1121
|
-
type:
|
|
1131
|
+
type: LeadTimeType;
|
|
1122
1132
|
date: string;
|
|
1123
1133
|
tableDisclaimer: string;
|
|
1124
1134
|
/**
|
|
@@ -1126,27 +1136,6 @@ interface LeadTimeGroupDto {
|
|
|
1126
1136
|
*/
|
|
1127
1137
|
leadTimes: Array<LeadTimeDto>;
|
|
1128
1138
|
}
|
|
1129
|
-
declare enum LeadTimeGroupDtoTypeEnum {
|
|
1130
|
-
RenewAire = "RenewAire",
|
|
1131
|
-
SpUnits = "SPUnits"
|
|
1132
|
-
}
|
|
1133
|
-
|
|
1134
|
-
/**
|
|
1135
|
-
* RenewAire CORES API
|
|
1136
|
-
*
|
|
1137
|
-
* Contact: renewaire@saritasa.com
|
|
1138
|
-
*
|
|
1139
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1140
|
-
* https://openapi-generator.tech
|
|
1141
|
-
* Do not edit the class manually.
|
|
1142
|
-
*/
|
|
1143
|
-
/**
|
|
1144
|
-
* LeadTimeType<br />0 = RenewAire<br />1 = SPUnits
|
|
1145
|
-
*/
|
|
1146
|
-
declare enum LeadTimeType {
|
|
1147
|
-
RenewAire = "RenewAire",
|
|
1148
|
-
SpUnits = "SPUnits"
|
|
1149
|
-
}
|
|
1150
1139
|
|
|
1151
1140
|
/**
|
|
1152
1141
|
* RenewAire CORES API
|
|
@@ -1196,140 +1185,9 @@ interface OffsetLimitListMetadata {
|
|
|
1196
1185
|
* Do not edit the class manually.
|
|
1197
1186
|
*/
|
|
1198
1187
|
/**
|
|
1199
|
-
* Permission<br />0 = SystemAdmin<br />1 = ManageUsers<br />2 = ViewAllProjectsInTheSystem<br />3 = EditAllProjectsInTheSystem<br />4 = ViewOtherGroupMembersProjects<br />5 = EditEachOthersGroupMembersProjects<br />6 = AnswerIncomingChats<br />7 = QsEligible<br />8 = ViewQsApplications<br />9 = ViewPricing<br />10 = ConfigurationAccessDoas<br />11 = ConfigurationAccessCommercial<br />12 = ConfigurationAccessResidential<br />13 = ConfigurationAccessApplied<br />14 = ConfigurationAccessElectricHeaters<br />15 = ConfigurationAccessGasFurnaces<br />16 = ConfigurationAccessCoilModules<br />17 = ConfigurationAccessAccessories<br />18 = ConfigurationAccessServiceParts<br />19 = ConfigurationAccessSpUnits<br />20 = ConfigurationAccessJciResUnits<br />21 = ConfigurationAccessJciComUnits<br />22 = ConfigurationAccessTraneUnits<br />23 = EditSystemGroups<br />24 = ViewAllHiddenFieldsExtraData<br />25 = ViewExtraCalculationData<br />26 = EditCertainReadonlyFields<br />27 = ViewRenewAireOnlyData<br />28 = ViewAhriCertificationItemsAndData<br />29 = ReassignProjects<br />30 = CreateNewProjects<br />31 = CreateNewLineItems<br />32 = ViewClosedLines<br />33 = AccessSiteInMaintenanceMode<br />34 = ViewSoldToSelectionAndInformation<br />35 = Rep<br />36 = RequestAccountUpgrade<br />37 = EditUserAccountEmailAddress<br />38 = ManageAllUserGroups<br />39 = ManageRsdRegions<br />40 = ViewRsdRegions<br />41 = ManageRepTerritories<br />42 = ViewRepTerritories<br />43 = ViewRelatedRepTerritories<br />44 = ManageRepContacts<br />45 = ViewRepContacts<br />46 = ManageStateProvinces<br />47 = ViewStateProvinces<br />48 = ManageGroups<br />49 = ViewAllGroups<br />50 = ViewRelatedGroups<br />51 = ViewAllUsers<br />52 = ViewRelatedUsers<br />53 = ViewRenewAireLeadTimesData<br />54 = ViewSpLeadTimesData<br />55 = ViewRepReports<br />56 = ViewFinancialReports<br />57 = AccessPartnerPortal<br />58 = AccessExchangerPerformanceApp<br />59 = ViewDefrost<br />100 = SubmitOrder<br />101 = ImportOrdersToErp<br />104 = ViewDiscountWorkflows<br />105 = AddUnrestrictedDiscountsToProjects<br />106 = AddLimitedDiscountsToProjects<br />107 = ApproveUnrestrictedDiscountsInProjects<br />108 = ApproveLimitedDiscountsInProjects<br />109 = SubmitQsApplication<br />110 = QsBonus<br />111 = QsDiscount<br />113 = ApproveQsApplications<br />114 = MakeObsoleteLineItemsValid<br />115 = GenerateQuotes<br />116 = ViewAllProjectDownloadHistory<br />117 = ViewEnergyAnalysis<br />118 = ViewExtraQuoteQuoteOptions<br />119 = ViewShipToSelectionAndInformation<br />120 = ViewProjectRevisions<br />121 = AddProjectRevisions<br />122 = ViewLinkedProjects<br />123 = AddLinkedProjects
|
|
1200
|
-
*/
|
|
1201
|
-
declare enum Permission {
|
|
1202
|
-
SystemAdmin = "SystemAdmin",
|
|
1203
|
-
ManageUsers = "ManageUsers",
|
|
1204
|
-
ViewAllProjectsInTheSystem = "ViewAllProjectsInTheSystem",
|
|
1205
|
-
EditAllProjectsInTheSystem = "EditAllProjectsInTheSystem",
|
|
1206
|
-
ViewOtherGroupMembersProjects = "ViewOtherGroupMembersProjects",
|
|
1207
|
-
EditEachOthersGroupMembersProjects = "EditEachOthersGroupMembersProjects",
|
|
1208
|
-
AnswerIncomingChats = "AnswerIncomingChats",
|
|
1209
|
-
QsEligible = "QsEligible",
|
|
1210
|
-
ViewQsApplications = "ViewQsApplications",
|
|
1211
|
-
ViewPricing = "ViewPricing",
|
|
1212
|
-
ConfigurationAccessDoas = "ConfigurationAccessDoas",
|
|
1213
|
-
ConfigurationAccessCommercial = "ConfigurationAccessCommercial",
|
|
1214
|
-
ConfigurationAccessResidential = "ConfigurationAccessResidential",
|
|
1215
|
-
ConfigurationAccessApplied = "ConfigurationAccessApplied",
|
|
1216
|
-
ConfigurationAccessElectricHeaters = "ConfigurationAccessElectricHeaters",
|
|
1217
|
-
ConfigurationAccessGasFurnaces = "ConfigurationAccessGasFurnaces",
|
|
1218
|
-
ConfigurationAccessCoilModules = "ConfigurationAccessCoilModules",
|
|
1219
|
-
ConfigurationAccessAccessories = "ConfigurationAccessAccessories",
|
|
1220
|
-
ConfigurationAccessServiceParts = "ConfigurationAccessServiceParts",
|
|
1221
|
-
ConfigurationAccessSpUnits = "ConfigurationAccessSpUnits",
|
|
1222
|
-
ConfigurationAccessJciResUnits = "ConfigurationAccessJciResUnits",
|
|
1223
|
-
ConfigurationAccessJciComUnits = "ConfigurationAccessJciComUnits",
|
|
1224
|
-
ConfigurationAccessTraneUnits = "ConfigurationAccessTraneUnits",
|
|
1225
|
-
EditSystemGroups = "EditSystemGroups",
|
|
1226
|
-
ViewAllHiddenFieldsExtraData = "ViewAllHiddenFieldsExtraData",
|
|
1227
|
-
ViewExtraCalculationData = "ViewExtraCalculationData",
|
|
1228
|
-
EditCertainReadonlyFields = "EditCertainReadonlyFields",
|
|
1229
|
-
ViewRenewAireOnlyData = "ViewRenewAireOnlyData",
|
|
1230
|
-
ViewAhriCertificationItemsAndData = "ViewAhriCertificationItemsAndData",
|
|
1231
|
-
ReassignProjects = "ReassignProjects",
|
|
1232
|
-
CreateNewProjects = "CreateNewProjects",
|
|
1233
|
-
CreateNewLineItems = "CreateNewLineItems",
|
|
1234
|
-
ViewClosedLines = "ViewClosedLines",
|
|
1235
|
-
AccessSiteInMaintenanceMode = "AccessSiteInMaintenanceMode",
|
|
1236
|
-
ViewSoldToSelectionAndInformation = "ViewSoldToSelectionAndInformation",
|
|
1237
|
-
Rep = "Rep",
|
|
1238
|
-
RequestAccountUpgrade = "RequestAccountUpgrade",
|
|
1239
|
-
EditUserAccountEmailAddress = "EditUserAccountEmailAddress",
|
|
1240
|
-
ManageAllUserGroups = "ManageAllUserGroups",
|
|
1241
|
-
ManageRsdRegions = "ManageRsdRegions",
|
|
1242
|
-
ViewRsdRegions = "ViewRsdRegions",
|
|
1243
|
-
ManageRepTerritories = "ManageRepTerritories",
|
|
1244
|
-
ViewRepTerritories = "ViewRepTerritories",
|
|
1245
|
-
ViewRelatedRepTerritories = "ViewRelatedRepTerritories",
|
|
1246
|
-
ManageRepContacts = "ManageRepContacts",
|
|
1247
|
-
ViewRepContacts = "ViewRepContacts",
|
|
1248
|
-
ManageStateProvinces = "ManageStateProvinces",
|
|
1249
|
-
ViewStateProvinces = "ViewStateProvinces",
|
|
1250
|
-
ManageGroups = "ManageGroups",
|
|
1251
|
-
ViewAllGroups = "ViewAllGroups",
|
|
1252
|
-
ViewRelatedGroups = "ViewRelatedGroups",
|
|
1253
|
-
ViewAllUsers = "ViewAllUsers",
|
|
1254
|
-
ViewRelatedUsers = "ViewRelatedUsers",
|
|
1255
|
-
ViewRenewAireLeadTimesData = "ViewRenewAireLeadTimesData",
|
|
1256
|
-
ViewSpLeadTimesData = "ViewSpLeadTimesData",
|
|
1257
|
-
ViewRepReports = "ViewRepReports",
|
|
1258
|
-
ViewFinancialReports = "ViewFinancialReports",
|
|
1259
|
-
AccessPartnerPortal = "AccessPartnerPortal",
|
|
1260
|
-
AccessExchangerPerformanceApp = "AccessExchangerPerformanceApp",
|
|
1261
|
-
ViewDefrost = "ViewDefrost",
|
|
1262
|
-
SubmitOrder = "SubmitOrder",
|
|
1263
|
-
ImportOrdersToErp = "ImportOrdersToErp",
|
|
1264
|
-
ViewDiscountWorkflows = "ViewDiscountWorkflows",
|
|
1265
|
-
AddUnrestrictedDiscountsToProjects = "AddUnrestrictedDiscountsToProjects",
|
|
1266
|
-
AddLimitedDiscountsToProjects = "AddLimitedDiscountsToProjects",
|
|
1267
|
-
ApproveUnrestrictedDiscountsInProjects = "ApproveUnrestrictedDiscountsInProjects",
|
|
1268
|
-
ApproveLimitedDiscountsInProjects = "ApproveLimitedDiscountsInProjects",
|
|
1269
|
-
SubmitQsApplication = "SubmitQsApplication",
|
|
1270
|
-
QsBonus = "QsBonus",
|
|
1271
|
-
QsDiscount = "QsDiscount",
|
|
1272
|
-
ApproveQsApplications = "ApproveQsApplications",
|
|
1273
|
-
MakeObsoleteLineItemsValid = "MakeObsoleteLineItemsValid",
|
|
1274
|
-
GenerateQuotes = "GenerateQuotes",
|
|
1275
|
-
ViewAllProjectDownloadHistory = "ViewAllProjectDownloadHistory",
|
|
1276
|
-
ViewEnergyAnalysis = "ViewEnergyAnalysis",
|
|
1277
|
-
ViewExtraQuoteQuoteOptions = "ViewExtraQuoteQuoteOptions",
|
|
1278
|
-
ViewShipToSelectionAndInformation = "ViewShipToSelectionAndInformation",
|
|
1279
|
-
ViewProjectRevisions = "ViewProjectRevisions",
|
|
1280
|
-
AddProjectRevisions = "AddProjectRevisions",
|
|
1281
|
-
ViewLinkedProjects = "ViewLinkedProjects",
|
|
1282
|
-
AddLinkedProjects = "AddLinkedProjects"
|
|
1283
|
-
}
|
|
1284
|
-
|
|
1285
|
-
/**
|
|
1286
|
-
* RenewAire CORES API
|
|
1287
|
-
*
|
|
1288
|
-
* Contact: renewaire@saritasa.com
|
|
1289
|
-
*
|
|
1290
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1291
|
-
* https://openapi-generator.tech
|
|
1292
|
-
* Do not edit the class manually.
|
|
1293
|
-
*/
|
|
1294
|
-
|
|
1295
|
-
/**
|
|
1296
|
-
* Permission bundle DTO.
|
|
1297
|
-
*/
|
|
1298
|
-
interface PermissionBundleDto {
|
|
1299
|
-
id: number;
|
|
1300
|
-
name: string;
|
|
1301
|
-
description: string;
|
|
1302
|
-
isSystem: boolean;
|
|
1303
|
-
permissions: Array<Permission>;
|
|
1304
|
-
}
|
|
1305
|
-
|
|
1306
|
-
/**
|
|
1307
|
-
* RenewAire CORES API
|
|
1308
|
-
*
|
|
1309
|
-
* Contact: renewaire@saritasa.com
|
|
1310
|
-
*
|
|
1311
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1312
|
-
* https://openapi-generator.tech
|
|
1313
|
-
* Do not edit the class manually.
|
|
1314
|
-
*/
|
|
1315
|
-
/**
|
|
1316
|
-
* DTO for RenewAire.Cores.Domain.Users.Permission.
|
|
1188
|
+
* Permission<br />0 = SystemAdmin<br />1 = ManageUsers<br />2 = ViewAllProjectsInTheSystem<br />3 = EditAllProjectsInTheSystem<br />4 = ViewOtherGroupMembersProjects<br />5 = EditEachOthersGroupMembersProjects<br />6 = AnswerIncomingChats<br />7 = QsEligible<br />8 = ViewQsApplications<br />9 = ViewPricing<br />10 = ConfigurationAccessDoas<br />11 = ConfigurationAccessCommercial<br />12 = ConfigurationAccessResidential<br />13 = ConfigurationAccessApplied<br />14 = ConfigurationAccessElectricHeaters<br />15 = ConfigurationAccessGasFurnaces<br />16 = ConfigurationAccessCoilModules<br />17 = ConfigurationAccessAccessories<br />18 = ConfigurationAccessServiceParts<br />19 = ConfigurationAccessSpUnits<br />20 = ConfigurationAccessJciResUnits<br />21 = ConfigurationAccessJciComUnits<br />22 = ConfigurationAccessTraneUnits<br />23 = EditSystemGroups<br />24 = ViewAllHiddenFieldsExtraData<br />25 = ViewExtraCalculationData<br />26 = EditCertainReadonlyFields<br />27 = ViewRenewAireOnlyData<br />28 = ViewAhriCertificationItemsAndData<br />29 = ReassignProjects<br />30 = CreateNewProjects<br />31 = CreateNewLineItems<br />32 = ViewClosedLines<br />33 = AccessSiteInMaintenanceMode<br />34 = ViewSoldToSelectionAndInformation<br />35 = Rep<br />36 = RequestAccountUpgrade<br />37 = EditUserAccountEmailAddress<br />38 = ManageAllUserGroups<br />39 = ManageRsdRegions<br />40 = ViewRsdRegions<br />41 = ManageRepTerritories<br />42 = ViewRepTerritories<br />43 = ViewRelatedRepTerritories<br />44 = ManageRepContacts<br />45 = ViewRepContacts<br />46 = ManageStateProvinces<br />47 = ViewStateProvinces<br />48 = ManageGroups<br />49 = ViewAllGroups<br />50 = ViewRelatedGroups<br />51 = ViewAllUsers<br />52 = ViewRelatedUsers<br />53 = ViewRenewAireLeadTimesData<br />54 = ViewSpLeadTimesData<br />55 = ViewRepReports<br />56 = ViewFinancialReports<br />57 = AccessPartnerPortal<br />58 = AccessExchangerPerformanceApp<br />59 = ViewDefrost<br />100 = SubmitOrder<br />101 = ImportOrdersToErp<br />104 = ViewDiscountWorkflows<br />105 = AddUnrestrictedDiscountsToProjects<br />106 = AddLimitedDiscountsToProjects<br />107 = ApproveUnrestrictedDiscountsInProjects<br />108 = ApproveLimitedDiscountsInProjects<br />109 = SubmitQsApplication<br />110 = QsBonus<br />111 = QsDiscount<br />113 = ApproveQsApplications<br />114 = MakeObsoleteLineItemsValid<br />115 = GenerateQuotes<br />116 = ViewAllProjectDownloadHistory<br />117 = ViewEnergyAnalysis<br />118 = ViewExtraQuoteQuoteOptions<br />119 = ViewShipToSelectionAndInformation<br />120 = ViewProjectRevisions<br />121 = AddProjectRevisions<br />122 = ViewLinkedProjects<br />123 = AddLinkedProjects
|
|
1317
1189
|
*/
|
|
1318
|
-
|
|
1319
|
-
/**
|
|
1320
|
-
* Identifier. Enum key.<br />Permission<br />0 = SystemAdmin<br />1 = ManageUsers<br />2 = ViewAllProjectsInTheSystem<br />3 = EditAllProjectsInTheSystem<br />4 = ViewOtherGroupMembersProjects<br />5 = EditEachOthersGroupMembersProjects<br />6 = AnswerIncomingChats<br />7 = QsEligible<br />8 = ViewQsApplications<br />9 = ViewPricing<br />10 = ConfigurationAccessDoas<br />11 = ConfigurationAccessCommercial<br />12 = ConfigurationAccessResidential<br />13 = ConfigurationAccessApplied<br />14 = ConfigurationAccessElectricHeaters<br />15 = ConfigurationAccessGasFurnaces<br />16 = ConfigurationAccessCoilModules<br />17 = ConfigurationAccessAccessories<br />18 = ConfigurationAccessServiceParts<br />19 = ConfigurationAccessSpUnits<br />20 = ConfigurationAccessJciResUnits<br />21 = ConfigurationAccessJciComUnits<br />22 = ConfigurationAccessTraneUnits<br />23 = EditSystemGroups<br />24 = ViewAllHiddenFieldsExtraData<br />25 = ViewExtraCalculationData<br />26 = EditCertainReadonlyFields<br />27 = ViewRenewAireOnlyData<br />28 = ViewAhriCertificationItemsAndData<br />29 = ReassignProjects<br />30 = CreateNewProjects<br />31 = CreateNewLineItems<br />32 = ViewClosedLines<br />33 = AccessSiteInMaintenanceMode<br />34 = ViewSoldToSelectionAndInformation<br />35 = Rep<br />36 = RequestAccountUpgrade<br />37 = EditUserAccountEmailAddress<br />38 = ManageAllUserGroups<br />39 = ManageRsdRegions<br />40 = ViewRsdRegions<br />41 = ManageRepTerritories<br />42 = ViewRepTerritories<br />43 = ViewRelatedRepTerritories<br />44 = ManageRepContacts<br />45 = ViewRepContacts<br />46 = ManageStateProvinces<br />47 = ViewStateProvinces<br />48 = ManageGroups<br />49 = ViewAllGroups<br />50 = ViewRelatedGroups<br />51 = ViewAllUsers<br />52 = ViewRelatedUsers<br />53 = ViewRenewAireLeadTimesData<br />54 = ViewSpLeadTimesData<br />55 = ViewRepReports<br />56 = ViewFinancialReports<br />57 = AccessPartnerPortal<br />58 = AccessExchangerPerformanceApp<br />59 = ViewDefrost<br />100 = SubmitOrder<br />101 = ImportOrdersToErp<br />104 = ViewDiscountWorkflows<br />105 = AddUnrestrictedDiscountsToProjects<br />106 = AddLimitedDiscountsToProjects<br />107 = ApproveUnrestrictedDiscountsInProjects<br />108 = ApproveLimitedDiscountsInProjects<br />109 = SubmitQsApplication<br />110 = QsBonus<br />111 = QsDiscount<br />113 = ApproveQsApplications<br />114 = MakeObsoleteLineItemsValid<br />115 = GenerateQuotes<br />116 = ViewAllProjectDownloadHistory<br />117 = ViewEnergyAnalysis<br />118 = ViewExtraQuoteQuoteOptions<br />119 = ViewShipToSelectionAndInformation<br />120 = ViewProjectRevisions<br />121 = AddProjectRevisions<br />122 = ViewLinkedProjects<br />123 = AddLinkedProjects
|
|
1321
|
-
*/
|
|
1322
|
-
id: PermissionDtoIdEnum;
|
|
1323
|
-
/**
|
|
1324
|
-
* Name.
|
|
1325
|
-
*/
|
|
1326
|
-
name: string;
|
|
1327
|
-
/**
|
|
1328
|
-
* Description.
|
|
1329
|
-
*/
|
|
1330
|
-
description: string;
|
|
1331
|
-
}
|
|
1332
|
-
declare enum PermissionDtoIdEnum {
|
|
1190
|
+
declare enum Permission {
|
|
1333
1191
|
SystemAdmin = "SystemAdmin",
|
|
1334
1192
|
ManageUsers = "ManageUsers",
|
|
1335
1193
|
ViewAllProjectsInTheSystem = "ViewAllProjectsInTheSystem",
|
|
@@ -1422,11 +1280,16 @@ declare enum PermissionDtoIdEnum {
|
|
|
1422
1280
|
* https://openapi-generator.tech
|
|
1423
1281
|
* Do not edit the class manually.
|
|
1424
1282
|
*/
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1283
|
+
|
|
1284
|
+
/**
|
|
1285
|
+
* Permission bundle DTO.
|
|
1286
|
+
*/
|
|
1287
|
+
interface PermissionBundleDto {
|
|
1288
|
+
id: number;
|
|
1289
|
+
name: string;
|
|
1290
|
+
description: string;
|
|
1291
|
+
isSystem: boolean;
|
|
1292
|
+
permissions: Array<Permission>;
|
|
1430
1293
|
}
|
|
1431
1294
|
|
|
1432
1295
|
/**
|
|
@@ -1438,11 +1301,23 @@ interface PostPreSignedUrlDto {
|
|
|
1438
1301
|
* https://openapi-generator.tech
|
|
1439
1302
|
* Do not edit the class manually.
|
|
1440
1303
|
*/
|
|
1304
|
+
|
|
1441
1305
|
/**
|
|
1442
|
-
* DTO
|
|
1306
|
+
* DTO for RenewAire.Cores.Domain.Users.Permission.
|
|
1443
1307
|
*/
|
|
1444
|
-
interface
|
|
1445
|
-
|
|
1308
|
+
interface PermissionDto {
|
|
1309
|
+
/**
|
|
1310
|
+
* Identifier. Enum key.<br />Permission<br />0 = SystemAdmin<br />1 = ManageUsers<br />2 = ViewAllProjectsInTheSystem<br />3 = EditAllProjectsInTheSystem<br />4 = ViewOtherGroupMembersProjects<br />5 = EditEachOthersGroupMembersProjects<br />6 = AnswerIncomingChats<br />7 = QsEligible<br />8 = ViewQsApplications<br />9 = ViewPricing<br />10 = ConfigurationAccessDoas<br />11 = ConfigurationAccessCommercial<br />12 = ConfigurationAccessResidential<br />13 = ConfigurationAccessApplied<br />14 = ConfigurationAccessElectricHeaters<br />15 = ConfigurationAccessGasFurnaces<br />16 = ConfigurationAccessCoilModules<br />17 = ConfigurationAccessAccessories<br />18 = ConfigurationAccessServiceParts<br />19 = ConfigurationAccessSpUnits<br />20 = ConfigurationAccessJciResUnits<br />21 = ConfigurationAccessJciComUnits<br />22 = ConfigurationAccessTraneUnits<br />23 = EditSystemGroups<br />24 = ViewAllHiddenFieldsExtraData<br />25 = ViewExtraCalculationData<br />26 = EditCertainReadonlyFields<br />27 = ViewRenewAireOnlyData<br />28 = ViewAhriCertificationItemsAndData<br />29 = ReassignProjects<br />30 = CreateNewProjects<br />31 = CreateNewLineItems<br />32 = ViewClosedLines<br />33 = AccessSiteInMaintenanceMode<br />34 = ViewSoldToSelectionAndInformation<br />35 = Rep<br />36 = RequestAccountUpgrade<br />37 = EditUserAccountEmailAddress<br />38 = ManageAllUserGroups<br />39 = ManageRsdRegions<br />40 = ViewRsdRegions<br />41 = ManageRepTerritories<br />42 = ViewRepTerritories<br />43 = ViewRelatedRepTerritories<br />44 = ManageRepContacts<br />45 = ViewRepContacts<br />46 = ManageStateProvinces<br />47 = ViewStateProvinces<br />48 = ManageGroups<br />49 = ViewAllGroups<br />50 = ViewRelatedGroups<br />51 = ViewAllUsers<br />52 = ViewRelatedUsers<br />53 = ViewRenewAireLeadTimesData<br />54 = ViewSpLeadTimesData<br />55 = ViewRepReports<br />56 = ViewFinancialReports<br />57 = AccessPartnerPortal<br />58 = AccessExchangerPerformanceApp<br />59 = ViewDefrost<br />100 = SubmitOrder<br />101 = ImportOrdersToErp<br />104 = ViewDiscountWorkflows<br />105 = AddUnrestrictedDiscountsToProjects<br />106 = AddLimitedDiscountsToProjects<br />107 = ApproveUnrestrictedDiscountsInProjects<br />108 = ApproveLimitedDiscountsInProjects<br />109 = SubmitQsApplication<br />110 = QsBonus<br />111 = QsDiscount<br />113 = ApproveQsApplications<br />114 = MakeObsoleteLineItemsValid<br />115 = GenerateQuotes<br />116 = ViewAllProjectDownloadHistory<br />117 = ViewEnergyAnalysis<br />118 = ViewExtraQuoteQuoteOptions<br />119 = ViewShipToSelectionAndInformation<br />120 = ViewProjectRevisions<br />121 = AddProjectRevisions<br />122 = ViewLinkedProjects<br />123 = AddLinkedProjects
|
|
1311
|
+
*/
|
|
1312
|
+
id: Permission;
|
|
1313
|
+
/**
|
|
1314
|
+
* Name.
|
|
1315
|
+
*/
|
|
1316
|
+
name: string;
|
|
1317
|
+
/**
|
|
1318
|
+
* Description.
|
|
1319
|
+
*/
|
|
1320
|
+
description: string;
|
|
1446
1321
|
}
|
|
1447
1322
|
|
|
1448
1323
|
/**
|
|
@@ -1454,13 +1329,27 @@ interface ProjectIdIdDto {
|
|
|
1454
1329
|
* https://openapi-generator.tech
|
|
1455
1330
|
* Do not edit the class manually.
|
|
1456
1331
|
*/
|
|
1332
|
+
interface PostPreSignedUrlDto {
|
|
1333
|
+
url: string;
|
|
1334
|
+
fields: {
|
|
1335
|
+
[key: string]: string;
|
|
1336
|
+
};
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1457
1339
|
/**
|
|
1458
|
-
*
|
|
1340
|
+
* RenewAire CORES API
|
|
1341
|
+
*
|
|
1342
|
+
* Contact: renewaire@saritasa.com
|
|
1343
|
+
*
|
|
1344
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1345
|
+
* https://openapi-generator.tech
|
|
1346
|
+
* Do not edit the class manually.
|
|
1459
1347
|
*/
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1348
|
+
/**
|
|
1349
|
+
* DTO to return Id of entity.
|
|
1350
|
+
*/
|
|
1351
|
+
interface ProjectIdIdDto {
|
|
1352
|
+
id: number;
|
|
1464
1353
|
}
|
|
1465
1354
|
|
|
1466
1355
|
/**
|
|
@@ -1473,15 +1362,12 @@ declare enum RegionLevel {
|
|
|
1473
1362
|
* Do not edit the class manually.
|
|
1474
1363
|
*/
|
|
1475
1364
|
/**
|
|
1476
|
-
*
|
|
1365
|
+
* RegionLevel<br />0 = Country<br />1 = State<br />2 = County
|
|
1477
1366
|
*/
|
|
1478
|
-
declare enum
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
SetAddress = "SetAddress",
|
|
1483
|
-
SetOccupation = "SetOccupation",
|
|
1484
|
-
Completed = "Completed"
|
|
1367
|
+
declare enum RegionLevel {
|
|
1368
|
+
Country = "Country",
|
|
1369
|
+
State = "State",
|
|
1370
|
+
County = "County"
|
|
1485
1371
|
}
|
|
1486
1372
|
|
|
1487
1373
|
/**
|
|
@@ -1900,7 +1786,7 @@ interface SaveControllerProgramDto {
|
|
|
1900
1786
|
/**
|
|
1901
1787
|
* ControllerProgramReleaseType<br />0 = Custom<br />1 = Factory
|
|
1902
1788
|
*/
|
|
1903
|
-
releaseType:
|
|
1789
|
+
releaseType: ControllerProgramReleaseType;
|
|
1904
1790
|
versionNumber: string;
|
|
1905
1791
|
notes: string;
|
|
1906
1792
|
/**
|
|
@@ -1908,10 +1794,6 @@ interface SaveControllerProgramDto {
|
|
|
1908
1794
|
*/
|
|
1909
1795
|
file?: UploadFileDto | null;
|
|
1910
1796
|
}
|
|
1911
|
-
declare enum SaveControllerProgramDtoReleaseTypeEnum {
|
|
1912
|
-
Custom = "Custom",
|
|
1913
|
-
Factory = "Factory"
|
|
1914
|
-
}
|
|
1915
1797
|
|
|
1916
1798
|
/**
|
|
1917
1799
|
* RenewAire CORES API
|
|
@@ -1957,7 +1839,7 @@ interface SaveGroupDto {
|
|
|
1957
1839
|
/**
|
|
1958
1840
|
* GroupType<br />0 = None<br />1 = Customer<br />2 = System
|
|
1959
1841
|
*/
|
|
1960
|
-
type:
|
|
1842
|
+
type: GroupType;
|
|
1961
1843
|
notes: string;
|
|
1962
1844
|
/**
|
|
1963
1845
|
* Set address DTO.
|
|
@@ -1969,15 +1851,13 @@ interface SaveGroupDto {
|
|
|
1969
1851
|
* List of connected group ids.
|
|
1970
1852
|
*/
|
|
1971
1853
|
connectedGroupIds: Array<object>;
|
|
1854
|
+
/**
|
|
1855
|
+
* GroupCustomerType<br />0 = Ess<br />1 = Distributor<br />2 = Oem<br />3 = Other
|
|
1856
|
+
*/
|
|
1972
1857
|
customerType?: GroupCustomerType | null;
|
|
1973
1858
|
erpCustomerName?: string | null;
|
|
1974
1859
|
erpCustomerNumber?: string | null;
|
|
1975
1860
|
}
|
|
1976
|
-
declare enum SaveGroupDtoTypeEnum {
|
|
1977
|
-
None = "None",
|
|
1978
|
-
Customer = "Customer",
|
|
1979
|
-
System = "System"
|
|
1980
|
-
}
|
|
1981
1861
|
|
|
1982
1862
|
/**
|
|
1983
1863
|
* RenewAire CORES API
|
|
@@ -2126,11 +2006,7 @@ interface UserDesignWeatherConditionDto {
|
|
|
2126
2006
|
/**
|
|
2127
2007
|
* DesignWeatherMode<br />0 = RelativeHumidity<br />1 = WetBulb
|
|
2128
2008
|
*/
|
|
2129
|
-
designWeatherMode:
|
|
2130
|
-
}
|
|
2131
|
-
declare enum UserDesignWeatherConditionDtoDesignWeatherModeEnum {
|
|
2132
|
-
RelativeHumidity = "RelativeHumidity",
|
|
2133
|
-
WetBulb = "WetBulb"
|
|
2009
|
+
designWeatherMode: DesignWeatherMode;
|
|
2134
2010
|
}
|
|
2135
2011
|
|
|
2136
2012
|
/**
|
|
@@ -2155,7 +2031,7 @@ interface SaveUserDesignConditionsDto {
|
|
|
2155
2031
|
/**
|
|
2156
2032
|
* CoolingDesignBasis<br />0 = Cooling<br />1 = Dehumidification
|
|
2157
2033
|
*/
|
|
2158
|
-
coolingDesignBasis:
|
|
2034
|
+
coolingDesignBasis: CoolingDesignBasis;
|
|
2159
2035
|
/**
|
|
2160
2036
|
* DTO for RenewAire.Cores.Domain.Distance.
|
|
2161
2037
|
*/
|
|
@@ -2177,12 +2053,11 @@ interface SaveUserDesignConditionsDto {
|
|
|
2177
2053
|
* User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
2178
2054
|
*/
|
|
2179
2055
|
winterReturnAir: UserDesignWeatherConditionDto;
|
|
2056
|
+
/**
|
|
2057
|
+
* AshraeVersion<br />0 = V2007<br />1 = V2010<br />2 = V2013<br />3 = V2016<br />4 = V2019<br />5 = V2022
|
|
2058
|
+
*/
|
|
2180
2059
|
ashraeVersion?: AshraeVersion | null;
|
|
2181
2060
|
}
|
|
2182
|
-
declare enum SaveUserDesignConditionsDtoCoolingDesignBasisEnum {
|
|
2183
|
-
Cooling = "Cooling",
|
|
2184
|
-
Dehumidification = "Dehumidification"
|
|
2185
|
-
}
|
|
2186
2061
|
|
|
2187
2062
|
/**
|
|
2188
2063
|
* RenewAire CORES API
|
|
@@ -2217,6 +2092,9 @@ interface SaveUserProjectSettingsDto {
|
|
|
2217
2092
|
interface SearchGroupDto {
|
|
2218
2093
|
id: number;
|
|
2219
2094
|
name?: string | null;
|
|
2095
|
+
/**
|
|
2096
|
+
* GroupType<br />0 = None<br />1 = Customer<br />2 = System
|
|
2097
|
+
*/
|
|
2220
2098
|
type?: GroupType | null;
|
|
2221
2099
|
isActive?: boolean | null;
|
|
2222
2100
|
erpCustomerNumber?: string | null;
|
|
@@ -2233,6 +2111,9 @@ interface SearchGroupDto {
|
|
|
2233
2111
|
* RenewAire.Cores.Domain.Users.Group.ConnectedGroups and RenewAire.Cores.Domain.Users.Group.ConnectedToGroups.<br />Required permissions: SystemAdmin | ViewAllGroups
|
|
2234
2112
|
*/
|
|
2235
2113
|
connectedGroups?: Array<IdNameDto> | null;
|
|
2114
|
+
/**
|
|
2115
|
+
* GroupCustomerType<br />0 = Ess<br />1 = Distributor<br />2 = Oem<br />3 = Other
|
|
2116
|
+
*/
|
|
2236
2117
|
customerType?: GroupCustomerType | null;
|
|
2237
2118
|
createdAt?: string | null;
|
|
2238
2119
|
/**
|
|
@@ -2349,6 +2230,7 @@ interface SearchPermissionBundleDtoPagedListMetadataDto {
|
|
|
2349
2230
|
* https://openapi-generator.tech
|
|
2350
2231
|
* Do not edit the class manually.
|
|
2351
2232
|
*/
|
|
2233
|
+
|
|
2352
2234
|
/**
|
|
2353
2235
|
* DTO for searching RenewAire.Cores.Domain.Region.
|
|
2354
2236
|
*/
|
|
@@ -2357,16 +2239,11 @@ interface SearchRegionDto {
|
|
|
2357
2239
|
/**
|
|
2358
2240
|
* RegionLevel<br />0 = Country<br />1 = State<br />2 = County
|
|
2359
2241
|
*/
|
|
2360
|
-
level:
|
|
2242
|
+
level: RegionLevel;
|
|
2361
2243
|
name: string;
|
|
2362
2244
|
code: string;
|
|
2363
2245
|
parentRegionId?: number | null;
|
|
2364
2246
|
}
|
|
2365
|
-
declare enum SearchRegionDtoLevelEnum {
|
|
2366
|
-
Country = "Country",
|
|
2367
|
-
State = "State",
|
|
2368
|
-
County = "County"
|
|
2369
|
-
}
|
|
2370
2247
|
|
|
2371
2248
|
/**
|
|
2372
2249
|
* RenewAire CORES API
|
|
@@ -2581,23 +2458,6 @@ interface SearchRsdRegionDtoPagedListMetadataDto {
|
|
|
2581
2458
|
items: Array<SearchRsdRegionDto>;
|
|
2582
2459
|
}
|
|
2583
2460
|
|
|
2584
|
-
/**
|
|
2585
|
-
* RenewAire CORES API
|
|
2586
|
-
*
|
|
2587
|
-
* Contact: renewaire@saritasa.com
|
|
2588
|
-
*
|
|
2589
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2590
|
-
* https://openapi-generator.tech
|
|
2591
|
-
* Do not edit the class manually.
|
|
2592
|
-
*/
|
|
2593
|
-
/**
|
|
2594
|
-
* UnitSystem<br />0 = Imperial<br />1 = Metric
|
|
2595
|
-
*/
|
|
2596
|
-
declare enum UnitSystem {
|
|
2597
|
-
Imperial = "Imperial",
|
|
2598
|
-
Metric = "Metric"
|
|
2599
|
-
}
|
|
2600
|
-
|
|
2601
2461
|
/**
|
|
2602
2462
|
* RenewAire CORES API
|
|
2603
2463
|
*
|
|
@@ -2654,6 +2514,9 @@ interface SearchUserDetailsDto {
|
|
|
2654
2514
|
* Represents a data transfer object containing an identifier and a name. It is intended to be used in simple dropdown lists or in table views where we need to display a link to the object.
|
|
2655
2515
|
*/
|
|
2656
2516
|
repTerritory?: IdNameDto | null;
|
|
2517
|
+
/**
|
|
2518
|
+
* UserStatus<br />0 = Inactive<br />1 = Active
|
|
2519
|
+
*/
|
|
2657
2520
|
status?: UserStatus | null;
|
|
2658
2521
|
/**
|
|
2659
2522
|
* DTO for RenewAire.Cores.Domain.Address.
|
|
@@ -2665,6 +2528,9 @@ interface SearchUserDetailsDto {
|
|
|
2665
2528
|
lastLogin?: string | null;
|
|
2666
2529
|
createdAt?: string | null;
|
|
2667
2530
|
updatedAt?: string | null;
|
|
2531
|
+
/**
|
|
2532
|
+
* RegistrationStatus<br />0 = EmailVerification<br />1 = SetPassword<br />2 = SetProfile<br />3 = SetAddress<br />4 = SetOccupation<br />5 = Completed
|
|
2533
|
+
*/
|
|
2668
2534
|
registrationStatus?: RegistrationStatus | null;
|
|
2669
2535
|
occupation?: string | null;
|
|
2670
2536
|
/**
|
|
@@ -2675,7 +2541,13 @@ interface SearchUserDetailsDto {
|
|
|
2675
2541
|
* Avatar URL.
|
|
2676
2542
|
*/
|
|
2677
2543
|
avatarUrl?: string | null;
|
|
2544
|
+
/**
|
|
2545
|
+
* Language<br />0 = English<br />1 = Spanish<br />2 = French
|
|
2546
|
+
*/
|
|
2678
2547
|
preferredLanguage?: Language | null;
|
|
2548
|
+
/**
|
|
2549
|
+
* UnitSystem<br />0 = Imperial<br />1 = Metric
|
|
2550
|
+
*/
|
|
2679
2551
|
preferredUnit?: UnitSystem | null;
|
|
2680
2552
|
soldToId?: number | null;
|
|
2681
2553
|
projectEditMode?: boolean | null;
|
|
@@ -2741,6 +2613,7 @@ interface SearchUserDtoPagedListMetadataDto {
|
|
|
2741
2613
|
* https://openapi-generator.tech
|
|
2742
2614
|
* Do not edit the class manually.
|
|
2743
2615
|
*/
|
|
2616
|
+
|
|
2744
2617
|
/**
|
|
2745
2618
|
* Command to set preferred user language cookie and update RenewAire.Cores.Domain.Users.UserProfile.PreferredLanguage if user is authenticated.
|
|
2746
2619
|
*/
|
|
@@ -2748,12 +2621,7 @@ interface SetPreferredLanguageCommand {
|
|
|
2748
2621
|
/**
|
|
2749
2622
|
* Preferred language.<br />Language<br />0 = English<br />1 = Spanish<br />2 = French
|
|
2750
2623
|
*/
|
|
2751
|
-
preferredLanguage:
|
|
2752
|
-
}
|
|
2753
|
-
declare enum SetPreferredLanguageCommandPreferredLanguageEnum {
|
|
2754
|
-
English = "English",
|
|
2755
|
-
Spanish = "Spanish",
|
|
2756
|
-
French = "French"
|
|
2624
|
+
preferredLanguage: Language;
|
|
2757
2625
|
}
|
|
2758
2626
|
|
|
2759
2627
|
/**
|
|
@@ -2996,7 +2864,7 @@ interface UserDesignConditionsDto {
|
|
|
2996
2864
|
/**
|
|
2997
2865
|
* CoolingDesignBasis<br />0 = Cooling<br />1 = Dehumidification
|
|
2998
2866
|
*/
|
|
2999
|
-
coolingDesignBasis:
|
|
2867
|
+
coolingDesignBasis: CoolingDesignBasis;
|
|
3000
2868
|
/**
|
|
3001
2869
|
* DTO for RenewAire.Cores.Domain.Distance.
|
|
3002
2870
|
*/
|
|
@@ -3018,12 +2886,11 @@ interface UserDesignConditionsDto {
|
|
|
3018
2886
|
* User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
3019
2887
|
*/
|
|
3020
2888
|
winterReturnAir: UserDesignWeatherConditionDto;
|
|
2889
|
+
/**
|
|
2890
|
+
* AshraeVersion<br />0 = V2007<br />1 = V2010<br />2 = V2013<br />3 = V2016<br />4 = V2019<br />5 = V2022
|
|
2891
|
+
*/
|
|
3021
2892
|
ashraeVersion?: AshraeVersion | null;
|
|
3022
2893
|
}
|
|
3023
|
-
declare enum UserDesignConditionsDtoCoolingDesignBasisEnum {
|
|
3024
|
-
Cooling = "Cooling",
|
|
3025
|
-
Dehumidification = "Dehumidification"
|
|
3026
|
-
}
|
|
3027
2894
|
|
|
3028
2895
|
/**
|
|
3029
2896
|
* RenewAire CORES API
|
|
@@ -3051,7 +2918,7 @@ interface UserDetailsDto {
|
|
|
3051
2918
|
/**
|
|
3052
2919
|
* UserStatus<br />0 = Inactive<br />1 = Active
|
|
3053
2920
|
*/
|
|
3054
|
-
status:
|
|
2921
|
+
status: UserStatus;
|
|
3055
2922
|
/**
|
|
3056
2923
|
* DTO for RenewAire.Cores.Domain.Address.
|
|
3057
2924
|
*/
|
|
@@ -3064,7 +2931,7 @@ interface UserDetailsDto {
|
|
|
3064
2931
|
/**
|
|
3065
2932
|
* RegistrationStatus<br />0 = EmailVerification<br />1 = SetPassword<br />2 = SetProfile<br />3 = SetAddress<br />4 = SetOccupation<br />5 = Completed
|
|
3066
2933
|
*/
|
|
3067
|
-
registrationStatus:
|
|
2934
|
+
registrationStatus: RegistrationStatus;
|
|
3068
2935
|
occupation: string;
|
|
3069
2936
|
/**
|
|
3070
2937
|
* Company logo URL.
|
|
@@ -3077,11 +2944,11 @@ interface UserDetailsDto {
|
|
|
3077
2944
|
/**
|
|
3078
2945
|
* Language<br />0 = English<br />1 = Spanish<br />2 = French
|
|
3079
2946
|
*/
|
|
3080
|
-
preferredLanguage:
|
|
2947
|
+
preferredLanguage: Language;
|
|
3081
2948
|
/**
|
|
3082
2949
|
* UnitSystem<br />0 = Imperial<br />1 = Metric
|
|
3083
2950
|
*/
|
|
3084
|
-
preferredUnit:
|
|
2951
|
+
preferredUnit: UnitSystem;
|
|
3085
2952
|
projectEditMode: boolean;
|
|
3086
2953
|
salesChannelContactUsers: Array<IdNameDto>;
|
|
3087
2954
|
userPermissions: Array<IdNameDto>;
|
|
@@ -3100,27 +2967,6 @@ interface UserDetailsDto {
|
|
|
3100
2967
|
lastLogin?: string | null;
|
|
3101
2968
|
soldToId?: number | null;
|
|
3102
2969
|
}
|
|
3103
|
-
declare enum UserDetailsDtoStatusEnum {
|
|
3104
|
-
Inactive = "Inactive",
|
|
3105
|
-
Active = "Active"
|
|
3106
|
-
}
|
|
3107
|
-
declare enum UserDetailsDtoRegistrationStatusEnum {
|
|
3108
|
-
EmailVerification = "EmailVerification",
|
|
3109
|
-
SetPassword = "SetPassword",
|
|
3110
|
-
SetProfile = "SetProfile",
|
|
3111
|
-
SetAddress = "SetAddress",
|
|
3112
|
-
SetOccupation = "SetOccupation",
|
|
3113
|
-
Completed = "Completed"
|
|
3114
|
-
}
|
|
3115
|
-
declare enum UserDetailsDtoPreferredLanguageEnum {
|
|
3116
|
-
English = "English",
|
|
3117
|
-
Spanish = "Spanish",
|
|
3118
|
-
French = "French"
|
|
3119
|
-
}
|
|
3120
|
-
declare enum UserDetailsDtoPreferredUnitEnum {
|
|
3121
|
-
Imperial = "Imperial",
|
|
3122
|
-
Metric = "Metric"
|
|
3123
|
-
}
|
|
3124
2970
|
|
|
3125
2971
|
/**
|
|
3126
2972
|
* RenewAire CORES API
|
|
@@ -3189,7 +3035,7 @@ interface UserPermissionDto {
|
|
|
3189
3035
|
/**
|
|
3190
3036
|
* Permissions.<br />Permission<br />0 = SystemAdmin<br />1 = ManageUsers<br />2 = ViewAllProjectsInTheSystem<br />3 = EditAllProjectsInTheSystem<br />4 = ViewOtherGroupMembersProjects<br />5 = EditEachOthersGroupMembersProjects<br />6 = AnswerIncomingChats<br />7 = QsEligible<br />8 = ViewQsApplications<br />9 = ViewPricing<br />10 = ConfigurationAccessDoas<br />11 = ConfigurationAccessCommercial<br />12 = ConfigurationAccessResidential<br />13 = ConfigurationAccessApplied<br />14 = ConfigurationAccessElectricHeaters<br />15 = ConfigurationAccessGasFurnaces<br />16 = ConfigurationAccessCoilModules<br />17 = ConfigurationAccessAccessories<br />18 = ConfigurationAccessServiceParts<br />19 = ConfigurationAccessSpUnits<br />20 = ConfigurationAccessJciResUnits<br />21 = ConfigurationAccessJciComUnits<br />22 = ConfigurationAccessTraneUnits<br />23 = EditSystemGroups<br />24 = ViewAllHiddenFieldsExtraData<br />25 = ViewExtraCalculationData<br />26 = EditCertainReadonlyFields<br />27 = ViewRenewAireOnlyData<br />28 = ViewAhriCertificationItemsAndData<br />29 = ReassignProjects<br />30 = CreateNewProjects<br />31 = CreateNewLineItems<br />32 = ViewClosedLines<br />33 = AccessSiteInMaintenanceMode<br />34 = ViewSoldToSelectionAndInformation<br />35 = Rep<br />36 = RequestAccountUpgrade<br />37 = EditUserAccountEmailAddress<br />38 = ManageAllUserGroups<br />39 = ManageRsdRegions<br />40 = ViewRsdRegions<br />41 = ManageRepTerritories<br />42 = ViewRepTerritories<br />43 = ViewRelatedRepTerritories<br />44 = ManageRepContacts<br />45 = ViewRepContacts<br />46 = ManageStateProvinces<br />47 = ViewStateProvinces<br />48 = ManageGroups<br />49 = ViewAllGroups<br />50 = ViewRelatedGroups<br />51 = ViewAllUsers<br />52 = ViewRelatedUsers<br />53 = ViewRenewAireLeadTimesData<br />54 = ViewSpLeadTimesData<br />55 = ViewRepReports<br />56 = ViewFinancialReports<br />57 = AccessPartnerPortal<br />58 = AccessExchangerPerformanceApp<br />59 = ViewDefrost<br />100 = SubmitOrder<br />101 = ImportOrdersToErp<br />104 = ViewDiscountWorkflows<br />105 = AddUnrestrictedDiscountsToProjects<br />106 = AddLimitedDiscountsToProjects<br />107 = ApproveUnrestrictedDiscountsInProjects<br />108 = ApproveLimitedDiscountsInProjects<br />109 = SubmitQsApplication<br />110 = QsBonus<br />111 = QsDiscount<br />113 = ApproveQsApplications<br />114 = MakeObsoleteLineItemsValid<br />115 = GenerateQuotes<br />116 = ViewAllProjectDownloadHistory<br />117 = ViewEnergyAnalysis<br />118 = ViewExtraQuoteQuoteOptions<br />119 = ViewShipToSelectionAndInformation<br />120 = ViewProjectRevisions<br />121 = AddProjectRevisions<br />122 = ViewLinkedProjects<br />123 = AddLinkedProjects
|
|
3191
3037
|
*/
|
|
3192
|
-
permission:
|
|
3038
|
+
permission: Permission;
|
|
3193
3039
|
/**
|
|
3194
3040
|
* Permission description.
|
|
3195
3041
|
*/
|
|
@@ -3199,89 +3045,6 @@ interface UserPermissionDto {
|
|
|
3199
3045
|
*/
|
|
3200
3046
|
sources: Array<UserPermissionSourceDto>;
|
|
3201
3047
|
}
|
|
3202
|
-
declare enum UserPermissionDtoPermissionEnum {
|
|
3203
|
-
SystemAdmin = "SystemAdmin",
|
|
3204
|
-
ManageUsers = "ManageUsers",
|
|
3205
|
-
ViewAllProjectsInTheSystem = "ViewAllProjectsInTheSystem",
|
|
3206
|
-
EditAllProjectsInTheSystem = "EditAllProjectsInTheSystem",
|
|
3207
|
-
ViewOtherGroupMembersProjects = "ViewOtherGroupMembersProjects",
|
|
3208
|
-
EditEachOthersGroupMembersProjects = "EditEachOthersGroupMembersProjects",
|
|
3209
|
-
AnswerIncomingChats = "AnswerIncomingChats",
|
|
3210
|
-
QsEligible = "QsEligible",
|
|
3211
|
-
ViewQsApplications = "ViewQsApplications",
|
|
3212
|
-
ViewPricing = "ViewPricing",
|
|
3213
|
-
ConfigurationAccessDoas = "ConfigurationAccessDoas",
|
|
3214
|
-
ConfigurationAccessCommercial = "ConfigurationAccessCommercial",
|
|
3215
|
-
ConfigurationAccessResidential = "ConfigurationAccessResidential",
|
|
3216
|
-
ConfigurationAccessApplied = "ConfigurationAccessApplied",
|
|
3217
|
-
ConfigurationAccessElectricHeaters = "ConfigurationAccessElectricHeaters",
|
|
3218
|
-
ConfigurationAccessGasFurnaces = "ConfigurationAccessGasFurnaces",
|
|
3219
|
-
ConfigurationAccessCoilModules = "ConfigurationAccessCoilModules",
|
|
3220
|
-
ConfigurationAccessAccessories = "ConfigurationAccessAccessories",
|
|
3221
|
-
ConfigurationAccessServiceParts = "ConfigurationAccessServiceParts",
|
|
3222
|
-
ConfigurationAccessSpUnits = "ConfigurationAccessSpUnits",
|
|
3223
|
-
ConfigurationAccessJciResUnits = "ConfigurationAccessJciResUnits",
|
|
3224
|
-
ConfigurationAccessJciComUnits = "ConfigurationAccessJciComUnits",
|
|
3225
|
-
ConfigurationAccessTraneUnits = "ConfigurationAccessTraneUnits",
|
|
3226
|
-
EditSystemGroups = "EditSystemGroups",
|
|
3227
|
-
ViewAllHiddenFieldsExtraData = "ViewAllHiddenFieldsExtraData",
|
|
3228
|
-
ViewExtraCalculationData = "ViewExtraCalculationData",
|
|
3229
|
-
EditCertainReadonlyFields = "EditCertainReadonlyFields",
|
|
3230
|
-
ViewRenewAireOnlyData = "ViewRenewAireOnlyData",
|
|
3231
|
-
ViewAhriCertificationItemsAndData = "ViewAhriCertificationItemsAndData",
|
|
3232
|
-
ReassignProjects = "ReassignProjects",
|
|
3233
|
-
CreateNewProjects = "CreateNewProjects",
|
|
3234
|
-
CreateNewLineItems = "CreateNewLineItems",
|
|
3235
|
-
ViewClosedLines = "ViewClosedLines",
|
|
3236
|
-
AccessSiteInMaintenanceMode = "AccessSiteInMaintenanceMode",
|
|
3237
|
-
ViewSoldToSelectionAndInformation = "ViewSoldToSelectionAndInformation",
|
|
3238
|
-
Rep = "Rep",
|
|
3239
|
-
RequestAccountUpgrade = "RequestAccountUpgrade",
|
|
3240
|
-
EditUserAccountEmailAddress = "EditUserAccountEmailAddress",
|
|
3241
|
-
ManageAllUserGroups = "ManageAllUserGroups",
|
|
3242
|
-
ManageRsdRegions = "ManageRsdRegions",
|
|
3243
|
-
ViewRsdRegions = "ViewRsdRegions",
|
|
3244
|
-
ManageRepTerritories = "ManageRepTerritories",
|
|
3245
|
-
ViewRepTerritories = "ViewRepTerritories",
|
|
3246
|
-
ViewRelatedRepTerritories = "ViewRelatedRepTerritories",
|
|
3247
|
-
ManageRepContacts = "ManageRepContacts",
|
|
3248
|
-
ViewRepContacts = "ViewRepContacts",
|
|
3249
|
-
ManageStateProvinces = "ManageStateProvinces",
|
|
3250
|
-
ViewStateProvinces = "ViewStateProvinces",
|
|
3251
|
-
ManageGroups = "ManageGroups",
|
|
3252
|
-
ViewAllGroups = "ViewAllGroups",
|
|
3253
|
-
ViewRelatedGroups = "ViewRelatedGroups",
|
|
3254
|
-
ViewAllUsers = "ViewAllUsers",
|
|
3255
|
-
ViewRelatedUsers = "ViewRelatedUsers",
|
|
3256
|
-
ViewRenewAireLeadTimesData = "ViewRenewAireLeadTimesData",
|
|
3257
|
-
ViewSpLeadTimesData = "ViewSpLeadTimesData",
|
|
3258
|
-
ViewRepReports = "ViewRepReports",
|
|
3259
|
-
ViewFinancialReports = "ViewFinancialReports",
|
|
3260
|
-
AccessPartnerPortal = "AccessPartnerPortal",
|
|
3261
|
-
AccessExchangerPerformanceApp = "AccessExchangerPerformanceApp",
|
|
3262
|
-
ViewDefrost = "ViewDefrost",
|
|
3263
|
-
SubmitOrder = "SubmitOrder",
|
|
3264
|
-
ImportOrdersToErp = "ImportOrdersToErp",
|
|
3265
|
-
ViewDiscountWorkflows = "ViewDiscountWorkflows",
|
|
3266
|
-
AddUnrestrictedDiscountsToProjects = "AddUnrestrictedDiscountsToProjects",
|
|
3267
|
-
AddLimitedDiscountsToProjects = "AddLimitedDiscountsToProjects",
|
|
3268
|
-
ApproveUnrestrictedDiscountsInProjects = "ApproveUnrestrictedDiscountsInProjects",
|
|
3269
|
-
ApproveLimitedDiscountsInProjects = "ApproveLimitedDiscountsInProjects",
|
|
3270
|
-
SubmitQsApplication = "SubmitQsApplication",
|
|
3271
|
-
QsBonus = "QsBonus",
|
|
3272
|
-
QsDiscount = "QsDiscount",
|
|
3273
|
-
ApproveQsApplications = "ApproveQsApplications",
|
|
3274
|
-
MakeObsoleteLineItemsValid = "MakeObsoleteLineItemsValid",
|
|
3275
|
-
GenerateQuotes = "GenerateQuotes",
|
|
3276
|
-
ViewAllProjectDownloadHistory = "ViewAllProjectDownloadHistory",
|
|
3277
|
-
ViewEnergyAnalysis = "ViewEnergyAnalysis",
|
|
3278
|
-
ViewExtraQuoteQuoteOptions = "ViewExtraQuoteQuoteOptions",
|
|
3279
|
-
ViewShipToSelectionAndInformation = "ViewShipToSelectionAndInformation",
|
|
3280
|
-
ViewProjectRevisions = "ViewProjectRevisions",
|
|
3281
|
-
AddProjectRevisions = "AddProjectRevisions",
|
|
3282
|
-
ViewLinkedProjects = "ViewLinkedProjects",
|
|
3283
|
-
AddLinkedProjects = "AddLinkedProjects"
|
|
3284
|
-
}
|
|
3285
3048
|
|
|
3286
3049
|
/**
|
|
3287
3050
|
* RenewAire CORES API
|
|
@@ -3333,7 +3096,7 @@ interface VerifyResetPasswordTokenCommand {
|
|
|
3333
3096
|
*/
|
|
3334
3097
|
|
|
3335
3098
|
interface AuditLogsSearchAuditLogsRequestParams {
|
|
3336
|
-
auditEntity:
|
|
3099
|
+
auditEntity: AuditEntity;
|
|
3337
3100
|
entityId: string;
|
|
3338
3101
|
page?: number;
|
|
3339
3102
|
pageSize?: number;
|
|
@@ -3576,7 +3339,7 @@ declare class AuthApiService extends BaseService implements AuthApiServiceInterf
|
|
|
3576
3339
|
*/
|
|
3577
3340
|
|
|
3578
3341
|
interface ControllerProgramsCreateControllerProgramRequestParams {
|
|
3579
|
-
programType:
|
|
3342
|
+
programType: ControllerProgramType;
|
|
3580
3343
|
saveControllerProgramDto?: SaveControllerProgramDto;
|
|
3581
3344
|
}
|
|
3582
3345
|
interface ControllerProgramsCreateFileDownloadUrlRequestParams {
|
|
@@ -3586,9 +3349,9 @@ interface ControllerProgramsGetControllerProgramRequestParams {
|
|
|
3586
3349
|
controllerProgramId: number;
|
|
3587
3350
|
}
|
|
3588
3351
|
interface ControllerProgramsSearchControllerProgramsRequestParams {
|
|
3589
|
-
programType:
|
|
3352
|
+
programType: ControllerProgramType;
|
|
3590
3353
|
versionNumber?: string;
|
|
3591
|
-
releaseType?: ControllerProgramReleaseType;
|
|
3354
|
+
releaseType?: ControllerProgramReleaseType | null;
|
|
3592
3355
|
createdAt?: string;
|
|
3593
3356
|
createdBy?: string;
|
|
3594
3357
|
notes?: string;
|
|
@@ -3760,7 +3523,7 @@ declare class ControllerProgramsApiService extends BaseService implements Contro
|
|
|
3760
3523
|
*/
|
|
3761
3524
|
|
|
3762
3525
|
interface FeedbacksCreateFeedbackRequestParams {
|
|
3763
|
-
feedbackType:
|
|
3526
|
+
feedbackType: FeedbackType;
|
|
3764
3527
|
message: string;
|
|
3765
3528
|
frontendUrl: string;
|
|
3766
3529
|
attachments: Array<Blob>;
|
|
@@ -3827,10 +3590,10 @@ interface GroupsSearchGroupsRequestParams {
|
|
|
3827
3590
|
fields: Array<"id" | "name" | "type" | "isActive" | "erpCustomerNumber" | "erpCustomerName" | "repTerritory" | "permissionBundle" | "connectedGroups" | "customerType" | "createdAt" | "notes" | "address">;
|
|
3828
3591
|
pageIndexById?: number | null;
|
|
3829
3592
|
name?: string;
|
|
3830
|
-
type?: GroupType;
|
|
3593
|
+
type?: GroupType | null;
|
|
3831
3594
|
isActive?: boolean;
|
|
3832
3595
|
erpCustomerName?: string;
|
|
3833
|
-
customerType?: GroupCustomerType;
|
|
3596
|
+
customerType?: GroupCustomerType | null;
|
|
3834
3597
|
repTerritoryName?: string;
|
|
3835
3598
|
permissionBundleName?: string;
|
|
3836
3599
|
erpCustomerNumber?: string;
|
|
@@ -4727,7 +4490,7 @@ declare class ProjectsApiService extends BaseService implements ProjectsApiServi
|
|
|
4727
4490
|
interface RegionsSearchRegionsRequestParams {
|
|
4728
4491
|
name?: string;
|
|
4729
4492
|
code?: string;
|
|
4730
|
-
level?: RegionLevel;
|
|
4493
|
+
level?: RegionLevel | null;
|
|
4731
4494
|
parentRegionId?: number | null;
|
|
4732
4495
|
pageIndexById?: number | null;
|
|
4733
4496
|
orderBy?: string;
|
|
@@ -5564,7 +5327,7 @@ interface RsdRegionsSearchRsdRegionsRequestParams {
|
|
|
5564
5327
|
text?: string;
|
|
5565
5328
|
isActive?: boolean;
|
|
5566
5329
|
rsdUserIds?: Array<number>;
|
|
5567
|
-
repTerritoryIds?: Array<
|
|
5330
|
+
repTerritoryIds?: Array<number>;
|
|
5568
5331
|
orderBy?: string;
|
|
5569
5332
|
page?: number;
|
|
5570
5333
|
pageSize?: number;
|
|
@@ -6166,7 +5929,7 @@ interface UsersUpdateUserDetailsRequestParams {
|
|
|
6166
5929
|
}
|
|
6167
5930
|
interface UsersUpdateUserProfileSettingsRequestParams {
|
|
6168
5931
|
userId: number;
|
|
6169
|
-
preferredUnit:
|
|
5932
|
+
preferredUnit: UnitSystem;
|
|
6170
5933
|
companyLogo?: Blob;
|
|
6171
5934
|
}
|
|
6172
5935
|
interface UsersUpdateUserProjectSettingsRequestParams {
|
|
@@ -6844,7 +6607,7 @@ declare class UsersApiService extends BaseService implements UsersApiServiceInte
|
|
|
6844
6607
|
|
|
6845
6608
|
interface UsersManagementCreateUserRequestParams {
|
|
6846
6609
|
email: string;
|
|
6847
|
-
status:
|
|
6610
|
+
status: UserStatus;
|
|
6848
6611
|
contactInformationFirstName: string;
|
|
6849
6612
|
contactInformationLastName: string;
|
|
6850
6613
|
contactInformationCompany: string;
|
|
@@ -6882,7 +6645,7 @@ interface UsersManagementSearchUsersRequestParams {
|
|
|
6882
6645
|
group?: string;
|
|
6883
6646
|
groupPermissionBundleName?: string;
|
|
6884
6647
|
repTerritory?: string;
|
|
6885
|
-
status?: UserStatus;
|
|
6648
|
+
status?: UserStatus | null;
|
|
6886
6649
|
mobilePhoneNumber?: string;
|
|
6887
6650
|
workPhoneNumber?: string;
|
|
6888
6651
|
workPhoneNumberExt?: string;
|
|
@@ -6890,7 +6653,7 @@ interface UsersManagementSearchUsersRequestParams {
|
|
|
6890
6653
|
lastLogin?: string;
|
|
6891
6654
|
createdAt?: string;
|
|
6892
6655
|
updatedAt?: string;
|
|
6893
|
-
registrationStatus?: RegistrationStatus;
|
|
6656
|
+
registrationStatus?: RegistrationStatus | null;
|
|
6894
6657
|
occupation?: string;
|
|
6895
6658
|
text?: string;
|
|
6896
6659
|
page?: number;
|
|
@@ -6898,7 +6661,7 @@ interface UsersManagementSearchUsersRequestParams {
|
|
|
6898
6661
|
}
|
|
6899
6662
|
interface UsersManagementUpdateUserRequestParams {
|
|
6900
6663
|
userId: number;
|
|
6901
|
-
status:
|
|
6664
|
+
status: UserStatus;
|
|
6902
6665
|
contactInformationFirstName: string;
|
|
6903
6666
|
contactInformationLastName: string;
|
|
6904
6667
|
contactInformationCompany: string;
|
|
@@ -7061,5 +6824,5 @@ declare class ApiModule {
|
|
|
7061
6824
|
|
|
7062
6825
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
7063
6826
|
|
|
7064
|
-
export { APIS, AddressCountry,
|
|
6827
|
+
export { APIS, AddressCountry, ApiModule, AshraeVersion, AuditEntity, AuditLogsApiService, AuthApiService, BASE_PATH, COLLECTION_FORMATS, Configuration, ControllerProgramReleaseType, ControllerProgramType, ControllerProgramsApiService, CoolingDesignBasis, DesignWeatherMode, FeedbackType, FeedbacksApiService, FileType, GroupCustomerType, GroupType, GroupsApiService, KnownContactsApiService, Language, LeadTimeType, LeadTimesApiService, Permission, PermissionBundlesApiService, PermissionsApiService, ProjectsApiService, RegionLevel, RegionsApiService, RegistrationStatus, RepContactsApiService, RepSalesReportsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, S3ApiService, StaticFilesApiService, UnitSystem, UserDesignConditionsApiService, UserStatus, UserTablesApiService, UsersApiService, UsersManagementApiService, provideApi };
|
|
7065
6828
|
export type { AddressDto, AuditLogChange, AuditLogDto, AuditLogDtoPagedListMetadataDto, AuditLogsApiServiceInterface, AuditLogsSearchAuditLogsRequestParams, AuthApiServiceInterface, AuthAuthenticateByEmailTokenRequestParams, AuthAuthenticateRequestParams, AuthUpdateUserTokenPermissionsRequestParams, BaseStatusChangeCommand, CancelQuoteRequestCommand, ChangeCurrentUserPasswordCommand, ChangeEmailCommand, CompanyInformationDto, ConfigurationParameters, ConnectedGroupDto, ContactDto, ControllerProgramDto, ControllerProgramDtoPagedListMetadataDto, ControllerProgramsApiServiceInterface, ControllerProgramsCreateControllerProgramRequestParams, ControllerProgramsCreateFileDownloadUrlRequestParams, ControllerProgramsGetControllerProgramRequestParams, ControllerProgramsSearchControllerProgramsRequestParams, ControllerProgramsUpdateControllerProgramRequestParams, CreateLeadTimeGroupDto, CreateRepSalesReportCommand, CreateUploadUrlCommand, CurrentUserDto, DataFormat, DataType, DistanceDto, EmailConfirmationTokenDto, FeedbacksApiServiceInterface, FeedbacksCreateFeedbackRequestParams, FileDto, ForgotPasswordCommand, GroupDto, GroupsApiServiceInterface, GroupsCreateGroupRequestParams, GroupsGetGroupRequestParams, GroupsRemoveGroupRequestParams, GroupsSearchGroupsRequestParams, GroupsUpdateGroupRequestParams, IdNameDto, Int32IdDto, InviteDto, KnownContactsApiServiceInterface, KnownContactsCreateKnowContactRequestParams, KnownContactsRemoveKnownContactRequestParams, KnownContactsSearchKnownContactsRequestParams, KnownContactsUpdateKnownContactRequestParams, LeadTimeDto, LeadTimeGroupDto, LeadTimesApiServiceInterface, LeadTimesCreateLeadTimeGroupRequestParams, LeadTimesUpdateLeadTimeGroupRequestParams, LoginUserCommand, OffsetLimitListMetadata, PagedListMetadata, Param, ParamLocation, ParamStyle, PermissionBundleDto, PermissionBundlesApiServiceInterface, PermissionBundlesCreatePermissionBundleRequestParams, PermissionBundlesGetPermissionBundleRequestParams, PermissionBundlesRemovePermissionBundleRequestParams, PermissionBundlesSearchPermissionBundlesRequestParams, PermissionBundlesUpdatePermissionBundleRequestParams, PermissionDto, PermissionsApiServiceInterface, PostPreSignedUrlDto, ProjectIdIdDto, ProjectsApiServiceInterface, ProjectsCancelQuoteRequestRequestParams, ProjectsCreateProjectRequestParams, ProjectsRequestOrderRequestParams, ProjectsRequestQuote0RequestParams, ProjectsRequestQuoteRequestParams, ProjectsSubmitQuoteRequestParams, ProjectsSubmitToRenewAireRequestParams, RegionsApiServiceInterface, RegionsSearchRegionsRequestParams, RejectQuoteCommand, RepContactsApiServiceInterface, RepContactsGetRepTerritoryRepContactRequestParams, RepContactsRemoveRepTerritoryRepContactRequestParams, RepContactsSearchRepTerritoryRepContactRequestParams, RepContactsUpdateRepTerritoryRepContactRequestParams, RepSalesReportDto, RepSalesReportDtoPagedListMetadataDto, RepSalesReportsApiServiceInterface, RepSalesReportsCreateRepSalesReportDownloadUrlRequestParams, RepSalesReportsCreateRepSalesReportRequestParams, RepSalesReportsGetRepSalesReportRequestParams, RepSalesReportsSearchRepSalesReportsRequestParams, RepTerritoriesApiServiceInterface, RepTerritoriesCreateRepTerritoryLocationRequestParams, RepTerritoriesCreateRepTerritoryRepContactRequestParams, RepTerritoriesCreateRepTerritoryRequestParams, RepTerritoriesGetRepTerritoryRequestParams, RepTerritoriesRemoveRepTerritoryRequestParams, RepTerritoriesSearchRepTerritoriesRequestParams, RepTerritoriesUpdateRepTerritoryRequestParams, RepTerritoryContactsDto, RepTerritoryDto, RepTerritoryLocationDto, RepTerritoryLocationsApiServiceInterface, RepTerritoryLocationsGetRepTerritoryLocationRequestParams, RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams, RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams, RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams, RepTerritoryRepContactDto, RequestChangeEmailCommand, RequestOrderCommand, RequestQuoteCommand, ResetPasswordCommand, RsdRegionDocumentDto, RsdRegionDto, RsdRegionRepTerritoryDto, RsdRegionUserDto, RsdRegionsApiServiceInterface, RsdRegionsCreateRsdRegionDocumentDownloadUrlRequestParams, RsdRegionsCreateRsdRegionRequestParams, RsdRegionsGetRsdRegionRequestParams, RsdRegionsRemoveRsdRegionRequestParams, RsdRegionsSearchRsdRegionTagsRequestParams, RsdRegionsSearchRsdRegionsRequestParams, RsdRegionsUpdateRsdRegionRequestParams, S3ApiServiceInterface, S3CreateFileUploadUrlRequestParams, SalesContactDto, SaveControllerProgramDto, SaveGroupDto, SaveKnownContactDto, SaveLeadTimeDto, SavePermissionBundleDto, SaveRepTerritoryLocationDto, SaveRepTerritoryRepContactDto, SaveUserDesignConditionsDto, SaveUserProjectSettingsDto, SearchGroupDto, SearchGroupDtoPagedListMetadataDto, SearchKnownContactDto, SearchKnownContactDtoPagedListMetadataDto, SearchPermissionBundleDto, SearchPermissionBundleDtoPagedListMetadataDto, SearchRegionDto, SearchRegionDtoPagedListMetadataDto, SearchRepTerritoryDto, SearchRepTerritoryDtoPagedListMetadataDto, SearchRepTerritoryLocationDto, SearchRepTerritoryLocationDtoPagedListMetadataDto, SearchRepTerritoryRepContactDto, SearchRepTerritoryRepContactDtoPagedListMetadataDto, SearchRsdRegionDto, SearchRsdRegionDtoPagedListMetadataDto, SearchUserDetailsDto, SearchUserDetailsDtoPagedListMetadataDto, SearchUserDto, SearchUserDtoPagedListMetadataDto, SetAddressDto, SetPreferredLanguageCommand, SetUserOccupationCommand, SetUserPasswordCommand, StandardDataFormat, StandardDataType, StandardParamStyle, StaticFilesApiServiceInterface, StaticFilesGetRequestParams, StringPagedListMetadataDto, SubmitQuoteCommand, SubmitToRenewAireCommand, TableSettingDto, TableSettingsGetTableSettingRequestParams, TableSettingsSaveTableSettingRequestParams, TemperatureDto, TokenModel, TotalCountListMetadata, UpdateLeadTimeGroupDto, UpdateRepTerritoryLocationDto, UpdateUserTokenPermissionsCommand, UploadFileDto, UploadUrlResult, UserDesignConditionsApiServiceInterface, UserDesignConditionsDto, UserDesignConditionsGetProjectDesignConditionsRequestParams, UserDesignConditionsSaveProjectDesignConditionsRequestParams, UserDesignWeatherConditionDto, UserDetailsDto, UserEmailDto, UserPermissionDto, UserPermissionSourceDto, UserProfileDto, UserTablesApiServiceInterface, UsersAdminSetUserPasswordRequestParams, UsersApiServiceInterface, UsersChangeCurrentUserPasswordRequestParams, UsersChangeEmailRequestParams, UsersConfirmEmailRequestParams, UsersForgotPasswordRequestParams, UsersGetRepContactsRequestParams, UsersGetUserPermissionsRequestParams, UsersGetUserProfileRequestParams, UsersManagementApiServiceInterface, UsersManagementCreateUserRequestParams, UsersManagementGetUserRequestParams, UsersManagementSearchUsersRequestParams, UsersManagementUpdateUserRequestParams, UsersRequestChangeEmailRequestParams, UsersRequestConfirmEmailRequestParams, UsersResetPasswordRequestParams, UsersSearchUsersRequestParams, UsersSendInviteRequestParams, UsersSetPreferredLanguageRequestParams, UsersSetUserAddressRequestParams, UsersSetUserOccupationRequestParams, UsersSetUserPasswordRequestParams, UsersSetUserProfileRequestParams, UsersUpdateUserDetailsRequestParams, UsersUpdateUserProfileSettingsRequestParams, UsersUpdateUserProjectSettingsRequestParams, UsersVerifyResetPasswordTokenRequestParams, VerifyResetPasswordTokenCommand };
|