@saritasa/renewaire-frontend-sdk 0.1.0-dev.367 → 0.1.0-dev.426
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
|
*
|
|
@@ -542,6 +671,22 @@ interface PhysicalAddressDto {
|
|
|
542
671
|
city?: string | null;
|
|
543
672
|
}
|
|
544
673
|
|
|
674
|
+
/**
|
|
675
|
+
* RenewAire CORES API
|
|
676
|
+
*
|
|
677
|
+
* Contact: renewaire@saritasa.com
|
|
678
|
+
*
|
|
679
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
680
|
+
* https://openapi-generator.tech
|
|
681
|
+
* Do not edit the class manually.
|
|
682
|
+
*/
|
|
683
|
+
interface PostPreSignedUrlDto {
|
|
684
|
+
url: string;
|
|
685
|
+
fields: {
|
|
686
|
+
[key: string]: string;
|
|
687
|
+
};
|
|
688
|
+
}
|
|
689
|
+
|
|
545
690
|
/**
|
|
546
691
|
* RenewAire CORES API
|
|
547
692
|
*
|
|
@@ -606,6 +751,25 @@ declare enum RegionLevel {
|
|
|
606
751
|
County = "County"
|
|
607
752
|
}
|
|
608
753
|
|
|
754
|
+
/**
|
|
755
|
+
* RenewAire CORES API
|
|
756
|
+
*
|
|
757
|
+
* Contact: renewaire@saritasa.com
|
|
758
|
+
*
|
|
759
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
760
|
+
* https://openapi-generator.tech
|
|
761
|
+
* Do not edit the class manually.
|
|
762
|
+
*/
|
|
763
|
+
/**
|
|
764
|
+
* Command to remove list of RenewAire.Cores.Domain.Users.RsdRegionDocument.
|
|
765
|
+
*/
|
|
766
|
+
interface RemoveDocumentsCommand {
|
|
767
|
+
/**
|
|
768
|
+
* RSD region document ids to remove.
|
|
769
|
+
*/
|
|
770
|
+
rsdRegionDocumentIds: Array<object>;
|
|
771
|
+
}
|
|
772
|
+
|
|
609
773
|
/**
|
|
610
774
|
* RenewAire CORES API
|
|
611
775
|
*
|
|
@@ -750,13 +914,16 @@ interface ResetPasswordCommand {
|
|
|
750
914
|
* https://openapi-generator.tech
|
|
751
915
|
* Do not edit the class manually.
|
|
752
916
|
*/
|
|
917
|
+
|
|
753
918
|
/**
|
|
754
919
|
* RSD region document DTO for query RenewAire.Cores.UseCases.RsdRegions.GetRsdRegion.GetRsdRegionQuery.
|
|
755
920
|
*/
|
|
756
921
|
interface RsdRegionDocumentDto {
|
|
757
922
|
id: object;
|
|
758
|
-
|
|
759
|
-
|
|
923
|
+
/**
|
|
924
|
+
* Contains information about file.
|
|
925
|
+
*/
|
|
926
|
+
file: FileDto;
|
|
760
927
|
}
|
|
761
928
|
|
|
762
929
|
/**
|
|
@@ -917,6 +1084,105 @@ interface SaveRepTerritoryRepContactDto {
|
|
|
917
1084
|
address: AddressDto;
|
|
918
1085
|
}
|
|
919
1086
|
|
|
1087
|
+
/**
|
|
1088
|
+
* RenewAire CORES API
|
|
1089
|
+
*
|
|
1090
|
+
* Contact: renewaire@saritasa.com
|
|
1091
|
+
*
|
|
1092
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1093
|
+
* https://openapi-generator.tech
|
|
1094
|
+
* Do not edit the class manually.
|
|
1095
|
+
*/
|
|
1096
|
+
/**
|
|
1097
|
+
* DTO for RenewAire.Cores.Domain.Temperature.
|
|
1098
|
+
*/
|
|
1099
|
+
interface TemperatureDto {
|
|
1100
|
+
celsius: number;
|
|
1101
|
+
fahrenheit: number;
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
/**
|
|
1105
|
+
* RenewAire CORES API
|
|
1106
|
+
*
|
|
1107
|
+
* Contact: renewaire@saritasa.com
|
|
1108
|
+
*
|
|
1109
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1110
|
+
* https://openapi-generator.tech
|
|
1111
|
+
* Do not edit the class manually.
|
|
1112
|
+
*/
|
|
1113
|
+
|
|
1114
|
+
/**
|
|
1115
|
+
* User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
1116
|
+
*/
|
|
1117
|
+
interface UserDesignWeatherConditionDto {
|
|
1118
|
+
/**
|
|
1119
|
+
* DTO for RenewAire.Cores.Domain.Temperature.
|
|
1120
|
+
*/
|
|
1121
|
+
dryBulb: TemperatureDto;
|
|
1122
|
+
/**
|
|
1123
|
+
* DTO for RenewAire.Cores.Domain.Temperature.
|
|
1124
|
+
*/
|
|
1125
|
+
wetBulb: TemperatureDto;
|
|
1126
|
+
relativeHumidity: number;
|
|
1127
|
+
/**
|
|
1128
|
+
* DesignWeatherMode<br />0 = RelativeHumidity<br />1 = WetBulb
|
|
1129
|
+
*/
|
|
1130
|
+
designWeatherMode: UserDesignWeatherConditionDtoDesignWeatherModeEnum;
|
|
1131
|
+
}
|
|
1132
|
+
declare enum UserDesignWeatherConditionDtoDesignWeatherModeEnum {
|
|
1133
|
+
RelativeHumidity = "RelativeHumidity",
|
|
1134
|
+
WetBulb = "WetBulb"
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
/**
|
|
1138
|
+
* RenewAire CORES API
|
|
1139
|
+
*
|
|
1140
|
+
* Contact: renewaire@saritasa.com
|
|
1141
|
+
*
|
|
1142
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1143
|
+
* https://openapi-generator.tech
|
|
1144
|
+
* Do not edit the class manually.
|
|
1145
|
+
*/
|
|
1146
|
+
|
|
1147
|
+
/**
|
|
1148
|
+
* DTO to save RenewAire.Cores.Domain.Users.UserDesignConditions.
|
|
1149
|
+
*/
|
|
1150
|
+
interface SaveUserDesignConditionsDto {
|
|
1151
|
+
userId: number;
|
|
1152
|
+
weatherStationState: string;
|
|
1153
|
+
weatherStation: string;
|
|
1154
|
+
coolingPercentileDay: number;
|
|
1155
|
+
heatingPercentileDay: number;
|
|
1156
|
+
/**
|
|
1157
|
+
* CoolingDesignBasis<br />0 = Cooling<br />1 = Dehumidification
|
|
1158
|
+
*/
|
|
1159
|
+
coolingDesignBasis: SaveUserDesignConditionsDtoCoolingDesignBasisEnum;
|
|
1160
|
+
/**
|
|
1161
|
+
* DTO for RenewAire.Cores.Domain.Distance.
|
|
1162
|
+
*/
|
|
1163
|
+
elevation: DistanceDto;
|
|
1164
|
+
/**
|
|
1165
|
+
* User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
1166
|
+
*/
|
|
1167
|
+
summerOutsideAir: UserDesignWeatherConditionDto;
|
|
1168
|
+
/**
|
|
1169
|
+
* User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
1170
|
+
*/
|
|
1171
|
+
summerReturnAir: UserDesignWeatherConditionDto;
|
|
1172
|
+
/**
|
|
1173
|
+
* User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
1174
|
+
*/
|
|
1175
|
+
winterOutsideAir: UserDesignWeatherConditionDto;
|
|
1176
|
+
/**
|
|
1177
|
+
* User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
1178
|
+
*/
|
|
1179
|
+
winterReturnAir: UserDesignWeatherConditionDto;
|
|
1180
|
+
}
|
|
1181
|
+
declare enum SaveUserDesignConditionsDtoCoolingDesignBasisEnum {
|
|
1182
|
+
Cooling = "Cooling",
|
|
1183
|
+
Dehumidification = "Dehumidification"
|
|
1184
|
+
}
|
|
1185
|
+
|
|
920
1186
|
/**
|
|
921
1187
|
* RenewAire CORES API
|
|
922
1188
|
*
|
|
@@ -1157,6 +1423,76 @@ interface UpdateRsdRegionDto {
|
|
|
1157
1423
|
rsdUserIds: Array<number>;
|
|
1158
1424
|
}
|
|
1159
1425
|
|
|
1426
|
+
/**
|
|
1427
|
+
* RenewAire CORES API
|
|
1428
|
+
*
|
|
1429
|
+
* Contact: renewaire@saritasa.com
|
|
1430
|
+
*
|
|
1431
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1432
|
+
* https://openapi-generator.tech
|
|
1433
|
+
* Do not edit the class manually.
|
|
1434
|
+
*/
|
|
1435
|
+
|
|
1436
|
+
/**
|
|
1437
|
+
* The result of creating a pre-signed URL to uploading file to the BLOB storage.
|
|
1438
|
+
*/
|
|
1439
|
+
interface UploadUrlResult {
|
|
1440
|
+
/**
|
|
1441
|
+
* Temporary file id.
|
|
1442
|
+
*/
|
|
1443
|
+
fileId: string;
|
|
1444
|
+
postPreSignedUrl: PostPreSignedUrlDto;
|
|
1445
|
+
}
|
|
1446
|
+
|
|
1447
|
+
/**
|
|
1448
|
+
* RenewAire CORES API
|
|
1449
|
+
*
|
|
1450
|
+
* Contact: renewaire@saritasa.com
|
|
1451
|
+
*
|
|
1452
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1453
|
+
* https://openapi-generator.tech
|
|
1454
|
+
* Do not edit the class manually.
|
|
1455
|
+
*/
|
|
1456
|
+
|
|
1457
|
+
/**
|
|
1458
|
+
* User design condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
1459
|
+
*/
|
|
1460
|
+
interface UserDesignConditionsDto {
|
|
1461
|
+
userId: number;
|
|
1462
|
+
weatherStationState: string;
|
|
1463
|
+
weatherStation: string;
|
|
1464
|
+
coolingPercentileDay: number;
|
|
1465
|
+
heatingPercentileDay: number;
|
|
1466
|
+
/**
|
|
1467
|
+
* CoolingDesignBasis<br />0 = Cooling<br />1 = Dehumidification
|
|
1468
|
+
*/
|
|
1469
|
+
coolingDesignBasis: UserDesignConditionsDtoCoolingDesignBasisEnum;
|
|
1470
|
+
/**
|
|
1471
|
+
* DTO for RenewAire.Cores.Domain.Distance.
|
|
1472
|
+
*/
|
|
1473
|
+
elevation: DistanceDto;
|
|
1474
|
+
/**
|
|
1475
|
+
* User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
1476
|
+
*/
|
|
1477
|
+
summerOutsideAir: UserDesignWeatherConditionDto;
|
|
1478
|
+
/**
|
|
1479
|
+
* User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
1480
|
+
*/
|
|
1481
|
+
summerReturnAir: UserDesignWeatherConditionDto;
|
|
1482
|
+
/**
|
|
1483
|
+
* User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
1484
|
+
*/
|
|
1485
|
+
winterOutsideAir: UserDesignWeatherConditionDto;
|
|
1486
|
+
/**
|
|
1487
|
+
* User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
1488
|
+
*/
|
|
1489
|
+
winterReturnAir: UserDesignWeatherConditionDto;
|
|
1490
|
+
}
|
|
1491
|
+
declare enum UserDesignConditionsDtoCoolingDesignBasisEnum {
|
|
1492
|
+
Cooling = "Cooling",
|
|
1493
|
+
Dehumidification = "Dehumidification"
|
|
1494
|
+
}
|
|
1495
|
+
|
|
1160
1496
|
/**
|
|
1161
1497
|
* RenewAire CORES API
|
|
1162
1498
|
*
|
|
@@ -2163,15 +2499,29 @@ declare class RepTerritoryLocationsApiService extends BaseService implements Rep
|
|
|
2163
2499
|
* Do not edit the class manually.
|
|
2164
2500
|
*/
|
|
2165
2501
|
|
|
2502
|
+
interface RsdRegionsCreateDocumentDownloadUrlRequestParams {
|
|
2503
|
+
rsdRegionId: number;
|
|
2504
|
+
documentId: number;
|
|
2505
|
+
}
|
|
2506
|
+
interface RsdRegionsCreateDocumentUploadUrlRequestParams {
|
|
2507
|
+
createUploadUrlCommand?: CreateUploadUrlCommand;
|
|
2508
|
+
}
|
|
2166
2509
|
interface RsdRegionsCreateRsdRegionRequestParams {
|
|
2167
2510
|
createRsdRegionDto?: CreateRsdRegionDto;
|
|
2168
2511
|
}
|
|
2512
|
+
interface RsdRegionsCreateRsdRegionDocumentsRequestParams {
|
|
2513
|
+
id: number;
|
|
2514
|
+
createDocumentsDto?: CreateDocumentsDto;
|
|
2515
|
+
}
|
|
2169
2516
|
interface RsdRegionsGetRsdRegionRequestParams {
|
|
2170
2517
|
id: number;
|
|
2171
2518
|
}
|
|
2172
2519
|
interface RsdRegionsRemoveRsdRegionRequestParams {
|
|
2173
2520
|
id: number;
|
|
2174
2521
|
}
|
|
2522
|
+
interface RsdRegionsRemoveRsdRegionDocumentsRequestParams {
|
|
2523
|
+
removeDocumentsCommand?: RemoveDocumentsCommand;
|
|
2524
|
+
}
|
|
2175
2525
|
interface RsdRegionsSearchRsdRegionsRequestParams {
|
|
2176
2526
|
name?: string;
|
|
2177
2527
|
isActive?: boolean;
|
|
@@ -2187,12 +2537,30 @@ interface RsdRegionsUpdateRsdRegionRequestParams {
|
|
|
2187
2537
|
interface RsdRegionsApiServiceInterface {
|
|
2188
2538
|
defaultHeaders: HttpHeaders;
|
|
2189
2539
|
configuration: Configuration;
|
|
2540
|
+
/**
|
|
2541
|
+
* Generate cloud URL for RSD region document uploading.
|
|
2542
|
+
*
|
|
2543
|
+
* @param requestParameters
|
|
2544
|
+
*/
|
|
2545
|
+
rsdRegionsCreateDocumentDownloadUrl(requestParameters: RsdRegionsCreateDocumentDownloadUrlRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
2546
|
+
/**
|
|
2547
|
+
* Generate cloud URL for RSD region document uploading.
|
|
2548
|
+
*
|
|
2549
|
+
* @param requestParameters
|
|
2550
|
+
*/
|
|
2551
|
+
rsdRegionsCreateDocumentUploadUrl(requestParameters: RsdRegionsCreateDocumentUploadUrlRequestParams, extraHttpRequestParams?: any): Observable<UploadUrlResult>;
|
|
2190
2552
|
/**
|
|
2191
2553
|
* Create RSD region.
|
|
2192
2554
|
*
|
|
2193
2555
|
* @param requestParameters
|
|
2194
2556
|
*/
|
|
2195
2557
|
rsdRegionsCreateRsdRegion(requestParameters: RsdRegionsCreateRsdRegionRequestParams, extraHttpRequestParams?: any): Observable<object>;
|
|
2558
|
+
/**
|
|
2559
|
+
* Create RSD region documents.
|
|
2560
|
+
*
|
|
2561
|
+
* @param requestParameters
|
|
2562
|
+
*/
|
|
2563
|
+
rsdRegionsCreateRsdRegionDocuments(requestParameters: RsdRegionsCreateRsdRegionDocumentsRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
2196
2564
|
/**
|
|
2197
2565
|
* Get RSD region by id.
|
|
2198
2566
|
*
|
|
@@ -2205,6 +2573,12 @@ interface RsdRegionsApiServiceInterface {
|
|
|
2205
2573
|
* @param requestParameters
|
|
2206
2574
|
*/
|
|
2207
2575
|
rsdRegionsRemoveRsdRegion(requestParameters: RsdRegionsRemoveRsdRegionRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
2576
|
+
/**
|
|
2577
|
+
* Remove RSD region documents.
|
|
2578
|
+
*
|
|
2579
|
+
* @param requestParameters
|
|
2580
|
+
*/
|
|
2581
|
+
rsdRegionsRemoveRsdRegionDocuments(requestParameters: RsdRegionsRemoveRsdRegionDocumentsRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
2208
2582
|
/**
|
|
2209
2583
|
* Search RSD regions.
|
|
2210
2584
|
*
|
|
@@ -2222,6 +2596,48 @@ interface RsdRegionsApiServiceInterface {
|
|
|
2222
2596
|
declare class RsdRegionsApiService extends BaseService implements RsdRegionsApiServiceInterface {
|
|
2223
2597
|
protected httpClient: HttpClient;
|
|
2224
2598
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
2599
|
+
/**
|
|
2600
|
+
* Generate cloud URL for RSD region document uploading.
|
|
2601
|
+
* @param requestParameters
|
|
2602
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2603
|
+
* @param reportProgress flag to report request and response progress.
|
|
2604
|
+
*/
|
|
2605
|
+
rsdRegionsCreateDocumentDownloadUrl(requestParameters: RsdRegionsCreateDocumentDownloadUrlRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
2606
|
+
httpHeaderAccept?: undefined;
|
|
2607
|
+
context?: HttpContext;
|
|
2608
|
+
transferCache?: boolean;
|
|
2609
|
+
}): Observable<any>;
|
|
2610
|
+
rsdRegionsCreateDocumentDownloadUrl(requestParameters: RsdRegionsCreateDocumentDownloadUrlRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
2611
|
+
httpHeaderAccept?: undefined;
|
|
2612
|
+
context?: HttpContext;
|
|
2613
|
+
transferCache?: boolean;
|
|
2614
|
+
}): Observable<HttpResponse<any>>;
|
|
2615
|
+
rsdRegionsCreateDocumentDownloadUrl(requestParameters: RsdRegionsCreateDocumentDownloadUrlRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
2616
|
+
httpHeaderAccept?: undefined;
|
|
2617
|
+
context?: HttpContext;
|
|
2618
|
+
transferCache?: boolean;
|
|
2619
|
+
}): Observable<HttpEvent<any>>;
|
|
2620
|
+
/**
|
|
2621
|
+
* Generate cloud URL for RSD region document uploading.
|
|
2622
|
+
* @param requestParameters
|
|
2623
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2624
|
+
* @param reportProgress flag to report request and response progress.
|
|
2625
|
+
*/
|
|
2626
|
+
rsdRegionsCreateDocumentUploadUrl(requestParameters?: RsdRegionsCreateDocumentUploadUrlRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
2627
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2628
|
+
context?: HttpContext;
|
|
2629
|
+
transferCache?: boolean;
|
|
2630
|
+
}): Observable<UploadUrlResult>;
|
|
2631
|
+
rsdRegionsCreateDocumentUploadUrl(requestParameters?: RsdRegionsCreateDocumentUploadUrlRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
2632
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2633
|
+
context?: HttpContext;
|
|
2634
|
+
transferCache?: boolean;
|
|
2635
|
+
}): Observable<HttpResponse<UploadUrlResult>>;
|
|
2636
|
+
rsdRegionsCreateDocumentUploadUrl(requestParameters?: RsdRegionsCreateDocumentUploadUrlRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
2637
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2638
|
+
context?: HttpContext;
|
|
2639
|
+
transferCache?: boolean;
|
|
2640
|
+
}): Observable<HttpEvent<UploadUrlResult>>;
|
|
2225
2641
|
/**
|
|
2226
2642
|
* Create RSD region.
|
|
2227
2643
|
* @param requestParameters
|
|
@@ -2243,6 +2659,27 @@ declare class RsdRegionsApiService extends BaseService implements RsdRegionsApiS
|
|
|
2243
2659
|
context?: HttpContext;
|
|
2244
2660
|
transferCache?: boolean;
|
|
2245
2661
|
}): Observable<HttpEvent<object>>;
|
|
2662
|
+
/**
|
|
2663
|
+
* Create RSD region documents.
|
|
2664
|
+
* @param requestParameters
|
|
2665
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2666
|
+
* @param reportProgress flag to report request and response progress.
|
|
2667
|
+
*/
|
|
2668
|
+
rsdRegionsCreateRsdRegionDocuments(requestParameters: RsdRegionsCreateRsdRegionDocumentsRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
2669
|
+
httpHeaderAccept?: undefined;
|
|
2670
|
+
context?: HttpContext;
|
|
2671
|
+
transferCache?: boolean;
|
|
2672
|
+
}): Observable<any>;
|
|
2673
|
+
rsdRegionsCreateRsdRegionDocuments(requestParameters: RsdRegionsCreateRsdRegionDocumentsRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
2674
|
+
httpHeaderAccept?: undefined;
|
|
2675
|
+
context?: HttpContext;
|
|
2676
|
+
transferCache?: boolean;
|
|
2677
|
+
}): Observable<HttpResponse<any>>;
|
|
2678
|
+
rsdRegionsCreateRsdRegionDocuments(requestParameters: RsdRegionsCreateRsdRegionDocumentsRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
2679
|
+
httpHeaderAccept?: undefined;
|
|
2680
|
+
context?: HttpContext;
|
|
2681
|
+
transferCache?: boolean;
|
|
2682
|
+
}): Observable<HttpEvent<any>>;
|
|
2246
2683
|
/**
|
|
2247
2684
|
* Get RSD region by id.
|
|
2248
2685
|
* @param requestParameters
|
|
@@ -2285,6 +2722,27 @@ declare class RsdRegionsApiService extends BaseService implements RsdRegionsApiS
|
|
|
2285
2722
|
context?: HttpContext;
|
|
2286
2723
|
transferCache?: boolean;
|
|
2287
2724
|
}): Observable<HttpEvent<any>>;
|
|
2725
|
+
/**
|
|
2726
|
+
* Remove RSD region documents.
|
|
2727
|
+
* @param requestParameters
|
|
2728
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2729
|
+
* @param reportProgress flag to report request and response progress.
|
|
2730
|
+
*/
|
|
2731
|
+
rsdRegionsRemoveRsdRegionDocuments(requestParameters?: RsdRegionsRemoveRsdRegionDocumentsRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
2732
|
+
httpHeaderAccept?: undefined;
|
|
2733
|
+
context?: HttpContext;
|
|
2734
|
+
transferCache?: boolean;
|
|
2735
|
+
}): Observable<any>;
|
|
2736
|
+
rsdRegionsRemoveRsdRegionDocuments(requestParameters?: RsdRegionsRemoveRsdRegionDocumentsRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
2737
|
+
httpHeaderAccept?: undefined;
|
|
2738
|
+
context?: HttpContext;
|
|
2739
|
+
transferCache?: boolean;
|
|
2740
|
+
}): Observable<HttpResponse<any>>;
|
|
2741
|
+
rsdRegionsRemoveRsdRegionDocuments(requestParameters?: RsdRegionsRemoveRsdRegionDocumentsRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
2742
|
+
httpHeaderAccept?: undefined;
|
|
2743
|
+
context?: HttpContext;
|
|
2744
|
+
transferCache?: boolean;
|
|
2745
|
+
}): Observable<HttpEvent<any>>;
|
|
2288
2746
|
/**
|
|
2289
2747
|
* Search RSD regions.
|
|
2290
2748
|
* @param requestParameters
|
|
@@ -2331,6 +2789,88 @@ declare class RsdRegionsApiService extends BaseService implements RsdRegionsApiS
|
|
|
2331
2789
|
static ɵprov: i0.ɵɵInjectableDeclaration<RsdRegionsApiService>;
|
|
2332
2790
|
}
|
|
2333
2791
|
|
|
2792
|
+
/**
|
|
2793
|
+
* RenewAire CORES API
|
|
2794
|
+
*
|
|
2795
|
+
* Contact: renewaire@saritasa.com
|
|
2796
|
+
*
|
|
2797
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2798
|
+
* https://openapi-generator.tech
|
|
2799
|
+
* Do not edit the class manually.
|
|
2800
|
+
*/
|
|
2801
|
+
|
|
2802
|
+
interface UserDesignConditionsGetProjectDesignConditionsRequestParams {
|
|
2803
|
+
userId: number;
|
|
2804
|
+
}
|
|
2805
|
+
interface UserDesignConditionsSaveProjectDesignConditionsRequestParams {
|
|
2806
|
+
saveUserDesignConditionsDto?: SaveUserDesignConditionsDto;
|
|
2807
|
+
}
|
|
2808
|
+
interface UserDesignConditionsApiServiceInterface {
|
|
2809
|
+
defaultHeaders: HttpHeaders;
|
|
2810
|
+
configuration: Configuration;
|
|
2811
|
+
/**
|
|
2812
|
+
* Get user design conditions.
|
|
2813
|
+
*
|
|
2814
|
+
* @param requestParameters
|
|
2815
|
+
*/
|
|
2816
|
+
userDesignConditionsGetProjectDesignConditions(requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams, extraHttpRequestParams?: any): Observable<UserDesignConditionsDto>;
|
|
2817
|
+
/**
|
|
2818
|
+
* Save user design conditions.
|
|
2819
|
+
*
|
|
2820
|
+
* @param requestParameters
|
|
2821
|
+
*/
|
|
2822
|
+
userDesignConditionsSaveProjectDesignConditions(requestParameters: UserDesignConditionsSaveProjectDesignConditionsRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
2823
|
+
}
|
|
2824
|
+
|
|
2825
|
+
declare class UserDesignConditionsApiService extends BaseService implements UserDesignConditionsApiServiceInterface {
|
|
2826
|
+
protected httpClient: HttpClient;
|
|
2827
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
2828
|
+
/**
|
|
2829
|
+
* Get user design conditions.
|
|
2830
|
+
* @param requestParameters
|
|
2831
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2832
|
+
* @param reportProgress flag to report request and response progress.
|
|
2833
|
+
*/
|
|
2834
|
+
userDesignConditionsGetProjectDesignConditions(requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
2835
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2836
|
+
context?: HttpContext;
|
|
2837
|
+
transferCache?: boolean;
|
|
2838
|
+
}): Observable<UserDesignConditionsDto>;
|
|
2839
|
+
userDesignConditionsGetProjectDesignConditions(requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
2840
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2841
|
+
context?: HttpContext;
|
|
2842
|
+
transferCache?: boolean;
|
|
2843
|
+
}): Observable<HttpResponse<UserDesignConditionsDto>>;
|
|
2844
|
+
userDesignConditionsGetProjectDesignConditions(requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
2845
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2846
|
+
context?: HttpContext;
|
|
2847
|
+
transferCache?: boolean;
|
|
2848
|
+
}): Observable<HttpEvent<UserDesignConditionsDto>>;
|
|
2849
|
+
/**
|
|
2850
|
+
* Save user design conditions.
|
|
2851
|
+
* @param requestParameters
|
|
2852
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2853
|
+
* @param reportProgress flag to report request and response progress.
|
|
2854
|
+
*/
|
|
2855
|
+
userDesignConditionsSaveProjectDesignConditions(requestParameters?: UserDesignConditionsSaveProjectDesignConditionsRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
2856
|
+
httpHeaderAccept?: undefined;
|
|
2857
|
+
context?: HttpContext;
|
|
2858
|
+
transferCache?: boolean;
|
|
2859
|
+
}): Observable<any>;
|
|
2860
|
+
userDesignConditionsSaveProjectDesignConditions(requestParameters?: UserDesignConditionsSaveProjectDesignConditionsRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
2861
|
+
httpHeaderAccept?: undefined;
|
|
2862
|
+
context?: HttpContext;
|
|
2863
|
+
transferCache?: boolean;
|
|
2864
|
+
}): Observable<HttpResponse<any>>;
|
|
2865
|
+
userDesignConditionsSaveProjectDesignConditions(requestParameters?: UserDesignConditionsSaveProjectDesignConditionsRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
2866
|
+
httpHeaderAccept?: undefined;
|
|
2867
|
+
context?: HttpContext;
|
|
2868
|
+
transferCache?: boolean;
|
|
2869
|
+
}): Observable<HttpEvent<any>>;
|
|
2870
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserDesignConditionsApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
2871
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UserDesignConditionsApiService>;
|
|
2872
|
+
}
|
|
2873
|
+
|
|
2334
2874
|
/**
|
|
2335
2875
|
* RenewAire CORES API
|
|
2336
2876
|
*
|
|
@@ -2558,7 +3098,7 @@ declare class UsersApiService extends BaseService implements UsersApiServiceInte
|
|
|
2558
3098
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsersApiService>;
|
|
2559
3099
|
}
|
|
2560
3100
|
|
|
2561
|
-
declare const APIS: (typeof AuthApiService | typeof PermissionBundlesApiService | typeof PermissionsApiService | typeof RegionsApiService | typeof RepContactsApiService | typeof RepTerritoriesApiService | typeof RepTerritoryLocationsApiService | typeof RsdRegionsApiService | typeof UsersApiService)[];
|
|
3101
|
+
declare const APIS: (typeof AuthApiService | typeof PermissionBundlesApiService | typeof PermissionsApiService | typeof RegionsApiService | typeof RepContactsApiService | typeof RepTerritoriesApiService | typeof RepTerritoryLocationsApiService | typeof RsdRegionsApiService | typeof UserDesignConditionsApiService | typeof UsersApiService)[];
|
|
2562
3102
|
|
|
2563
3103
|
declare const BASE_PATH: InjectionToken<string>;
|
|
2564
3104
|
declare const COLLECTION_FORMATS: {
|
|
@@ -2578,5 +3118,5 @@ declare class ApiModule {
|
|
|
2578
3118
|
|
|
2579
3119
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
2580
3120
|
|
|
2581
|
-
export { APIS, AddressCountry, AddressDtoCountryEnum, ApiModule, AuthApiService, BASE_PATH, COLLECTION_FORMATS, Configuration, Permission, PermissionBundlesApiService, PermissionsApiService, RegionDtoLevelEnum, RegionLevel, RegionsApiService, RepContactsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, SearchRegionDtoLevelEnum, UsersApiService, provideApi };
|
|
2582
|
-
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, RegionDto, RegionsApiServiceInterface, RegionsSearchRegionsRequestParams, 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, RsdRegionsCreateRsdRegionRequestParams, RsdRegionsGetRsdRegionRequestParams, RsdRegionsRemoveRsdRegionRequestParams, RsdRegionsSearchRsdRegionsRequestParams, RsdRegionsUpdateRsdRegionRequestParams, SavePermissionBundleDto, SaveRepTerritoryDto, SaveRepTerritoryLocationDto, SaveRepTerritoryRepContactDto, SearchPermissionBundleDto, SearchPermissionBundleDtoPagedListMetadataDto, SearchRegionDto, SearchRegionDtoPagedListMetadataDto, SearchRepTerritoryDto, SearchRepTerritoryDtoPagedListMetadataDto, SearchRepTerritoryLocationDto, SearchRepTerritoryLocationDtoPagedListMetadataDto, SearchRsdRegionDto, SearchRsdRegionDtoPagedListMetadataDto, StandardDataFormat, StandardDataType, StandardParamStyle, TokenModel, TotalCountListMetadata, UpdateRsdRegionDto, UserEmailDto, UserPreferencesDto, UserProfileDto, UserRegistrationDto, UsersApiServiceInterface, UsersConfirmEmailRequestParams, UsersForgotPasswordRequestParams, UsersGetRepContactsRequestParams, UsersRegisterUserRequestParams, UsersRequestConfirmEmailRequestParams, UsersResetPasswordRequestParams };
|
|
3121
|
+
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 };
|
|
3122
|
+
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, PostPreSignedUrlDto, 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 };
|