@saritasa/renewaire-frontend-sdk 0.1.0-dev.367 → 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
|
*
|
|
@@ -606,6 +735,25 @@ declare enum RegionLevel {
|
|
|
606
735
|
County = "County"
|
|
607
736
|
}
|
|
608
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
|
+
|
|
609
757
|
/**
|
|
610
758
|
* RenewAire CORES API
|
|
611
759
|
*
|
|
@@ -750,13 +898,16 @@ interface ResetPasswordCommand {
|
|
|
750
898
|
* https://openapi-generator.tech
|
|
751
899
|
* Do not edit the class manually.
|
|
752
900
|
*/
|
|
901
|
+
|
|
753
902
|
/**
|
|
754
903
|
* RSD region document DTO for query RenewAire.Cores.UseCases.RsdRegions.GetRsdRegion.GetRsdRegionQuery.
|
|
755
904
|
*/
|
|
756
905
|
interface RsdRegionDocumentDto {
|
|
757
906
|
id: object;
|
|
758
|
-
|
|
759
|
-
|
|
907
|
+
/**
|
|
908
|
+
* Contains information about file.
|
|
909
|
+
*/
|
|
910
|
+
file: FileDto;
|
|
760
911
|
}
|
|
761
912
|
|
|
762
913
|
/**
|
|
@@ -917,6 +1068,105 @@ interface SaveRepTerritoryRepContactDto {
|
|
|
917
1068
|
address: AddressDto;
|
|
918
1069
|
}
|
|
919
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
|
+
|
|
920
1170
|
/**
|
|
921
1171
|
* RenewAire CORES API
|
|
922
1172
|
*
|
|
@@ -1157,6 +1407,78 @@ interface UpdateRsdRegionDto {
|
|
|
1157
1407
|
rsdUserIds: Array<number>;
|
|
1158
1408
|
}
|
|
1159
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
|
+
|
|
1160
1482
|
/**
|
|
1161
1483
|
* RenewAire CORES API
|
|
1162
1484
|
*
|
|
@@ -2163,15 +2485,29 @@ declare class RepTerritoryLocationsApiService extends BaseService implements Rep
|
|
|
2163
2485
|
* Do not edit the class manually.
|
|
2164
2486
|
*/
|
|
2165
2487
|
|
|
2488
|
+
interface RsdRegionsCreateDocumentDownloadUrlRequestParams {
|
|
2489
|
+
rsdRegionId: number;
|
|
2490
|
+
documentId: number;
|
|
2491
|
+
}
|
|
2492
|
+
interface RsdRegionsCreateDocumentUploadUrlRequestParams {
|
|
2493
|
+
createUploadUrlCommand?: CreateUploadUrlCommand;
|
|
2494
|
+
}
|
|
2166
2495
|
interface RsdRegionsCreateRsdRegionRequestParams {
|
|
2167
2496
|
createRsdRegionDto?: CreateRsdRegionDto;
|
|
2168
2497
|
}
|
|
2498
|
+
interface RsdRegionsCreateRsdRegionDocumentsRequestParams {
|
|
2499
|
+
id: number;
|
|
2500
|
+
createDocumentsDto?: CreateDocumentsDto;
|
|
2501
|
+
}
|
|
2169
2502
|
interface RsdRegionsGetRsdRegionRequestParams {
|
|
2170
2503
|
id: number;
|
|
2171
2504
|
}
|
|
2172
2505
|
interface RsdRegionsRemoveRsdRegionRequestParams {
|
|
2173
2506
|
id: number;
|
|
2174
2507
|
}
|
|
2508
|
+
interface RsdRegionsRemoveRsdRegionDocumentsRequestParams {
|
|
2509
|
+
removeDocumentsCommand?: RemoveDocumentsCommand;
|
|
2510
|
+
}
|
|
2175
2511
|
interface RsdRegionsSearchRsdRegionsRequestParams {
|
|
2176
2512
|
name?: string;
|
|
2177
2513
|
isActive?: boolean;
|
|
@@ -2187,12 +2523,30 @@ interface RsdRegionsUpdateRsdRegionRequestParams {
|
|
|
2187
2523
|
interface RsdRegionsApiServiceInterface {
|
|
2188
2524
|
defaultHeaders: HttpHeaders;
|
|
2189
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>;
|
|
2190
2538
|
/**
|
|
2191
2539
|
* Create RSD region.
|
|
2192
2540
|
*
|
|
2193
2541
|
* @param requestParameters
|
|
2194
2542
|
*/
|
|
2195
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<{}>;
|
|
2196
2550
|
/**
|
|
2197
2551
|
* Get RSD region by id.
|
|
2198
2552
|
*
|
|
@@ -2205,6 +2559,12 @@ interface RsdRegionsApiServiceInterface {
|
|
|
2205
2559
|
* @param requestParameters
|
|
2206
2560
|
*/
|
|
2207
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<{}>;
|
|
2208
2568
|
/**
|
|
2209
2569
|
* Search RSD regions.
|
|
2210
2570
|
*
|
|
@@ -2222,6 +2582,48 @@ interface RsdRegionsApiServiceInterface {
|
|
|
2222
2582
|
declare class RsdRegionsApiService extends BaseService implements RsdRegionsApiServiceInterface {
|
|
2223
2583
|
protected httpClient: HttpClient;
|
|
2224
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>>;
|
|
2225
2627
|
/**
|
|
2226
2628
|
* Create RSD region.
|
|
2227
2629
|
* @param requestParameters
|
|
@@ -2243,6 +2645,27 @@ declare class RsdRegionsApiService extends BaseService implements RsdRegionsApiS
|
|
|
2243
2645
|
context?: HttpContext;
|
|
2244
2646
|
transferCache?: boolean;
|
|
2245
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>>;
|
|
2246
2669
|
/**
|
|
2247
2670
|
* Get RSD region by id.
|
|
2248
2671
|
* @param requestParameters
|
|
@@ -2285,6 +2708,27 @@ declare class RsdRegionsApiService extends BaseService implements RsdRegionsApiS
|
|
|
2285
2708
|
context?: HttpContext;
|
|
2286
2709
|
transferCache?: boolean;
|
|
2287
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>>;
|
|
2288
2732
|
/**
|
|
2289
2733
|
* Search RSD regions.
|
|
2290
2734
|
* @param requestParameters
|
|
@@ -2331,6 +2775,88 @@ declare class RsdRegionsApiService extends BaseService implements RsdRegionsApiS
|
|
|
2331
2775
|
static ɵprov: i0.ɵɵInjectableDeclaration<RsdRegionsApiService>;
|
|
2332
2776
|
}
|
|
2333
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
|
+
|
|
2334
2860
|
/**
|
|
2335
2861
|
* RenewAire CORES API
|
|
2336
2862
|
*
|
|
@@ -2558,7 +3084,7 @@ declare class UsersApiService extends BaseService implements UsersApiServiceInte
|
|
|
2558
3084
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsersApiService>;
|
|
2559
3085
|
}
|
|
2560
3086
|
|
|
2561
|
-
declare const APIS: (typeof AuthApiService | typeof PermissionBundlesApiService | typeof PermissionsApiService | typeof RegionsApiService | typeof RepContactsApiService | typeof RepTerritoriesApiService | typeof RepTerritoryLocationsApiService | 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)[];
|
|
2562
3088
|
|
|
2563
3089
|
declare const BASE_PATH: InjectionToken<string>;
|
|
2564
3090
|
declare const COLLECTION_FORMATS: {
|
|
@@ -2578,5 +3104,5 @@ declare class ApiModule {
|
|
|
2578
3104
|
|
|
2579
3105
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
2580
3106
|
|
|
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 };
|
|
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 };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saritasa/renewaire-frontend-sdk",
|
|
3
|
-
"version": "0.1.0-dev.
|
|
4
|
-
"description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.1.0-dev.
|
|
3
|
+
"version": "0.1.0-dev.420",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.1.0-dev.420+Branch.develop.Sha.521ad82c608e372ea7f90641de764545da44a0bc.521ad82c608e372ea7f90641de764545da44a0bc)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|