@saritasa/renewaire-frontend-sdk 0.1.0-dev.341 → 0.1.0-dev.420
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
|
@@ -300,6 +300,64 @@ interface ContactDto {
|
|
|
300
300
|
email: string;
|
|
301
301
|
}
|
|
302
302
|
|
|
303
|
+
/**
|
|
304
|
+
* RenewAire CORES API
|
|
305
|
+
*
|
|
306
|
+
* Contact: renewaire@saritasa.com
|
|
307
|
+
*
|
|
308
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
309
|
+
* https://openapi-generator.tech
|
|
310
|
+
* Do not edit the class manually.
|
|
311
|
+
*/
|
|
312
|
+
/**
|
|
313
|
+
* CoolingDesignBasis<br />0 = Cooling<br />1 = Dehumidification
|
|
314
|
+
*/
|
|
315
|
+
declare enum CoolingDesignBasis {
|
|
316
|
+
Cooling = "Cooling",
|
|
317
|
+
Dehumidification = "Dehumidification"
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
/**
|
|
321
|
+
* RenewAire CORES API
|
|
322
|
+
*
|
|
323
|
+
* Contact: renewaire@saritasa.com
|
|
324
|
+
*
|
|
325
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
326
|
+
* https://openapi-generator.tech
|
|
327
|
+
* Do not edit the class manually.
|
|
328
|
+
*/
|
|
329
|
+
/**
|
|
330
|
+
* Represents metadata for an uploaded file.
|
|
331
|
+
*/
|
|
332
|
+
interface UploadFileDto {
|
|
333
|
+
/**
|
|
334
|
+
* A temporary file id that is assigned when a pre-signed URL is received.
|
|
335
|
+
*/
|
|
336
|
+
fileId: string;
|
|
337
|
+
name: string;
|
|
338
|
+
contentType: string;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
/**
|
|
342
|
+
* RenewAire CORES API
|
|
343
|
+
*
|
|
344
|
+
* Contact: renewaire@saritasa.com
|
|
345
|
+
*
|
|
346
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
347
|
+
* https://openapi-generator.tech
|
|
348
|
+
* Do not edit the class manually.
|
|
349
|
+
*/
|
|
350
|
+
|
|
351
|
+
/**
|
|
352
|
+
* DTO for command RenewAire.Cores.UseCases.RsdRegionDocuments.CreateDocuments.CreateDocumentsCommand.
|
|
353
|
+
*/
|
|
354
|
+
interface CreateDocumentsDto {
|
|
355
|
+
/**
|
|
356
|
+
* Files that need to be created.
|
|
357
|
+
*/
|
|
358
|
+
files: Array<UploadFileDto>;
|
|
359
|
+
}
|
|
360
|
+
|
|
303
361
|
/**
|
|
304
362
|
* RenewAire CORES API
|
|
305
363
|
*
|
|
@@ -326,6 +384,56 @@ interface CreateRsdRegionDto {
|
|
|
326
384
|
rsdUserIds: Array<number>;
|
|
327
385
|
}
|
|
328
386
|
|
|
387
|
+
/**
|
|
388
|
+
* RenewAire CORES API
|
|
389
|
+
*
|
|
390
|
+
* Contact: renewaire@saritasa.com
|
|
391
|
+
*
|
|
392
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
393
|
+
* https://openapi-generator.tech
|
|
394
|
+
* Do not edit the class manually.
|
|
395
|
+
*/
|
|
396
|
+
/**
|
|
397
|
+
* Command to generate URL to upload RenewAire.Cores.Domain.Users.RsdRegionDocument.
|
|
398
|
+
*/
|
|
399
|
+
interface CreateUploadUrlCommand {
|
|
400
|
+
fileName: string;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
/**
|
|
404
|
+
* RenewAire CORES API
|
|
405
|
+
*
|
|
406
|
+
* Contact: renewaire@saritasa.com
|
|
407
|
+
*
|
|
408
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
409
|
+
* https://openapi-generator.tech
|
|
410
|
+
* Do not edit the class manually.
|
|
411
|
+
*/
|
|
412
|
+
/**
|
|
413
|
+
* DesignWeatherMode<br />0 = RelativeHumidity<br />1 = WetBulb
|
|
414
|
+
*/
|
|
415
|
+
declare enum DesignWeatherMode {
|
|
416
|
+
RelativeHumidity = "RelativeHumidity",
|
|
417
|
+
WetBulb = "WetBulb"
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
/**
|
|
421
|
+
* RenewAire CORES API
|
|
422
|
+
*
|
|
423
|
+
* Contact: renewaire@saritasa.com
|
|
424
|
+
*
|
|
425
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
426
|
+
* https://openapi-generator.tech
|
|
427
|
+
* Do not edit the class manually.
|
|
428
|
+
*/
|
|
429
|
+
/**
|
|
430
|
+
* DTO for RenewAire.Cores.Domain.Distance.
|
|
431
|
+
*/
|
|
432
|
+
interface DistanceDto {
|
|
433
|
+
feet: number;
|
|
434
|
+
meters: number;
|
|
435
|
+
}
|
|
436
|
+
|
|
329
437
|
/**
|
|
330
438
|
* RenewAire CORES API
|
|
331
439
|
*
|
|
@@ -349,6 +457,27 @@ interface EmailConfirmationTokenDto {
|
|
|
349
457
|
token: string;
|
|
350
458
|
}
|
|
351
459
|
|
|
460
|
+
/**
|
|
461
|
+
* RenewAire CORES API
|
|
462
|
+
*
|
|
463
|
+
* Contact: renewaire@saritasa.com
|
|
464
|
+
*
|
|
465
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
466
|
+
* https://openapi-generator.tech
|
|
467
|
+
* Do not edit the class manually.
|
|
468
|
+
*/
|
|
469
|
+
/**
|
|
470
|
+
* DTO for RenewAire.Cores.Domain.File.
|
|
471
|
+
*/
|
|
472
|
+
interface FileDto {
|
|
473
|
+
name: string;
|
|
474
|
+
contentType: string;
|
|
475
|
+
/**
|
|
476
|
+
* URL to endpoint to get pre-signed URL for file.
|
|
477
|
+
*/
|
|
478
|
+
preSignedUrlEndpoint?: string | null;
|
|
479
|
+
}
|
|
480
|
+
|
|
352
481
|
/**
|
|
353
482
|
* RenewAire CORES API
|
|
354
483
|
*
|
|
@@ -561,6 +690,33 @@ interface RefreshTokenCommand {
|
|
|
561
690
|
token: string;
|
|
562
691
|
}
|
|
563
692
|
|
|
693
|
+
/**
|
|
694
|
+
* RenewAire CORES API
|
|
695
|
+
*
|
|
696
|
+
* Contact: renewaire@saritasa.com
|
|
697
|
+
*
|
|
698
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
699
|
+
* https://openapi-generator.tech
|
|
700
|
+
* Do not edit the class manually.
|
|
701
|
+
*/
|
|
702
|
+
/**
|
|
703
|
+
* DTO for RenewAire.Cores.Domain.Region.
|
|
704
|
+
*/
|
|
705
|
+
interface RegionDto {
|
|
706
|
+
id: object;
|
|
707
|
+
/**
|
|
708
|
+
* RegionLevel<br />0 = Country<br />1 = State<br />2 = County
|
|
709
|
+
*/
|
|
710
|
+
level: RegionDtoLevelEnum;
|
|
711
|
+
name: string;
|
|
712
|
+
code: string;
|
|
713
|
+
}
|
|
714
|
+
declare enum RegionDtoLevelEnum {
|
|
715
|
+
Country = "Country",
|
|
716
|
+
State = "State",
|
|
717
|
+
County = "County"
|
|
718
|
+
}
|
|
719
|
+
|
|
564
720
|
/**
|
|
565
721
|
* RenewAire CORES API
|
|
566
722
|
*
|
|
@@ -579,6 +735,25 @@ declare enum RegionLevel {
|
|
|
579
735
|
County = "County"
|
|
580
736
|
}
|
|
581
737
|
|
|
738
|
+
/**
|
|
739
|
+
* RenewAire CORES API
|
|
740
|
+
*
|
|
741
|
+
* Contact: renewaire@saritasa.com
|
|
742
|
+
*
|
|
743
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
744
|
+
* https://openapi-generator.tech
|
|
745
|
+
* Do not edit the class manually.
|
|
746
|
+
*/
|
|
747
|
+
/**
|
|
748
|
+
* Command to remove list of RenewAire.Cores.Domain.Users.RsdRegionDocument.
|
|
749
|
+
*/
|
|
750
|
+
interface RemoveDocumentsCommand {
|
|
751
|
+
/**
|
|
752
|
+
* RSD region document ids to remove.
|
|
753
|
+
*/
|
|
754
|
+
rsdRegionDocumentIds: Array<object>;
|
|
755
|
+
}
|
|
756
|
+
|
|
582
757
|
/**
|
|
583
758
|
* RenewAire CORES API
|
|
584
759
|
*
|
|
@@ -665,6 +840,28 @@ interface RepTerritoryDto {
|
|
|
665
840
|
salesContacts: Array<ContactDto>;
|
|
666
841
|
}
|
|
667
842
|
|
|
843
|
+
/**
|
|
844
|
+
* RenewAire CORES API
|
|
845
|
+
*
|
|
846
|
+
* Contact: renewaire@saritasa.com
|
|
847
|
+
*
|
|
848
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
849
|
+
* https://openapi-generator.tech
|
|
850
|
+
* Do not edit the class manually.
|
|
851
|
+
*/
|
|
852
|
+
|
|
853
|
+
/**
|
|
854
|
+
* REP territory location DTO.
|
|
855
|
+
*/
|
|
856
|
+
interface RepTerritoryLocationDto {
|
|
857
|
+
id: object;
|
|
858
|
+
name: string;
|
|
859
|
+
repTerritoryId: object;
|
|
860
|
+
repTerritoryName: string;
|
|
861
|
+
allCounties: boolean;
|
|
862
|
+
regions: Array<RegionDto>;
|
|
863
|
+
}
|
|
864
|
+
|
|
668
865
|
/**
|
|
669
866
|
* RenewAire CORES API
|
|
670
867
|
*
|
|
@@ -701,13 +898,16 @@ interface ResetPasswordCommand {
|
|
|
701
898
|
* https://openapi-generator.tech
|
|
702
899
|
* Do not edit the class manually.
|
|
703
900
|
*/
|
|
901
|
+
|
|
704
902
|
/**
|
|
705
903
|
* RSD region document DTO for query RenewAire.Cores.UseCases.RsdRegions.GetRsdRegion.GetRsdRegionQuery.
|
|
706
904
|
*/
|
|
707
905
|
interface RsdRegionDocumentDto {
|
|
708
906
|
id: object;
|
|
709
|
-
|
|
710
|
-
|
|
907
|
+
/**
|
|
908
|
+
* Contains information about file.
|
|
909
|
+
*/
|
|
910
|
+
file: FileDto;
|
|
711
911
|
}
|
|
712
912
|
|
|
713
913
|
/**
|
|
@@ -823,6 +1023,24 @@ interface SaveRepTerritoryDto {
|
|
|
823
1023
|
rsdRegionId: object;
|
|
824
1024
|
}
|
|
825
1025
|
|
|
1026
|
+
/**
|
|
1027
|
+
* RenewAire CORES API
|
|
1028
|
+
*
|
|
1029
|
+
* Contact: renewaire@saritasa.com
|
|
1030
|
+
*
|
|
1031
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1032
|
+
* https://openapi-generator.tech
|
|
1033
|
+
* Do not edit the class manually.
|
|
1034
|
+
*/
|
|
1035
|
+
/**
|
|
1036
|
+
* Save REP territory location DTO.
|
|
1037
|
+
*/
|
|
1038
|
+
interface SaveRepTerritoryLocationDto {
|
|
1039
|
+
name: string;
|
|
1040
|
+
allCounties: boolean;
|
|
1041
|
+
regions: Array<object>;
|
|
1042
|
+
}
|
|
1043
|
+
|
|
826
1044
|
/**
|
|
827
1045
|
* RenewAire CORES API
|
|
828
1046
|
*
|
|
@@ -850,6 +1068,105 @@ interface SaveRepTerritoryRepContactDto {
|
|
|
850
1068
|
address: AddressDto;
|
|
851
1069
|
}
|
|
852
1070
|
|
|
1071
|
+
/**
|
|
1072
|
+
* RenewAire CORES API
|
|
1073
|
+
*
|
|
1074
|
+
* Contact: renewaire@saritasa.com
|
|
1075
|
+
*
|
|
1076
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1077
|
+
* https://openapi-generator.tech
|
|
1078
|
+
* Do not edit the class manually.
|
|
1079
|
+
*/
|
|
1080
|
+
/**
|
|
1081
|
+
* DTO for RenewAire.Cores.Domain.Temperature.
|
|
1082
|
+
*/
|
|
1083
|
+
interface TemperatureDto {
|
|
1084
|
+
celsius: number;
|
|
1085
|
+
fahrenheit: number;
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1088
|
+
/**
|
|
1089
|
+
* RenewAire CORES API
|
|
1090
|
+
*
|
|
1091
|
+
* Contact: renewaire@saritasa.com
|
|
1092
|
+
*
|
|
1093
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1094
|
+
* https://openapi-generator.tech
|
|
1095
|
+
* Do not edit the class manually.
|
|
1096
|
+
*/
|
|
1097
|
+
|
|
1098
|
+
/**
|
|
1099
|
+
* User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
1100
|
+
*/
|
|
1101
|
+
interface UserDesignWeatherConditionDto {
|
|
1102
|
+
/**
|
|
1103
|
+
* DTO for RenewAire.Cores.Domain.Temperature.
|
|
1104
|
+
*/
|
|
1105
|
+
dryBulb: TemperatureDto;
|
|
1106
|
+
/**
|
|
1107
|
+
* DTO for RenewAire.Cores.Domain.Temperature.
|
|
1108
|
+
*/
|
|
1109
|
+
wetBulb: TemperatureDto;
|
|
1110
|
+
relativeHumidity: number;
|
|
1111
|
+
/**
|
|
1112
|
+
* DesignWeatherMode<br />0 = RelativeHumidity<br />1 = WetBulb
|
|
1113
|
+
*/
|
|
1114
|
+
designWeatherMode: UserDesignWeatherConditionDtoDesignWeatherModeEnum;
|
|
1115
|
+
}
|
|
1116
|
+
declare enum UserDesignWeatherConditionDtoDesignWeatherModeEnum {
|
|
1117
|
+
RelativeHumidity = "RelativeHumidity",
|
|
1118
|
+
WetBulb = "WetBulb"
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
/**
|
|
1122
|
+
* RenewAire CORES API
|
|
1123
|
+
*
|
|
1124
|
+
* Contact: renewaire@saritasa.com
|
|
1125
|
+
*
|
|
1126
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1127
|
+
* https://openapi-generator.tech
|
|
1128
|
+
* Do not edit the class manually.
|
|
1129
|
+
*/
|
|
1130
|
+
|
|
1131
|
+
/**
|
|
1132
|
+
* DTO to save RenewAire.Cores.Domain.Users.UserDesignConditions.
|
|
1133
|
+
*/
|
|
1134
|
+
interface SaveUserDesignConditionsDto {
|
|
1135
|
+
userId: number;
|
|
1136
|
+
weatherStationState: string;
|
|
1137
|
+
weatherStation: string;
|
|
1138
|
+
coolingPercentileDay: number;
|
|
1139
|
+
heatingPercentileDay: number;
|
|
1140
|
+
/**
|
|
1141
|
+
* CoolingDesignBasis<br />0 = Cooling<br />1 = Dehumidification
|
|
1142
|
+
*/
|
|
1143
|
+
coolingDesignBasis: SaveUserDesignConditionsDtoCoolingDesignBasisEnum;
|
|
1144
|
+
/**
|
|
1145
|
+
* DTO for RenewAire.Cores.Domain.Distance.
|
|
1146
|
+
*/
|
|
1147
|
+
elevation: DistanceDto;
|
|
1148
|
+
/**
|
|
1149
|
+
* User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
1150
|
+
*/
|
|
1151
|
+
summerOutsideAir: UserDesignWeatherConditionDto;
|
|
1152
|
+
/**
|
|
1153
|
+
* User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
1154
|
+
*/
|
|
1155
|
+
summerReturnAir: UserDesignWeatherConditionDto;
|
|
1156
|
+
/**
|
|
1157
|
+
* User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
1158
|
+
*/
|
|
1159
|
+
winterOutsideAir: UserDesignWeatherConditionDto;
|
|
1160
|
+
/**
|
|
1161
|
+
* User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
1162
|
+
*/
|
|
1163
|
+
winterReturnAir: UserDesignWeatherConditionDto;
|
|
1164
|
+
}
|
|
1165
|
+
declare enum SaveUserDesignConditionsDtoCoolingDesignBasisEnum {
|
|
1166
|
+
Cooling = "Cooling",
|
|
1167
|
+
Dehumidification = "Dehumidification"
|
|
1168
|
+
}
|
|
1169
|
+
|
|
853
1170
|
/**
|
|
854
1171
|
* RenewAire CORES API
|
|
855
1172
|
*
|
|
@@ -985,17 +1302,15 @@ interface SearchRepTerritoryDtoPagedListMetadataDto {
|
|
|
985
1302
|
*/
|
|
986
1303
|
|
|
987
1304
|
/**
|
|
988
|
-
*
|
|
1305
|
+
* Search REP territory location DTO.
|
|
989
1306
|
*/
|
|
990
|
-
interface
|
|
1307
|
+
interface SearchRepTerritoryLocationDto {
|
|
991
1308
|
id: object;
|
|
992
1309
|
name: string;
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
rsdUsers: Array<RsdRegionUserDto>;
|
|
998
|
-
repTerritories: Array<RsdRegionRepTerritoryDto>;
|
|
1310
|
+
repTerritoryId: object;
|
|
1311
|
+
repTerritoryName: string;
|
|
1312
|
+
allCounties: boolean;
|
|
1313
|
+
regions: Array<RegionDto>;
|
|
999
1314
|
}
|
|
1000
1315
|
|
|
1001
1316
|
/**
|
|
@@ -1008,9 +1323,9 @@ interface SearchRsdRegionDto {
|
|
|
1008
1323
|
* Do not edit the class manually.
|
|
1009
1324
|
*/
|
|
1010
1325
|
|
|
1011
|
-
interface
|
|
1326
|
+
interface SearchRepTerritoryLocationDtoPagedListMetadataDto {
|
|
1012
1327
|
metadata: PagedListMetadata;
|
|
1013
|
-
items: Array<
|
|
1328
|
+
items: Array<SearchRepTerritoryLocationDto>;
|
|
1014
1329
|
}
|
|
1015
1330
|
|
|
1016
1331
|
/**
|
|
@@ -1022,14 +1337,53 @@ interface SearchRsdRegionDtoPagedListMetadataDto {
|
|
|
1022
1337
|
* https://openapi-generator.tech
|
|
1023
1338
|
* Do not edit the class manually.
|
|
1024
1339
|
*/
|
|
1025
|
-
interface TotalCountListMetadata {
|
|
1026
|
-
totalCount: number;
|
|
1027
|
-
}
|
|
1028
1340
|
|
|
1029
1341
|
/**
|
|
1030
|
-
*
|
|
1031
|
-
|
|
1032
|
-
|
|
1342
|
+
* DTO for searching RenewAire.Cores.Domain.Users.RsdRegion.
|
|
1343
|
+
*/
|
|
1344
|
+
interface SearchRsdRegionDto {
|
|
1345
|
+
id: object;
|
|
1346
|
+
name: string;
|
|
1347
|
+
/**
|
|
1348
|
+
* Active if not removed.
|
|
1349
|
+
*/
|
|
1350
|
+
isActive: boolean;
|
|
1351
|
+
rsdUsers: Array<RsdRegionUserDto>;
|
|
1352
|
+
repTerritories: Array<RsdRegionRepTerritoryDto>;
|
|
1353
|
+
}
|
|
1354
|
+
|
|
1355
|
+
/**
|
|
1356
|
+
* RenewAire CORES API
|
|
1357
|
+
*
|
|
1358
|
+
* Contact: renewaire@saritasa.com
|
|
1359
|
+
*
|
|
1360
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1361
|
+
* https://openapi-generator.tech
|
|
1362
|
+
* Do not edit the class manually.
|
|
1363
|
+
*/
|
|
1364
|
+
|
|
1365
|
+
interface SearchRsdRegionDtoPagedListMetadataDto {
|
|
1366
|
+
metadata: PagedListMetadata;
|
|
1367
|
+
items: Array<SearchRsdRegionDto>;
|
|
1368
|
+
}
|
|
1369
|
+
|
|
1370
|
+
/**
|
|
1371
|
+
* RenewAire CORES API
|
|
1372
|
+
*
|
|
1373
|
+
* Contact: renewaire@saritasa.com
|
|
1374
|
+
*
|
|
1375
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1376
|
+
* https://openapi-generator.tech
|
|
1377
|
+
* Do not edit the class manually.
|
|
1378
|
+
*/
|
|
1379
|
+
interface TotalCountListMetadata {
|
|
1380
|
+
totalCount: number;
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
/**
|
|
1384
|
+
* RenewAire CORES API
|
|
1385
|
+
*
|
|
1386
|
+
* Contact: renewaire@saritasa.com
|
|
1033
1387
|
*
|
|
1034
1388
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1035
1389
|
* https://openapi-generator.tech
|
|
@@ -1053,6 +1407,78 @@ interface UpdateRsdRegionDto {
|
|
|
1053
1407
|
rsdUserIds: Array<number>;
|
|
1054
1408
|
}
|
|
1055
1409
|
|
|
1410
|
+
/**
|
|
1411
|
+
* RenewAire CORES API
|
|
1412
|
+
*
|
|
1413
|
+
* Contact: renewaire@saritasa.com
|
|
1414
|
+
*
|
|
1415
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1416
|
+
* https://openapi-generator.tech
|
|
1417
|
+
* Do not edit the class manually.
|
|
1418
|
+
*/
|
|
1419
|
+
/**
|
|
1420
|
+
* The result of creating a pre-signed URL to uploading file to the BLOB storage.
|
|
1421
|
+
*/
|
|
1422
|
+
interface UploadUrlResult {
|
|
1423
|
+
/**
|
|
1424
|
+
* Temporary file id.
|
|
1425
|
+
*/
|
|
1426
|
+
fileId: string;
|
|
1427
|
+
/**
|
|
1428
|
+
* Pre-signed URL to file.
|
|
1429
|
+
*/
|
|
1430
|
+
preSignedUrl: string;
|
|
1431
|
+
}
|
|
1432
|
+
|
|
1433
|
+
/**
|
|
1434
|
+
* RenewAire CORES API
|
|
1435
|
+
*
|
|
1436
|
+
* Contact: renewaire@saritasa.com
|
|
1437
|
+
*
|
|
1438
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1439
|
+
* https://openapi-generator.tech
|
|
1440
|
+
* Do not edit the class manually.
|
|
1441
|
+
*/
|
|
1442
|
+
|
|
1443
|
+
/**
|
|
1444
|
+
* User design condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
1445
|
+
*/
|
|
1446
|
+
interface UserDesignConditionsDto {
|
|
1447
|
+
userId: number;
|
|
1448
|
+
weatherStationState: string;
|
|
1449
|
+
weatherStation: string;
|
|
1450
|
+
coolingPercentileDay: number;
|
|
1451
|
+
heatingPercentileDay: number;
|
|
1452
|
+
/**
|
|
1453
|
+
* CoolingDesignBasis<br />0 = Cooling<br />1 = Dehumidification
|
|
1454
|
+
*/
|
|
1455
|
+
coolingDesignBasis: UserDesignConditionsDtoCoolingDesignBasisEnum;
|
|
1456
|
+
/**
|
|
1457
|
+
* DTO for RenewAire.Cores.Domain.Distance.
|
|
1458
|
+
*/
|
|
1459
|
+
elevation: DistanceDto;
|
|
1460
|
+
/**
|
|
1461
|
+
* User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
1462
|
+
*/
|
|
1463
|
+
summerOutsideAir: UserDesignWeatherConditionDto;
|
|
1464
|
+
/**
|
|
1465
|
+
* User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
1466
|
+
*/
|
|
1467
|
+
summerReturnAir: UserDesignWeatherConditionDto;
|
|
1468
|
+
/**
|
|
1469
|
+
* User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
1470
|
+
*/
|
|
1471
|
+
winterOutsideAir: UserDesignWeatherConditionDto;
|
|
1472
|
+
/**
|
|
1473
|
+
* User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
1474
|
+
*/
|
|
1475
|
+
winterReturnAir: UserDesignWeatherConditionDto;
|
|
1476
|
+
}
|
|
1477
|
+
declare enum UserDesignConditionsDtoCoolingDesignBasisEnum {
|
|
1478
|
+
Cooling = "Cooling",
|
|
1479
|
+
Dehumidification = "Dehumidification"
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1056
1482
|
/**
|
|
1057
1483
|
* RenewAire CORES API
|
|
1058
1484
|
*
|
|
@@ -1673,6 +2099,10 @@ declare class RepContactsApiService extends BaseService implements RepContactsAp
|
|
|
1673
2099
|
interface RepTerritoriesCreateRepTerritoryRequestParams {
|
|
1674
2100
|
saveRepTerritoryDto?: SaveRepTerritoryDto;
|
|
1675
2101
|
}
|
|
2102
|
+
interface RepTerritoriesCreateRepTerritoryLocationRequestParams {
|
|
2103
|
+
repTerritoryId: number;
|
|
2104
|
+
saveRepTerritoryLocationDto?: SaveRepTerritoryLocationDto;
|
|
2105
|
+
}
|
|
1676
2106
|
interface RepTerritoriesCreateRepTerritoryRepContactRequestParams {
|
|
1677
2107
|
repTerritoryId: number;
|
|
1678
2108
|
saveRepTerritoryRepContactDto?: SaveRepTerritoryRepContactDto;
|
|
@@ -1704,6 +2134,12 @@ interface RepTerritoriesApiServiceInterface {
|
|
|
1704
2134
|
* @param requestParameters
|
|
1705
2135
|
*/
|
|
1706
2136
|
repTerritoriesCreateRepTerritory(requestParameters: RepTerritoriesCreateRepTerritoryRequestParams, extraHttpRequestParams?: any): Observable<object>;
|
|
2137
|
+
/**
|
|
2138
|
+
* Create REP territory location.
|
|
2139
|
+
*
|
|
2140
|
+
* @param requestParameters
|
|
2141
|
+
*/
|
|
2142
|
+
repTerritoriesCreateRepTerritoryLocation(requestParameters: RepTerritoriesCreateRepTerritoryLocationRequestParams, extraHttpRequestParams?: any): Observable<object>;
|
|
1707
2143
|
/**
|
|
1708
2144
|
* Create REP territory REP contact.
|
|
1709
2145
|
*
|
|
@@ -1760,6 +2196,27 @@ declare class RepTerritoriesApiService extends BaseService implements RepTerrito
|
|
|
1760
2196
|
context?: HttpContext;
|
|
1761
2197
|
transferCache?: boolean;
|
|
1762
2198
|
}): Observable<HttpEvent<object>>;
|
|
2199
|
+
/**
|
|
2200
|
+
* Create REP territory location.
|
|
2201
|
+
* @param requestParameters
|
|
2202
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2203
|
+
* @param reportProgress flag to report request and response progress.
|
|
2204
|
+
*/
|
|
2205
|
+
repTerritoriesCreateRepTerritoryLocation(requestParameters: RepTerritoriesCreateRepTerritoryLocationRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
2206
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2207
|
+
context?: HttpContext;
|
|
2208
|
+
transferCache?: boolean;
|
|
2209
|
+
}): Observable<object>;
|
|
2210
|
+
repTerritoriesCreateRepTerritoryLocation(requestParameters: RepTerritoriesCreateRepTerritoryLocationRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
2211
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2212
|
+
context?: HttpContext;
|
|
2213
|
+
transferCache?: boolean;
|
|
2214
|
+
}): Observable<HttpResponse<object>>;
|
|
2215
|
+
repTerritoriesCreateRepTerritoryLocation(requestParameters: RepTerritoriesCreateRepTerritoryLocationRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
2216
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2217
|
+
context?: HttpContext;
|
|
2218
|
+
transferCache?: boolean;
|
|
2219
|
+
}): Observable<HttpEvent<object>>;
|
|
1763
2220
|
/**
|
|
1764
2221
|
* Create REP territory REP contact.
|
|
1765
2222
|
* @param requestParameters
|
|
@@ -1879,15 +2336,178 @@ declare class RepTerritoriesApiService extends BaseService implements RepTerrito
|
|
|
1879
2336
|
* Do not edit the class manually.
|
|
1880
2337
|
*/
|
|
1881
2338
|
|
|
2339
|
+
interface RepTerritoryLocationsGetRepTerritoryLocationRequestParams {
|
|
2340
|
+
repTerritoryLocationId: number;
|
|
2341
|
+
}
|
|
2342
|
+
interface RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams {
|
|
2343
|
+
repTerritoryLocationId: number;
|
|
2344
|
+
}
|
|
2345
|
+
interface RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams {
|
|
2346
|
+
name?: string;
|
|
2347
|
+
repTerritoryId?: object | null;
|
|
2348
|
+
repName?: string;
|
|
2349
|
+
allCounties?: boolean;
|
|
2350
|
+
orderBy?: string;
|
|
2351
|
+
page?: number;
|
|
2352
|
+
pageSize?: number;
|
|
2353
|
+
}
|
|
2354
|
+
interface RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams {
|
|
2355
|
+
repTerritoryLocationId: number;
|
|
2356
|
+
saveRepTerritoryLocationDto?: SaveRepTerritoryLocationDto;
|
|
2357
|
+
}
|
|
2358
|
+
interface RepTerritoryLocationsApiServiceInterface {
|
|
2359
|
+
defaultHeaders: HttpHeaders;
|
|
2360
|
+
configuration: Configuration;
|
|
2361
|
+
/**
|
|
2362
|
+
* Get REP territory location.
|
|
2363
|
+
*
|
|
2364
|
+
* @param requestParameters
|
|
2365
|
+
*/
|
|
2366
|
+
repTerritoryLocationsGetRepTerritoryLocation(requestParameters: RepTerritoryLocationsGetRepTerritoryLocationRequestParams, extraHttpRequestParams?: any): Observable<RepTerritoryLocationDto>;
|
|
2367
|
+
/**
|
|
2368
|
+
* Remove REP territory location.
|
|
2369
|
+
*
|
|
2370
|
+
* @param requestParameters
|
|
2371
|
+
*/
|
|
2372
|
+
repTerritoryLocationsRemoveRepTerritoryLocation(requestParameters: RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
2373
|
+
/**
|
|
2374
|
+
* Search REP territory locations.
|
|
2375
|
+
*
|
|
2376
|
+
* @param requestParameters
|
|
2377
|
+
*/
|
|
2378
|
+
repTerritoryLocationsSearchRepTerritoryLocations(requestParameters: RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams, extraHttpRequestParams?: any): Observable<SearchRepTerritoryLocationDtoPagedListMetadataDto>;
|
|
2379
|
+
/**
|
|
2380
|
+
* Update REP territory location.
|
|
2381
|
+
*
|
|
2382
|
+
* @param requestParameters
|
|
2383
|
+
*/
|
|
2384
|
+
repTerritoryLocationsUpdateRepTerritoryLocation(requestParameters: RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
2385
|
+
}
|
|
2386
|
+
|
|
2387
|
+
declare class RepTerritoryLocationsApiService extends BaseService implements RepTerritoryLocationsApiServiceInterface {
|
|
2388
|
+
protected httpClient: HttpClient;
|
|
2389
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
2390
|
+
/**
|
|
2391
|
+
* Get REP territory location.
|
|
2392
|
+
* @param requestParameters
|
|
2393
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2394
|
+
* @param reportProgress flag to report request and response progress.
|
|
2395
|
+
*/
|
|
2396
|
+
repTerritoryLocationsGetRepTerritoryLocation(requestParameters: RepTerritoryLocationsGetRepTerritoryLocationRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
2397
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2398
|
+
context?: HttpContext;
|
|
2399
|
+
transferCache?: boolean;
|
|
2400
|
+
}): Observable<RepTerritoryLocationDto>;
|
|
2401
|
+
repTerritoryLocationsGetRepTerritoryLocation(requestParameters: RepTerritoryLocationsGetRepTerritoryLocationRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
2402
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2403
|
+
context?: HttpContext;
|
|
2404
|
+
transferCache?: boolean;
|
|
2405
|
+
}): Observable<HttpResponse<RepTerritoryLocationDto>>;
|
|
2406
|
+
repTerritoryLocationsGetRepTerritoryLocation(requestParameters: RepTerritoryLocationsGetRepTerritoryLocationRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
2407
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2408
|
+
context?: HttpContext;
|
|
2409
|
+
transferCache?: boolean;
|
|
2410
|
+
}): Observable<HttpEvent<RepTerritoryLocationDto>>;
|
|
2411
|
+
/**
|
|
2412
|
+
* Remove REP territory location.
|
|
2413
|
+
* @param requestParameters
|
|
2414
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2415
|
+
* @param reportProgress flag to report request and response progress.
|
|
2416
|
+
*/
|
|
2417
|
+
repTerritoryLocationsRemoveRepTerritoryLocation(requestParameters: RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
2418
|
+
httpHeaderAccept?: undefined;
|
|
2419
|
+
context?: HttpContext;
|
|
2420
|
+
transferCache?: boolean;
|
|
2421
|
+
}): Observable<any>;
|
|
2422
|
+
repTerritoryLocationsRemoveRepTerritoryLocation(requestParameters: RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
2423
|
+
httpHeaderAccept?: undefined;
|
|
2424
|
+
context?: HttpContext;
|
|
2425
|
+
transferCache?: boolean;
|
|
2426
|
+
}): Observable<HttpResponse<any>>;
|
|
2427
|
+
repTerritoryLocationsRemoveRepTerritoryLocation(requestParameters: RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
2428
|
+
httpHeaderAccept?: undefined;
|
|
2429
|
+
context?: HttpContext;
|
|
2430
|
+
transferCache?: boolean;
|
|
2431
|
+
}): Observable<HttpEvent<any>>;
|
|
2432
|
+
/**
|
|
2433
|
+
* Search REP territory locations.
|
|
2434
|
+
* @param requestParameters
|
|
2435
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2436
|
+
* @param reportProgress flag to report request and response progress.
|
|
2437
|
+
*/
|
|
2438
|
+
repTerritoryLocationsSearchRepTerritoryLocations(requestParameters?: RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
2439
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2440
|
+
context?: HttpContext;
|
|
2441
|
+
transferCache?: boolean;
|
|
2442
|
+
}): Observable<SearchRepTerritoryLocationDtoPagedListMetadataDto>;
|
|
2443
|
+
repTerritoryLocationsSearchRepTerritoryLocations(requestParameters?: RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
2444
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2445
|
+
context?: HttpContext;
|
|
2446
|
+
transferCache?: boolean;
|
|
2447
|
+
}): Observable<HttpResponse<SearchRepTerritoryLocationDtoPagedListMetadataDto>>;
|
|
2448
|
+
repTerritoryLocationsSearchRepTerritoryLocations(requestParameters?: RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
2449
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2450
|
+
context?: HttpContext;
|
|
2451
|
+
transferCache?: boolean;
|
|
2452
|
+
}): Observable<HttpEvent<SearchRepTerritoryLocationDtoPagedListMetadataDto>>;
|
|
2453
|
+
/**
|
|
2454
|
+
* Update REP territory location.
|
|
2455
|
+
* @param requestParameters
|
|
2456
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2457
|
+
* @param reportProgress flag to report request and response progress.
|
|
2458
|
+
*/
|
|
2459
|
+
repTerritoryLocationsUpdateRepTerritoryLocation(requestParameters: RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
2460
|
+
httpHeaderAccept?: undefined;
|
|
2461
|
+
context?: HttpContext;
|
|
2462
|
+
transferCache?: boolean;
|
|
2463
|
+
}): Observable<any>;
|
|
2464
|
+
repTerritoryLocationsUpdateRepTerritoryLocation(requestParameters: RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
2465
|
+
httpHeaderAccept?: undefined;
|
|
2466
|
+
context?: HttpContext;
|
|
2467
|
+
transferCache?: boolean;
|
|
2468
|
+
}): Observable<HttpResponse<any>>;
|
|
2469
|
+
repTerritoryLocationsUpdateRepTerritoryLocation(requestParameters: RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
2470
|
+
httpHeaderAccept?: undefined;
|
|
2471
|
+
context?: HttpContext;
|
|
2472
|
+
transferCache?: boolean;
|
|
2473
|
+
}): Observable<HttpEvent<any>>;
|
|
2474
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RepTerritoryLocationsApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
2475
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RepTerritoryLocationsApiService>;
|
|
2476
|
+
}
|
|
2477
|
+
|
|
2478
|
+
/**
|
|
2479
|
+
* RenewAire CORES API
|
|
2480
|
+
*
|
|
2481
|
+
* Contact: renewaire@saritasa.com
|
|
2482
|
+
*
|
|
2483
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2484
|
+
* https://openapi-generator.tech
|
|
2485
|
+
* Do not edit the class manually.
|
|
2486
|
+
*/
|
|
2487
|
+
|
|
2488
|
+
interface RsdRegionsCreateDocumentDownloadUrlRequestParams {
|
|
2489
|
+
rsdRegionId: number;
|
|
2490
|
+
documentId: number;
|
|
2491
|
+
}
|
|
2492
|
+
interface RsdRegionsCreateDocumentUploadUrlRequestParams {
|
|
2493
|
+
createUploadUrlCommand?: CreateUploadUrlCommand;
|
|
2494
|
+
}
|
|
1882
2495
|
interface RsdRegionsCreateRsdRegionRequestParams {
|
|
1883
2496
|
createRsdRegionDto?: CreateRsdRegionDto;
|
|
1884
2497
|
}
|
|
2498
|
+
interface RsdRegionsCreateRsdRegionDocumentsRequestParams {
|
|
2499
|
+
id: number;
|
|
2500
|
+
createDocumentsDto?: CreateDocumentsDto;
|
|
2501
|
+
}
|
|
1885
2502
|
interface RsdRegionsGetRsdRegionRequestParams {
|
|
1886
2503
|
id: number;
|
|
1887
2504
|
}
|
|
1888
2505
|
interface RsdRegionsRemoveRsdRegionRequestParams {
|
|
1889
2506
|
id: number;
|
|
1890
2507
|
}
|
|
2508
|
+
interface RsdRegionsRemoveRsdRegionDocumentsRequestParams {
|
|
2509
|
+
removeDocumentsCommand?: RemoveDocumentsCommand;
|
|
2510
|
+
}
|
|
1891
2511
|
interface RsdRegionsSearchRsdRegionsRequestParams {
|
|
1892
2512
|
name?: string;
|
|
1893
2513
|
isActive?: boolean;
|
|
@@ -1903,12 +2523,30 @@ interface RsdRegionsUpdateRsdRegionRequestParams {
|
|
|
1903
2523
|
interface RsdRegionsApiServiceInterface {
|
|
1904
2524
|
defaultHeaders: HttpHeaders;
|
|
1905
2525
|
configuration: Configuration;
|
|
2526
|
+
/**
|
|
2527
|
+
* Generate cloud URL for RSD region document uploading.
|
|
2528
|
+
*
|
|
2529
|
+
* @param requestParameters
|
|
2530
|
+
*/
|
|
2531
|
+
rsdRegionsCreateDocumentDownloadUrl(requestParameters: RsdRegionsCreateDocumentDownloadUrlRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
2532
|
+
/**
|
|
2533
|
+
* Generate cloud URL for RSD region document uploading.
|
|
2534
|
+
*
|
|
2535
|
+
* @param requestParameters
|
|
2536
|
+
*/
|
|
2537
|
+
rsdRegionsCreateDocumentUploadUrl(requestParameters: RsdRegionsCreateDocumentUploadUrlRequestParams, extraHttpRequestParams?: any): Observable<UploadUrlResult>;
|
|
1906
2538
|
/**
|
|
1907
2539
|
* Create RSD region.
|
|
1908
2540
|
*
|
|
1909
2541
|
* @param requestParameters
|
|
1910
2542
|
*/
|
|
1911
2543
|
rsdRegionsCreateRsdRegion(requestParameters: RsdRegionsCreateRsdRegionRequestParams, extraHttpRequestParams?: any): Observable<object>;
|
|
2544
|
+
/**
|
|
2545
|
+
* Create RSD region documents.
|
|
2546
|
+
*
|
|
2547
|
+
* @param requestParameters
|
|
2548
|
+
*/
|
|
2549
|
+
rsdRegionsCreateRsdRegionDocuments(requestParameters: RsdRegionsCreateRsdRegionDocumentsRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
1912
2550
|
/**
|
|
1913
2551
|
* Get RSD region by id.
|
|
1914
2552
|
*
|
|
@@ -1921,6 +2559,12 @@ interface RsdRegionsApiServiceInterface {
|
|
|
1921
2559
|
* @param requestParameters
|
|
1922
2560
|
*/
|
|
1923
2561
|
rsdRegionsRemoveRsdRegion(requestParameters: RsdRegionsRemoveRsdRegionRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
2562
|
+
/**
|
|
2563
|
+
* Remove RSD region documents.
|
|
2564
|
+
*
|
|
2565
|
+
* @param requestParameters
|
|
2566
|
+
*/
|
|
2567
|
+
rsdRegionsRemoveRsdRegionDocuments(requestParameters: RsdRegionsRemoveRsdRegionDocumentsRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
1924
2568
|
/**
|
|
1925
2569
|
* Search RSD regions.
|
|
1926
2570
|
*
|
|
@@ -1938,6 +2582,48 @@ interface RsdRegionsApiServiceInterface {
|
|
|
1938
2582
|
declare class RsdRegionsApiService extends BaseService implements RsdRegionsApiServiceInterface {
|
|
1939
2583
|
protected httpClient: HttpClient;
|
|
1940
2584
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
2585
|
+
/**
|
|
2586
|
+
* Generate cloud URL for RSD region document uploading.
|
|
2587
|
+
* @param requestParameters
|
|
2588
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2589
|
+
* @param reportProgress flag to report request and response progress.
|
|
2590
|
+
*/
|
|
2591
|
+
rsdRegionsCreateDocumentDownloadUrl(requestParameters: RsdRegionsCreateDocumentDownloadUrlRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
2592
|
+
httpHeaderAccept?: undefined;
|
|
2593
|
+
context?: HttpContext;
|
|
2594
|
+
transferCache?: boolean;
|
|
2595
|
+
}): Observable<any>;
|
|
2596
|
+
rsdRegionsCreateDocumentDownloadUrl(requestParameters: RsdRegionsCreateDocumentDownloadUrlRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
2597
|
+
httpHeaderAccept?: undefined;
|
|
2598
|
+
context?: HttpContext;
|
|
2599
|
+
transferCache?: boolean;
|
|
2600
|
+
}): Observable<HttpResponse<any>>;
|
|
2601
|
+
rsdRegionsCreateDocumentDownloadUrl(requestParameters: RsdRegionsCreateDocumentDownloadUrlRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
2602
|
+
httpHeaderAccept?: undefined;
|
|
2603
|
+
context?: HttpContext;
|
|
2604
|
+
transferCache?: boolean;
|
|
2605
|
+
}): Observable<HttpEvent<any>>;
|
|
2606
|
+
/**
|
|
2607
|
+
* Generate cloud URL for RSD region document uploading.
|
|
2608
|
+
* @param requestParameters
|
|
2609
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2610
|
+
* @param reportProgress flag to report request and response progress.
|
|
2611
|
+
*/
|
|
2612
|
+
rsdRegionsCreateDocumentUploadUrl(requestParameters?: RsdRegionsCreateDocumentUploadUrlRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
2613
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2614
|
+
context?: HttpContext;
|
|
2615
|
+
transferCache?: boolean;
|
|
2616
|
+
}): Observable<UploadUrlResult>;
|
|
2617
|
+
rsdRegionsCreateDocumentUploadUrl(requestParameters?: RsdRegionsCreateDocumentUploadUrlRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
2618
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2619
|
+
context?: HttpContext;
|
|
2620
|
+
transferCache?: boolean;
|
|
2621
|
+
}): Observable<HttpResponse<UploadUrlResult>>;
|
|
2622
|
+
rsdRegionsCreateDocumentUploadUrl(requestParameters?: RsdRegionsCreateDocumentUploadUrlRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
2623
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2624
|
+
context?: HttpContext;
|
|
2625
|
+
transferCache?: boolean;
|
|
2626
|
+
}): Observable<HttpEvent<UploadUrlResult>>;
|
|
1941
2627
|
/**
|
|
1942
2628
|
* Create RSD region.
|
|
1943
2629
|
* @param requestParameters
|
|
@@ -1959,6 +2645,27 @@ declare class RsdRegionsApiService extends BaseService implements RsdRegionsApiS
|
|
|
1959
2645
|
context?: HttpContext;
|
|
1960
2646
|
transferCache?: boolean;
|
|
1961
2647
|
}): Observable<HttpEvent<object>>;
|
|
2648
|
+
/**
|
|
2649
|
+
* Create RSD region documents.
|
|
2650
|
+
* @param requestParameters
|
|
2651
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2652
|
+
* @param reportProgress flag to report request and response progress.
|
|
2653
|
+
*/
|
|
2654
|
+
rsdRegionsCreateRsdRegionDocuments(requestParameters: RsdRegionsCreateRsdRegionDocumentsRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
2655
|
+
httpHeaderAccept?: undefined;
|
|
2656
|
+
context?: HttpContext;
|
|
2657
|
+
transferCache?: boolean;
|
|
2658
|
+
}): Observable<any>;
|
|
2659
|
+
rsdRegionsCreateRsdRegionDocuments(requestParameters: RsdRegionsCreateRsdRegionDocumentsRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
2660
|
+
httpHeaderAccept?: undefined;
|
|
2661
|
+
context?: HttpContext;
|
|
2662
|
+
transferCache?: boolean;
|
|
2663
|
+
}): Observable<HttpResponse<any>>;
|
|
2664
|
+
rsdRegionsCreateRsdRegionDocuments(requestParameters: RsdRegionsCreateRsdRegionDocumentsRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
2665
|
+
httpHeaderAccept?: undefined;
|
|
2666
|
+
context?: HttpContext;
|
|
2667
|
+
transferCache?: boolean;
|
|
2668
|
+
}): Observable<HttpEvent<any>>;
|
|
1962
2669
|
/**
|
|
1963
2670
|
* Get RSD region by id.
|
|
1964
2671
|
* @param requestParameters
|
|
@@ -2001,6 +2708,27 @@ declare class RsdRegionsApiService extends BaseService implements RsdRegionsApiS
|
|
|
2001
2708
|
context?: HttpContext;
|
|
2002
2709
|
transferCache?: boolean;
|
|
2003
2710
|
}): Observable<HttpEvent<any>>;
|
|
2711
|
+
/**
|
|
2712
|
+
* Remove RSD region documents.
|
|
2713
|
+
* @param requestParameters
|
|
2714
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2715
|
+
* @param reportProgress flag to report request and response progress.
|
|
2716
|
+
*/
|
|
2717
|
+
rsdRegionsRemoveRsdRegionDocuments(requestParameters?: RsdRegionsRemoveRsdRegionDocumentsRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
2718
|
+
httpHeaderAccept?: undefined;
|
|
2719
|
+
context?: HttpContext;
|
|
2720
|
+
transferCache?: boolean;
|
|
2721
|
+
}): Observable<any>;
|
|
2722
|
+
rsdRegionsRemoveRsdRegionDocuments(requestParameters?: RsdRegionsRemoveRsdRegionDocumentsRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
2723
|
+
httpHeaderAccept?: undefined;
|
|
2724
|
+
context?: HttpContext;
|
|
2725
|
+
transferCache?: boolean;
|
|
2726
|
+
}): Observable<HttpResponse<any>>;
|
|
2727
|
+
rsdRegionsRemoveRsdRegionDocuments(requestParameters?: RsdRegionsRemoveRsdRegionDocumentsRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
2728
|
+
httpHeaderAccept?: undefined;
|
|
2729
|
+
context?: HttpContext;
|
|
2730
|
+
transferCache?: boolean;
|
|
2731
|
+
}): Observable<HttpEvent<any>>;
|
|
2004
2732
|
/**
|
|
2005
2733
|
* Search RSD regions.
|
|
2006
2734
|
* @param requestParameters
|
|
@@ -2047,6 +2775,88 @@ declare class RsdRegionsApiService extends BaseService implements RsdRegionsApiS
|
|
|
2047
2775
|
static ɵprov: i0.ɵɵInjectableDeclaration<RsdRegionsApiService>;
|
|
2048
2776
|
}
|
|
2049
2777
|
|
|
2778
|
+
/**
|
|
2779
|
+
* RenewAire CORES API
|
|
2780
|
+
*
|
|
2781
|
+
* Contact: renewaire@saritasa.com
|
|
2782
|
+
*
|
|
2783
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2784
|
+
* https://openapi-generator.tech
|
|
2785
|
+
* Do not edit the class manually.
|
|
2786
|
+
*/
|
|
2787
|
+
|
|
2788
|
+
interface UserDesignConditionsGetProjectDesignConditionsRequestParams {
|
|
2789
|
+
userId: number;
|
|
2790
|
+
}
|
|
2791
|
+
interface UserDesignConditionsSaveProjectDesignConditionsRequestParams {
|
|
2792
|
+
saveUserDesignConditionsDto?: SaveUserDesignConditionsDto;
|
|
2793
|
+
}
|
|
2794
|
+
interface UserDesignConditionsApiServiceInterface {
|
|
2795
|
+
defaultHeaders: HttpHeaders;
|
|
2796
|
+
configuration: Configuration;
|
|
2797
|
+
/**
|
|
2798
|
+
* Get user design conditions.
|
|
2799
|
+
*
|
|
2800
|
+
* @param requestParameters
|
|
2801
|
+
*/
|
|
2802
|
+
userDesignConditionsGetProjectDesignConditions(requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams, extraHttpRequestParams?: any): Observable<UserDesignConditionsDto>;
|
|
2803
|
+
/**
|
|
2804
|
+
* Save user design conditions.
|
|
2805
|
+
*
|
|
2806
|
+
* @param requestParameters
|
|
2807
|
+
*/
|
|
2808
|
+
userDesignConditionsSaveProjectDesignConditions(requestParameters: UserDesignConditionsSaveProjectDesignConditionsRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
2809
|
+
}
|
|
2810
|
+
|
|
2811
|
+
declare class UserDesignConditionsApiService extends BaseService implements UserDesignConditionsApiServiceInterface {
|
|
2812
|
+
protected httpClient: HttpClient;
|
|
2813
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
2814
|
+
/**
|
|
2815
|
+
* Get user design conditions.
|
|
2816
|
+
* @param requestParameters
|
|
2817
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2818
|
+
* @param reportProgress flag to report request and response progress.
|
|
2819
|
+
*/
|
|
2820
|
+
userDesignConditionsGetProjectDesignConditions(requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
2821
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2822
|
+
context?: HttpContext;
|
|
2823
|
+
transferCache?: boolean;
|
|
2824
|
+
}): Observable<UserDesignConditionsDto>;
|
|
2825
|
+
userDesignConditionsGetProjectDesignConditions(requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
2826
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2827
|
+
context?: HttpContext;
|
|
2828
|
+
transferCache?: boolean;
|
|
2829
|
+
}): Observable<HttpResponse<UserDesignConditionsDto>>;
|
|
2830
|
+
userDesignConditionsGetProjectDesignConditions(requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
2831
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2832
|
+
context?: HttpContext;
|
|
2833
|
+
transferCache?: boolean;
|
|
2834
|
+
}): Observable<HttpEvent<UserDesignConditionsDto>>;
|
|
2835
|
+
/**
|
|
2836
|
+
* Save user design conditions.
|
|
2837
|
+
* @param requestParameters
|
|
2838
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2839
|
+
* @param reportProgress flag to report request and response progress.
|
|
2840
|
+
*/
|
|
2841
|
+
userDesignConditionsSaveProjectDesignConditions(requestParameters?: UserDesignConditionsSaveProjectDesignConditionsRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
2842
|
+
httpHeaderAccept?: undefined;
|
|
2843
|
+
context?: HttpContext;
|
|
2844
|
+
transferCache?: boolean;
|
|
2845
|
+
}): Observable<any>;
|
|
2846
|
+
userDesignConditionsSaveProjectDesignConditions(requestParameters?: UserDesignConditionsSaveProjectDesignConditionsRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
2847
|
+
httpHeaderAccept?: undefined;
|
|
2848
|
+
context?: HttpContext;
|
|
2849
|
+
transferCache?: boolean;
|
|
2850
|
+
}): Observable<HttpResponse<any>>;
|
|
2851
|
+
userDesignConditionsSaveProjectDesignConditions(requestParameters?: UserDesignConditionsSaveProjectDesignConditionsRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
2852
|
+
httpHeaderAccept?: undefined;
|
|
2853
|
+
context?: HttpContext;
|
|
2854
|
+
transferCache?: boolean;
|
|
2855
|
+
}): Observable<HttpEvent<any>>;
|
|
2856
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserDesignConditionsApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
2857
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UserDesignConditionsApiService>;
|
|
2858
|
+
}
|
|
2859
|
+
|
|
2050
2860
|
/**
|
|
2051
2861
|
* RenewAire CORES API
|
|
2052
2862
|
*
|
|
@@ -2063,7 +2873,7 @@ interface UsersConfirmEmailRequestParams {
|
|
|
2063
2873
|
interface UsersForgotPasswordRequestParams {
|
|
2064
2874
|
forgotPasswordCommand?: ForgotPasswordCommand;
|
|
2065
2875
|
}
|
|
2066
|
-
interface
|
|
2876
|
+
interface UsersGetRepContactsRequestParams {
|
|
2067
2877
|
userId: number;
|
|
2068
2878
|
}
|
|
2069
2879
|
interface UsersRegisterUserRequestParams {
|
|
@@ -2094,13 +2904,13 @@ interface UsersApiServiceInterface {
|
|
|
2094
2904
|
* Get current user REP contacts.
|
|
2095
2905
|
*
|
|
2096
2906
|
*/
|
|
2097
|
-
|
|
2907
|
+
usersGetCurrentRepContacts(extraHttpRequestParams?: any): Observable<RepTerritoryContactsDto>;
|
|
2098
2908
|
/**
|
|
2099
2909
|
* Get user REP contacts.
|
|
2100
2910
|
*
|
|
2101
2911
|
* @param requestParameters
|
|
2102
2912
|
*/
|
|
2103
|
-
|
|
2913
|
+
usersGetRepContacts(requestParameters: UsersGetRepContactsRequestParams, extraHttpRequestParams?: any): Observable<RepTerritoryContactsDto>;
|
|
2104
2914
|
/**
|
|
2105
2915
|
* Register user.
|
|
2106
2916
|
*
|
|
@@ -2171,17 +2981,17 @@ declare class UsersApiService extends BaseService implements UsersApiServiceInte
|
|
|
2171
2981
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2172
2982
|
* @param reportProgress flag to report request and response progress.
|
|
2173
2983
|
*/
|
|
2174
|
-
|
|
2984
|
+
usersGetCurrentRepContacts(observe?: "body", reportProgress?: boolean, options?: {
|
|
2175
2985
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2176
2986
|
context?: HttpContext;
|
|
2177
2987
|
transferCache?: boolean;
|
|
2178
2988
|
}): Observable<RepTerritoryContactsDto>;
|
|
2179
|
-
|
|
2989
|
+
usersGetCurrentRepContacts(observe?: "response", reportProgress?: boolean, options?: {
|
|
2180
2990
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2181
2991
|
context?: HttpContext;
|
|
2182
2992
|
transferCache?: boolean;
|
|
2183
2993
|
}): Observable<HttpResponse<RepTerritoryContactsDto>>;
|
|
2184
|
-
|
|
2994
|
+
usersGetCurrentRepContacts(observe?: "events", reportProgress?: boolean, options?: {
|
|
2185
2995
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2186
2996
|
context?: HttpContext;
|
|
2187
2997
|
transferCache?: boolean;
|
|
@@ -2192,17 +3002,17 @@ declare class UsersApiService extends BaseService implements UsersApiServiceInte
|
|
|
2192
3002
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2193
3003
|
* @param reportProgress flag to report request and response progress.
|
|
2194
3004
|
*/
|
|
2195
|
-
|
|
3005
|
+
usersGetRepContacts(requestParameters: UsersGetRepContactsRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
2196
3006
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2197
3007
|
context?: HttpContext;
|
|
2198
3008
|
transferCache?: boolean;
|
|
2199
3009
|
}): Observable<RepTerritoryContactsDto>;
|
|
2200
|
-
|
|
3010
|
+
usersGetRepContacts(requestParameters: UsersGetRepContactsRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
2201
3011
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2202
3012
|
context?: HttpContext;
|
|
2203
3013
|
transferCache?: boolean;
|
|
2204
3014
|
}): Observable<HttpResponse<RepTerritoryContactsDto>>;
|
|
2205
|
-
|
|
3015
|
+
usersGetRepContacts(requestParameters: UsersGetRepContactsRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
2206
3016
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2207
3017
|
context?: HttpContext;
|
|
2208
3018
|
transferCache?: boolean;
|
|
@@ -2274,7 +3084,7 @@ declare class UsersApiService extends BaseService implements UsersApiServiceInte
|
|
|
2274
3084
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsersApiService>;
|
|
2275
3085
|
}
|
|
2276
3086
|
|
|
2277
|
-
declare const APIS: (typeof AuthApiService | typeof PermissionBundlesApiService | typeof PermissionsApiService | typeof RegionsApiService | typeof RepContactsApiService | typeof RepTerritoriesApiService | typeof RsdRegionsApiService | typeof UsersApiService)[];
|
|
3087
|
+
declare const APIS: (typeof AuthApiService | typeof PermissionBundlesApiService | typeof PermissionsApiService | typeof RegionsApiService | typeof RepContactsApiService | typeof RepTerritoriesApiService | typeof RepTerritoryLocationsApiService | typeof RsdRegionsApiService | typeof UserDesignConditionsApiService | typeof UsersApiService)[];
|
|
2278
3088
|
|
|
2279
3089
|
declare const BASE_PATH: InjectionToken<string>;
|
|
2280
3090
|
declare const COLLECTION_FORMATS: {
|
|
@@ -2294,5 +3104,5 @@ declare class ApiModule {
|
|
|
2294
3104
|
|
|
2295
3105
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
2296
3106
|
|
|
2297
|
-
export { APIS, AddressCountry, AddressDtoCountryEnum, ApiModule, AuthApiService, BASE_PATH, COLLECTION_FORMATS, Configuration, Permission, PermissionBundlesApiService, PermissionsApiService, RegionLevel, RegionsApiService, RepContactsApiService, RepTerritoriesApiService, RsdRegionsApiService, SearchRegionDtoLevelEnum, UsersApiService, provideApi };
|
|
2298
|
-
export type { AddressDto, AuthApiServiceInterface, AuthAuthenticateRequestParams, AuthRefreshTokenRequestParams, CompanyInformationDto, ConfigurationParameters, ContactDto, CreateRsdRegionDto, DataFormat, DataType, EmailConfirmationTokenDto, ForgotPasswordCommand, Int32IdDto, LoginUserCommand, OffsetLimitListMetadata, PagedListMetadata, Param, ParamLocation, ParamStyle, PermissionBundleDto, PermissionBundlesApiServiceInterface, PermissionBundlesCreatePermissionBundleRequestParams, PermissionBundlesGetPermissionBundleRequestParams, PermissionBundlesRemovePermissionBundleRequestParams, PermissionBundlesRestorePermissionBundleRequestParams, PermissionBundlesSearchPermissionBundlesRequestParams, PermissionBundlesUpdatePermissionBundleRequestParams, PermissionDto, PermissionsApiServiceInterface, PhysicalAddressDto, RefreshTokenCommand, RegionsApiServiceInterface, RegionsSearchRegionsRequestParams, RepContactsApiServiceInterface, RepContactsGetRepTerritoryRepContactRequestParams, RepContactsRemoveRepTerritoryRepContactRequestParams, RepContactsUpdateRepTerritoryRepContactRequestParams, RepTerritoriesApiServiceInterface, RepTerritoriesCreateRepTerritoryRepContactRequestParams, RepTerritoriesCreateRepTerritoryRequestParams, RepTerritoriesGetRepTerritoryRequestParams, RepTerritoriesRemoveRepTerritoryRequestParams, RepTerritoriesSearchRepTerritoriesRequestParams, RepTerritoriesUpdateRepTerritoryRequestParams, RepTerritoryContactsDto, RepTerritoryDto, RepTerritoryRepContactDto, ResetPasswordCommand, RsdRegionDocumentDto, RsdRegionDto, RsdRegionRepTerritoryDto, RsdRegionUserDto, RsdRegionsApiServiceInterface, RsdRegionsCreateRsdRegionRequestParams, RsdRegionsGetRsdRegionRequestParams, RsdRegionsRemoveRsdRegionRequestParams, RsdRegionsSearchRsdRegionsRequestParams, RsdRegionsUpdateRsdRegionRequestParams, SavePermissionBundleDto, SaveRepTerritoryDto, SaveRepTerritoryRepContactDto, SearchPermissionBundleDto, SearchPermissionBundleDtoPagedListMetadataDto, SearchRegionDto, SearchRegionDtoPagedListMetadataDto, SearchRepTerritoryDto, SearchRepTerritoryDtoPagedListMetadataDto, SearchRsdRegionDto, SearchRsdRegionDtoPagedListMetadataDto, StandardDataFormat, StandardDataType, StandardParamStyle, TokenModel, TotalCountListMetadata, UpdateRsdRegionDto, UserEmailDto, UserPreferencesDto, UserProfileDto, UserRegistrationDto, UsersApiServiceInterface, UsersConfirmEmailRequestParams, UsersForgotPasswordRequestParams,
|
|
3107
|
+
export { APIS, AddressCountry, AddressDtoCountryEnum, ApiModule, AuthApiService, BASE_PATH, COLLECTION_FORMATS, Configuration, CoolingDesignBasis, DesignWeatherMode, Permission, PermissionBundlesApiService, PermissionsApiService, RegionDtoLevelEnum, RegionLevel, RegionsApiService, RepContactsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, SaveUserDesignConditionsDtoCoolingDesignBasisEnum, SearchRegionDtoLevelEnum, UserDesignConditionsApiService, UserDesignConditionsDtoCoolingDesignBasisEnum, UserDesignWeatherConditionDtoDesignWeatherModeEnum, UsersApiService, provideApi };
|
|
3108
|
+
export type { AddressDto, AuthApiServiceInterface, AuthAuthenticateRequestParams, AuthRefreshTokenRequestParams, CompanyInformationDto, ConfigurationParameters, ContactDto, CreateDocumentsDto, CreateRsdRegionDto, CreateUploadUrlCommand, DataFormat, DataType, DistanceDto, EmailConfirmationTokenDto, FileDto, ForgotPasswordCommand, Int32IdDto, LoginUserCommand, OffsetLimitListMetadata, PagedListMetadata, Param, ParamLocation, ParamStyle, PermissionBundleDto, PermissionBundlesApiServiceInterface, PermissionBundlesCreatePermissionBundleRequestParams, PermissionBundlesGetPermissionBundleRequestParams, PermissionBundlesRemovePermissionBundleRequestParams, PermissionBundlesRestorePermissionBundleRequestParams, PermissionBundlesSearchPermissionBundlesRequestParams, PermissionBundlesUpdatePermissionBundleRequestParams, PermissionDto, PermissionsApiServiceInterface, PhysicalAddressDto, RefreshTokenCommand, RegionDto, RegionsApiServiceInterface, RegionsSearchRegionsRequestParams, RemoveDocumentsCommand, RepContactsApiServiceInterface, RepContactsGetRepTerritoryRepContactRequestParams, RepContactsRemoveRepTerritoryRepContactRequestParams, RepContactsUpdateRepTerritoryRepContactRequestParams, RepTerritoriesApiServiceInterface, RepTerritoriesCreateRepTerritoryLocationRequestParams, RepTerritoriesCreateRepTerritoryRepContactRequestParams, RepTerritoriesCreateRepTerritoryRequestParams, RepTerritoriesGetRepTerritoryRequestParams, RepTerritoriesRemoveRepTerritoryRequestParams, RepTerritoriesSearchRepTerritoriesRequestParams, RepTerritoriesUpdateRepTerritoryRequestParams, RepTerritoryContactsDto, RepTerritoryDto, RepTerritoryLocationDto, RepTerritoryLocationsApiServiceInterface, RepTerritoryLocationsGetRepTerritoryLocationRequestParams, RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams, RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams, RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams, RepTerritoryRepContactDto, ResetPasswordCommand, RsdRegionDocumentDto, RsdRegionDto, RsdRegionRepTerritoryDto, RsdRegionUserDto, RsdRegionsApiServiceInterface, RsdRegionsCreateDocumentDownloadUrlRequestParams, RsdRegionsCreateDocumentUploadUrlRequestParams, RsdRegionsCreateRsdRegionDocumentsRequestParams, RsdRegionsCreateRsdRegionRequestParams, RsdRegionsGetRsdRegionRequestParams, RsdRegionsRemoveRsdRegionDocumentsRequestParams, RsdRegionsRemoveRsdRegionRequestParams, RsdRegionsSearchRsdRegionsRequestParams, RsdRegionsUpdateRsdRegionRequestParams, SavePermissionBundleDto, SaveRepTerritoryDto, SaveRepTerritoryLocationDto, SaveRepTerritoryRepContactDto, SaveUserDesignConditionsDto, SearchPermissionBundleDto, SearchPermissionBundleDtoPagedListMetadataDto, SearchRegionDto, SearchRegionDtoPagedListMetadataDto, SearchRepTerritoryDto, SearchRepTerritoryDtoPagedListMetadataDto, SearchRepTerritoryLocationDto, SearchRepTerritoryLocationDtoPagedListMetadataDto, SearchRsdRegionDto, SearchRsdRegionDtoPagedListMetadataDto, StandardDataFormat, StandardDataType, StandardParamStyle, TemperatureDto, TokenModel, TotalCountListMetadata, UpdateRsdRegionDto, UploadFileDto, UploadUrlResult, UserDesignConditionsApiServiceInterface, UserDesignConditionsDto, UserDesignConditionsGetProjectDesignConditionsRequestParams, UserDesignConditionsSaveProjectDesignConditionsRequestParams, UserDesignWeatherConditionDto, UserEmailDto, UserPreferencesDto, UserProfileDto, UserRegistrationDto, UsersApiServiceInterface, UsersConfirmEmailRequestParams, UsersForgotPasswordRequestParams, UsersGetRepContactsRequestParams, UsersRegisterUserRequestParams, UsersRequestConfirmEmailRequestParams, UsersResetPasswordRequestParams };
|