@saritasa/renewaire-frontend-sdk 0.111.1 → 0.113.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/fesm2022/saritasa-renewaire-frontend-sdk.mjs +52 -125
- package/fesm2022/saritasa-renewaire-frontend-sdk.mjs.map +1 -1
- package/index.d.ts +197 -239
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -1119,6 +1119,154 @@ declare enum RegistrationStatus {
|
|
|
1119
1119
|
Completed = "Completed"
|
|
1120
1120
|
}
|
|
1121
1121
|
|
|
1122
|
+
/**
|
|
1123
|
+
* RenewAire CORES API
|
|
1124
|
+
*
|
|
1125
|
+
* Contact: renewaire@saritasa.com
|
|
1126
|
+
*
|
|
1127
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1128
|
+
* https://openapi-generator.tech
|
|
1129
|
+
* Do not edit the class manually.
|
|
1130
|
+
*/
|
|
1131
|
+
/**
|
|
1132
|
+
* DTO for RenewAire.Cores.Domain.Temperature.
|
|
1133
|
+
*/
|
|
1134
|
+
interface TemperatureDto {
|
|
1135
|
+
celsius?: number | null;
|
|
1136
|
+
fahrenheit?: number | null;
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1139
|
+
/**
|
|
1140
|
+
* RenewAire CORES API
|
|
1141
|
+
*
|
|
1142
|
+
* Contact: renewaire@saritasa.com
|
|
1143
|
+
*
|
|
1144
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1145
|
+
* https://openapi-generator.tech
|
|
1146
|
+
* Do not edit the class manually.
|
|
1147
|
+
*/
|
|
1148
|
+
/**
|
|
1149
|
+
* Allows to determine which of the two options is selected in RenewAire.Cores.Domain.Projects.DesignWeatherCondition.<br />DesignWeatherMode<br />0 = RelativeHumidity<br />1 = WetBulb
|
|
1150
|
+
*/
|
|
1151
|
+
declare enum DesignWeatherMode {
|
|
1152
|
+
RelativeHumidity = "RelativeHumidity",
|
|
1153
|
+
WetBulb = "WetBulb"
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
/**
|
|
1157
|
+
* RenewAire CORES API
|
|
1158
|
+
*
|
|
1159
|
+
* Contact: renewaire@saritasa.com
|
|
1160
|
+
*
|
|
1161
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1162
|
+
* https://openapi-generator.tech
|
|
1163
|
+
* Do not edit the class manually.
|
|
1164
|
+
*/
|
|
1165
|
+
|
|
1166
|
+
/**
|
|
1167
|
+
* Design weather condition DTO for RenewAire.Cores.Domain.Projects.DesignWeatherCondition.
|
|
1168
|
+
*/
|
|
1169
|
+
interface DesignWeatherConditionDto {
|
|
1170
|
+
/**
|
|
1171
|
+
* DTO for RenewAire.Cores.Domain.Temperature.
|
|
1172
|
+
*/
|
|
1173
|
+
dryBulb: TemperatureDto;
|
|
1174
|
+
/**
|
|
1175
|
+
* DTO for RenewAire.Cores.Domain.Temperature.
|
|
1176
|
+
*/
|
|
1177
|
+
wetBulb: TemperatureDto;
|
|
1178
|
+
/**
|
|
1179
|
+
* Allows to determine which of the two options is selected in RenewAire.Cores.Domain.Projects.DesignWeatherCondition.<br />DesignWeatherMode<br />0 = RelativeHumidity<br />1 = WetBulb
|
|
1180
|
+
*/
|
|
1181
|
+
designWeatherMode: DesignWeatherMode;
|
|
1182
|
+
relativeHumidity?: number | null;
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1185
|
+
/**
|
|
1186
|
+
* RenewAire CORES API
|
|
1187
|
+
*
|
|
1188
|
+
* Contact: renewaire@saritasa.com
|
|
1189
|
+
*
|
|
1190
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1191
|
+
* https://openapi-generator.tech
|
|
1192
|
+
* Do not edit the class manually.
|
|
1193
|
+
*/
|
|
1194
|
+
/**
|
|
1195
|
+
* DTO for RenewAire.Cores.Domain.Distance.
|
|
1196
|
+
*/
|
|
1197
|
+
interface DistanceDto {
|
|
1198
|
+
feet?: number | null;
|
|
1199
|
+
meters?: number | null;
|
|
1200
|
+
}
|
|
1201
|
+
|
|
1202
|
+
/**
|
|
1203
|
+
* RenewAire CORES API
|
|
1204
|
+
*
|
|
1205
|
+
* Contact: renewaire@saritasa.com
|
|
1206
|
+
*
|
|
1207
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1208
|
+
* https://openapi-generator.tech
|
|
1209
|
+
* Do not edit the class manually.
|
|
1210
|
+
*/
|
|
1211
|
+
|
|
1212
|
+
/**
|
|
1213
|
+
* User design conditions DTO.
|
|
1214
|
+
*/
|
|
1215
|
+
interface UserDesignConditionsDto {
|
|
1216
|
+
/**
|
|
1217
|
+
* Related user id.
|
|
1218
|
+
*/
|
|
1219
|
+
userId: number;
|
|
1220
|
+
/**
|
|
1221
|
+
* Weather station state.
|
|
1222
|
+
*/
|
|
1223
|
+
weatherStationState: string;
|
|
1224
|
+
/**
|
|
1225
|
+
* Weather station code.
|
|
1226
|
+
*/
|
|
1227
|
+
weatherStation: string;
|
|
1228
|
+
/**
|
|
1229
|
+
* DTO for RenewAire.Cores.Domain.Distance.
|
|
1230
|
+
*/
|
|
1231
|
+
elevation: DistanceDto;
|
|
1232
|
+
/**
|
|
1233
|
+
* Climate zone. It if filled from weather stations list.
|
|
1234
|
+
*/
|
|
1235
|
+
climateZone: string;
|
|
1236
|
+
/**
|
|
1237
|
+
* Design weather condition DTO for RenewAire.Cores.Domain.Projects.DesignWeatherCondition.
|
|
1238
|
+
*/
|
|
1239
|
+
summerOutsideAir: DesignWeatherConditionDto;
|
|
1240
|
+
/**
|
|
1241
|
+
* Design weather condition DTO for RenewAire.Cores.Domain.Projects.DesignWeatherCondition.
|
|
1242
|
+
*/
|
|
1243
|
+
summerReturnAir: DesignWeatherConditionDto;
|
|
1244
|
+
/**
|
|
1245
|
+
* Design weather condition DTO for RenewAire.Cores.Domain.Projects.DesignWeatherCondition.
|
|
1246
|
+
*/
|
|
1247
|
+
winterOutsideAir: DesignWeatherConditionDto;
|
|
1248
|
+
/**
|
|
1249
|
+
* Design weather condition DTO for RenewAire.Cores.Domain.Projects.DesignWeatherCondition.
|
|
1250
|
+
*/
|
|
1251
|
+
winterReturnAir: DesignWeatherConditionDto;
|
|
1252
|
+
/**
|
|
1253
|
+
* Cooling percentile day.
|
|
1254
|
+
*/
|
|
1255
|
+
coolingPercentileDay?: number | null;
|
|
1256
|
+
/**
|
|
1257
|
+
* Heating percentile day.
|
|
1258
|
+
*/
|
|
1259
|
+
heatingPercentileDay?: number | null;
|
|
1260
|
+
/**
|
|
1261
|
+
* CoolingDesignBasis<br />0 = Cooling<br />1 = Dehumidification
|
|
1262
|
+
*/
|
|
1263
|
+
coolingDesignBasis?: CoolingDesignBasis | null;
|
|
1264
|
+
/**
|
|
1265
|
+
* AshraeVersion<br />0 = V2007<br />1 = V2010<br />2 = V2013<br />3 = V2016<br />4 = V2019<br />5 = V2022<br />Required permissions: SystemAdmin | ViewAshraeOptions
|
|
1266
|
+
*/
|
|
1267
|
+
ashraeVersion?: AshraeVersion | null;
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1122
1270
|
/**
|
|
1123
1271
|
* RenewAire CORES API
|
|
1124
1272
|
*
|
|
@@ -1277,6 +1425,10 @@ interface CurrentUserDetailsDto {
|
|
|
1277
1425
|
* DTO for user quote settings.<br />Required permissions: SystemAdmin | GenerateQuotes
|
|
1278
1426
|
*/
|
|
1279
1427
|
quote?: UserQuoteDto | null;
|
|
1428
|
+
/**
|
|
1429
|
+
* User design conditions DTO.
|
|
1430
|
+
*/
|
|
1431
|
+
designConditions?: UserDesignConditionsDto | null;
|
|
1280
1432
|
}
|
|
1281
1433
|
|
|
1282
1434
|
/**
|
|
@@ -1317,86 +1469,6 @@ interface CurrentUserDto {
|
|
|
1317
1469
|
avatarUrl?: string | null;
|
|
1318
1470
|
}
|
|
1319
1471
|
|
|
1320
|
-
/**
|
|
1321
|
-
* RenewAire CORES API
|
|
1322
|
-
*
|
|
1323
|
-
* Contact: renewaire@saritasa.com
|
|
1324
|
-
*
|
|
1325
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1326
|
-
* https://openapi-generator.tech
|
|
1327
|
-
* Do not edit the class manually.
|
|
1328
|
-
*/
|
|
1329
|
-
/**
|
|
1330
|
-
* DTO for RenewAire.Cores.Domain.Temperature.
|
|
1331
|
-
*/
|
|
1332
|
-
interface TemperatureDto {
|
|
1333
|
-
celsius?: number | null;
|
|
1334
|
-
fahrenheit?: number | null;
|
|
1335
|
-
}
|
|
1336
|
-
|
|
1337
|
-
/**
|
|
1338
|
-
* RenewAire CORES API
|
|
1339
|
-
*
|
|
1340
|
-
* Contact: renewaire@saritasa.com
|
|
1341
|
-
*
|
|
1342
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1343
|
-
* https://openapi-generator.tech
|
|
1344
|
-
* Do not edit the class manually.
|
|
1345
|
-
*/
|
|
1346
|
-
/**
|
|
1347
|
-
* Allows to determine which of the two options is selected in RenewAire.Cores.Domain.Projects.DesignWeatherCondition.<br />DesignWeatherMode<br />0 = RelativeHumidity<br />1 = WetBulb
|
|
1348
|
-
*/
|
|
1349
|
-
declare enum DesignWeatherMode {
|
|
1350
|
-
RelativeHumidity = "RelativeHumidity",
|
|
1351
|
-
WetBulb = "WetBulb"
|
|
1352
|
-
}
|
|
1353
|
-
|
|
1354
|
-
/**
|
|
1355
|
-
* RenewAire CORES API
|
|
1356
|
-
*
|
|
1357
|
-
* Contact: renewaire@saritasa.com
|
|
1358
|
-
*
|
|
1359
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1360
|
-
* https://openapi-generator.tech
|
|
1361
|
-
* Do not edit the class manually.
|
|
1362
|
-
*/
|
|
1363
|
-
|
|
1364
|
-
/**
|
|
1365
|
-
* Design weather condition DTO for RenewAire.Cores.Domain.Projects.DesignWeatherCondition.
|
|
1366
|
-
*/
|
|
1367
|
-
interface DesignWeatherConditionDto {
|
|
1368
|
-
/**
|
|
1369
|
-
* DTO for RenewAire.Cores.Domain.Temperature.
|
|
1370
|
-
*/
|
|
1371
|
-
dryBulb: TemperatureDto;
|
|
1372
|
-
/**
|
|
1373
|
-
* DTO for RenewAire.Cores.Domain.Temperature.
|
|
1374
|
-
*/
|
|
1375
|
-
wetBulb: TemperatureDto;
|
|
1376
|
-
/**
|
|
1377
|
-
* Allows to determine which of the two options is selected in RenewAire.Cores.Domain.Projects.DesignWeatherCondition.<br />DesignWeatherMode<br />0 = RelativeHumidity<br />1 = WetBulb
|
|
1378
|
-
*/
|
|
1379
|
-
designWeatherMode: DesignWeatherMode;
|
|
1380
|
-
relativeHumidity?: number | null;
|
|
1381
|
-
}
|
|
1382
|
-
|
|
1383
|
-
/**
|
|
1384
|
-
* RenewAire CORES API
|
|
1385
|
-
*
|
|
1386
|
-
* Contact: renewaire@saritasa.com
|
|
1387
|
-
*
|
|
1388
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1389
|
-
* https://openapi-generator.tech
|
|
1390
|
-
* Do not edit the class manually.
|
|
1391
|
-
*/
|
|
1392
|
-
/**
|
|
1393
|
-
* DTO for RenewAire.Cores.Domain.Distance.
|
|
1394
|
-
*/
|
|
1395
|
-
interface DistanceDto {
|
|
1396
|
-
feet?: number | null;
|
|
1397
|
-
meters?: number | null;
|
|
1398
|
-
}
|
|
1399
|
-
|
|
1400
1472
|
/**
|
|
1401
1473
|
* RenewAire CORES API
|
|
1402
1474
|
*
|
|
@@ -1536,6 +1608,10 @@ interface GroupDto {
|
|
|
1536
1608
|
* Data/time of RenewAire.Cores.Domain.Users.Group.IsActive change.
|
|
1537
1609
|
*/
|
|
1538
1610
|
activeChangedAt: string;
|
|
1611
|
+
/**
|
|
1612
|
+
* Creation data/time.
|
|
1613
|
+
*/
|
|
1614
|
+
createdAt: string;
|
|
1539
1615
|
/**
|
|
1540
1616
|
* ERP customer name. Some groups in the site would be customers, but we would need something to tell us which ones are customers and what their customer information is. The Customer # and Customer Name would come from the ERP. We would then use the customer # on any projects that a user creates. This part deals with the integration and the ERP Team at RenewAire does not yet have everything set in the new system to answer my questions.
|
|
1541
1617
|
*/
|
|
@@ -3167,10 +3243,6 @@ interface SaveRepTerritoryRepContactDto {
|
|
|
3167
3243
|
* DTO to save RenewAire.Cores.Domain.Users.UserDesignConditions.
|
|
3168
3244
|
*/
|
|
3169
3245
|
interface SaveUserDesignConditionsDto {
|
|
3170
|
-
/**
|
|
3171
|
-
* Related user id.
|
|
3172
|
-
*/
|
|
3173
|
-
userId: number;
|
|
3174
3246
|
/**
|
|
3175
3247
|
* Weather station state.
|
|
3176
3248
|
*/
|
|
@@ -4464,74 +4536,6 @@ interface UploadUrlResult {
|
|
|
4464
4536
|
postPreSignedUrl: PostPreSignedUrlDto;
|
|
4465
4537
|
}
|
|
4466
4538
|
|
|
4467
|
-
/**
|
|
4468
|
-
* RenewAire CORES API
|
|
4469
|
-
*
|
|
4470
|
-
* Contact: renewaire@saritasa.com
|
|
4471
|
-
*
|
|
4472
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4473
|
-
* https://openapi-generator.tech
|
|
4474
|
-
* Do not edit the class manually.
|
|
4475
|
-
*/
|
|
4476
|
-
|
|
4477
|
-
/**
|
|
4478
|
-
* User design condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
4479
|
-
*/
|
|
4480
|
-
interface UserDesignConditionsDto {
|
|
4481
|
-
/**
|
|
4482
|
-
* Related user id.
|
|
4483
|
-
*/
|
|
4484
|
-
userId: number;
|
|
4485
|
-
/**
|
|
4486
|
-
* Weather station state.
|
|
4487
|
-
*/
|
|
4488
|
-
weatherStationState: string;
|
|
4489
|
-
/**
|
|
4490
|
-
* Weather station code.
|
|
4491
|
-
*/
|
|
4492
|
-
weatherStation: string;
|
|
4493
|
-
/**
|
|
4494
|
-
* DTO for RenewAire.Cores.Domain.Distance.
|
|
4495
|
-
*/
|
|
4496
|
-
elevation: DistanceDto;
|
|
4497
|
-
/**
|
|
4498
|
-
* Climate zone. It if filled from weather stations list.
|
|
4499
|
-
*/
|
|
4500
|
-
climateZone: string;
|
|
4501
|
-
/**
|
|
4502
|
-
* Design weather condition DTO for RenewAire.Cores.Domain.Projects.DesignWeatherCondition.
|
|
4503
|
-
*/
|
|
4504
|
-
summerOutsideAir: DesignWeatherConditionDto;
|
|
4505
|
-
/**
|
|
4506
|
-
* Design weather condition DTO for RenewAire.Cores.Domain.Projects.DesignWeatherCondition.
|
|
4507
|
-
*/
|
|
4508
|
-
summerReturnAir: DesignWeatherConditionDto;
|
|
4509
|
-
/**
|
|
4510
|
-
* Design weather condition DTO for RenewAire.Cores.Domain.Projects.DesignWeatherCondition.
|
|
4511
|
-
*/
|
|
4512
|
-
winterOutsideAir: DesignWeatherConditionDto;
|
|
4513
|
-
/**
|
|
4514
|
-
* Design weather condition DTO for RenewAire.Cores.Domain.Projects.DesignWeatherCondition.
|
|
4515
|
-
*/
|
|
4516
|
-
winterReturnAir: DesignWeatherConditionDto;
|
|
4517
|
-
/**
|
|
4518
|
-
* Cooling percentile day.
|
|
4519
|
-
*/
|
|
4520
|
-
coolingPercentileDay?: number | null;
|
|
4521
|
-
/**
|
|
4522
|
-
* Heating percentile day.
|
|
4523
|
-
*/
|
|
4524
|
-
heatingPercentileDay?: number | null;
|
|
4525
|
-
/**
|
|
4526
|
-
* CoolingDesignBasis<br />0 = Cooling<br />1 = Dehumidification
|
|
4527
|
-
*/
|
|
4528
|
-
coolingDesignBasis?: CoolingDesignBasis | null;
|
|
4529
|
-
/**
|
|
4530
|
-
* AshraeVersion<br />0 = V2007<br />1 = V2010<br />2 = V2013<br />3 = V2016<br />4 = V2019<br />5 = V2022<br />Required permissions: SystemAdmin | ViewAshraeOptions
|
|
4531
|
-
*/
|
|
4532
|
-
ashraeVersion?: AshraeVersion | null;
|
|
4533
|
-
}
|
|
4534
|
-
|
|
4535
4539
|
/**
|
|
4536
4540
|
* RenewAire CORES API
|
|
4537
4541
|
*
|
|
@@ -4655,6 +4659,10 @@ interface UserDetailsDto {
|
|
|
4655
4659
|
* DTO for user quote settings.
|
|
4656
4660
|
*/
|
|
4657
4661
|
quote?: UserQuoteDto | null;
|
|
4662
|
+
/**
|
|
4663
|
+
* User design conditions DTO.
|
|
4664
|
+
*/
|
|
4665
|
+
designConditions?: UserDesignConditionsDto | null;
|
|
4658
4666
|
}
|
|
4659
4667
|
|
|
4660
4668
|
/**
|
|
@@ -5304,6 +5312,7 @@ interface GroupsSearchGroupsRequestParams {
|
|
|
5304
5312
|
isActive?: boolean;
|
|
5305
5313
|
erpCustomerName?: string;
|
|
5306
5314
|
customerType?: GroupCustomerType | null;
|
|
5315
|
+
createdAt?: string;
|
|
5307
5316
|
repTerritoryName?: string;
|
|
5308
5317
|
permissionBundleName?: string;
|
|
5309
5318
|
erpCustomerNumber?: string;
|
|
@@ -5339,7 +5348,7 @@ interface GroupsApiServiceInterface {
|
|
|
5339
5348
|
*/
|
|
5340
5349
|
groupsRemoveGroup(requestParameters: GroupsRemoveGroupRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
5341
5350
|
/**
|
|
5342
|
-
* Search user groups
|
|
5351
|
+
* Search user groups.
|
|
5343
5352
|
*
|
|
5344
5353
|
* @param requestParameters
|
|
5345
5354
|
*/
|
|
@@ -5419,7 +5428,7 @@ declare class GroupsApiService extends BaseService implements GroupsApiServiceIn
|
|
|
5419
5428
|
transferCache?: boolean;
|
|
5420
5429
|
}): Observable<HttpEvent<any>>;
|
|
5421
5430
|
/**
|
|
5422
|
-
* Search user groups
|
|
5431
|
+
* Search user groups.
|
|
5423
5432
|
* @param requestParameters
|
|
5424
5433
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5425
5434
|
* @param reportProgress flag to report request and response progress.
|
|
@@ -7688,88 +7697,6 @@ declare class StaticFilesApiService extends BaseService implements StaticFilesAp
|
|
|
7688
7697
|
static ɵprov: i0.ɵɵInjectableDeclaration<StaticFilesApiService>;
|
|
7689
7698
|
}
|
|
7690
7699
|
|
|
7691
|
-
/**
|
|
7692
|
-
* RenewAire CORES API
|
|
7693
|
-
*
|
|
7694
|
-
* Contact: renewaire@saritasa.com
|
|
7695
|
-
*
|
|
7696
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7697
|
-
* https://openapi-generator.tech
|
|
7698
|
-
* Do not edit the class manually.
|
|
7699
|
-
*/
|
|
7700
|
-
|
|
7701
|
-
interface UserDesignConditionsGetProjectDesignConditionsRequestParams {
|
|
7702
|
-
userId: number;
|
|
7703
|
-
}
|
|
7704
|
-
interface UserDesignConditionsSaveProjectDesignConditionsRequestParams {
|
|
7705
|
-
saveUserDesignConditionsDto?: SaveUserDesignConditionsDto;
|
|
7706
|
-
}
|
|
7707
|
-
interface UserDesignConditionsApiServiceInterface {
|
|
7708
|
-
defaultHeaders: HttpHeaders;
|
|
7709
|
-
configuration: Configuration;
|
|
7710
|
-
/**
|
|
7711
|
-
* Get user design conditions.
|
|
7712
|
-
*
|
|
7713
|
-
* @param requestParameters
|
|
7714
|
-
*/
|
|
7715
|
-
userDesignConditionsGetProjectDesignConditions(requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams, extraHttpRequestParams?: any): Observable<UserDesignConditionsDto>;
|
|
7716
|
-
/**
|
|
7717
|
-
* Save user design conditions.
|
|
7718
|
-
*
|
|
7719
|
-
* @param requestParameters
|
|
7720
|
-
*/
|
|
7721
|
-
userDesignConditionsSaveProjectDesignConditions(requestParameters: UserDesignConditionsSaveProjectDesignConditionsRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
7722
|
-
}
|
|
7723
|
-
|
|
7724
|
-
declare class UserDesignConditionsApiService extends BaseService implements UserDesignConditionsApiServiceInterface {
|
|
7725
|
-
protected httpClient: HttpClient;
|
|
7726
|
-
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
7727
|
-
/**
|
|
7728
|
-
* Get user design conditions.
|
|
7729
|
-
* @param requestParameters
|
|
7730
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7731
|
-
* @param reportProgress flag to report request and response progress.
|
|
7732
|
-
*/
|
|
7733
|
-
userDesignConditionsGetProjectDesignConditions(requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
7734
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7735
|
-
context?: HttpContext;
|
|
7736
|
-
transferCache?: boolean;
|
|
7737
|
-
}): Observable<UserDesignConditionsDto>;
|
|
7738
|
-
userDesignConditionsGetProjectDesignConditions(requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
7739
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7740
|
-
context?: HttpContext;
|
|
7741
|
-
transferCache?: boolean;
|
|
7742
|
-
}): Observable<HttpResponse<UserDesignConditionsDto>>;
|
|
7743
|
-
userDesignConditionsGetProjectDesignConditions(requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
7744
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7745
|
-
context?: HttpContext;
|
|
7746
|
-
transferCache?: boolean;
|
|
7747
|
-
}): Observable<HttpEvent<UserDesignConditionsDto>>;
|
|
7748
|
-
/**
|
|
7749
|
-
* Save user design conditions.
|
|
7750
|
-
* @param requestParameters
|
|
7751
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7752
|
-
* @param reportProgress flag to report request and response progress.
|
|
7753
|
-
*/
|
|
7754
|
-
userDesignConditionsSaveProjectDesignConditions(requestParameters?: UserDesignConditionsSaveProjectDesignConditionsRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
7755
|
-
httpHeaderAccept?: undefined;
|
|
7756
|
-
context?: HttpContext;
|
|
7757
|
-
transferCache?: boolean;
|
|
7758
|
-
}): Observable<any>;
|
|
7759
|
-
userDesignConditionsSaveProjectDesignConditions(requestParameters?: UserDesignConditionsSaveProjectDesignConditionsRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
7760
|
-
httpHeaderAccept?: undefined;
|
|
7761
|
-
context?: HttpContext;
|
|
7762
|
-
transferCache?: boolean;
|
|
7763
|
-
}): Observable<HttpResponse<any>>;
|
|
7764
|
-
userDesignConditionsSaveProjectDesignConditions(requestParameters?: UserDesignConditionsSaveProjectDesignConditionsRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
7765
|
-
httpHeaderAccept?: undefined;
|
|
7766
|
-
context?: HttpContext;
|
|
7767
|
-
transferCache?: boolean;
|
|
7768
|
-
}): Observable<HttpEvent<any>>;
|
|
7769
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UserDesignConditionsApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
7770
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<UserDesignConditionsApiService>;
|
|
7771
|
-
}
|
|
7772
|
-
|
|
7773
7700
|
/**
|
|
7774
7701
|
* RenewAire CORES API
|
|
7775
7702
|
*
|
|
@@ -7952,6 +7879,10 @@ interface UsersSetUserPasswordRequestParams {
|
|
|
7952
7879
|
interface UsersSetUserProfileRequestParams {
|
|
7953
7880
|
userProfileDto?: UserProfileDto;
|
|
7954
7881
|
}
|
|
7882
|
+
interface UsersUpdateUserDesignConditionsRequestParams {
|
|
7883
|
+
userId: number;
|
|
7884
|
+
saveUserDesignConditionsDto?: SaveUserDesignConditionsDto;
|
|
7885
|
+
}
|
|
7955
7886
|
interface UsersUpdateUserDetailsRequestParams {
|
|
7956
7887
|
userId: number;
|
|
7957
7888
|
contactInformationFirstName: string;
|
|
@@ -8114,6 +8045,12 @@ interface UsersApiServiceInterface {
|
|
|
8114
8045
|
* @param requestParameters
|
|
8115
8046
|
*/
|
|
8116
8047
|
usersSetUserProfile(requestParameters: UsersSetUserProfileRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
8048
|
+
/**
|
|
8049
|
+
* Update user design conditions.
|
|
8050
|
+
*
|
|
8051
|
+
* @param requestParameters
|
|
8052
|
+
*/
|
|
8053
|
+
usersUpdateUserDesignConditions(requestParameters: UsersUpdateUserDesignConditionsRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
8117
8054
|
/**
|
|
8118
8055
|
* Update user details settings (name / contact information / avatars / etc.).
|
|
8119
8056
|
*
|
|
@@ -8588,6 +8525,27 @@ declare class UsersApiService extends BaseService implements UsersApiServiceInte
|
|
|
8588
8525
|
context?: HttpContext;
|
|
8589
8526
|
transferCache?: boolean;
|
|
8590
8527
|
}): Observable<HttpEvent<any>>;
|
|
8528
|
+
/**
|
|
8529
|
+
* Update user design conditions.
|
|
8530
|
+
* @param requestParameters
|
|
8531
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
8532
|
+
* @param reportProgress flag to report request and response progress.
|
|
8533
|
+
*/
|
|
8534
|
+
usersUpdateUserDesignConditions(requestParameters: UsersUpdateUserDesignConditionsRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
8535
|
+
httpHeaderAccept?: undefined;
|
|
8536
|
+
context?: HttpContext;
|
|
8537
|
+
transferCache?: boolean;
|
|
8538
|
+
}): Observable<any>;
|
|
8539
|
+
usersUpdateUserDesignConditions(requestParameters: UsersUpdateUserDesignConditionsRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
8540
|
+
httpHeaderAccept?: undefined;
|
|
8541
|
+
context?: HttpContext;
|
|
8542
|
+
transferCache?: boolean;
|
|
8543
|
+
}): Observable<HttpResponse<any>>;
|
|
8544
|
+
usersUpdateUserDesignConditions(requestParameters: UsersUpdateUserDesignConditionsRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
8545
|
+
httpHeaderAccept?: undefined;
|
|
8546
|
+
context?: HttpContext;
|
|
8547
|
+
transferCache?: boolean;
|
|
8548
|
+
}): Observable<HttpEvent<any>>;
|
|
8591
8549
|
/**
|
|
8592
8550
|
* Update user details settings (name / contact information / avatars / etc.).
|
|
8593
8551
|
* @param requestParameters
|
|
@@ -8906,7 +8864,7 @@ declare class UsersManagementApiService extends BaseService implements UsersMana
|
|
|
8906
8864
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsersManagementApiService>;
|
|
8907
8865
|
}
|
|
8908
8866
|
|
|
8909
|
-
declare const APIS: (typeof AuditLogsApiService | typeof AuthApiService | typeof ControllerProgramsApiService | typeof FeedbacksApiService | typeof GroupsApiService | typeof KnownContactsApiService | typeof LeadTimesApiService | typeof MaintenanceApiService | typeof PermissionBundlesApiService | typeof PermissionsApiService | typeof ProjectStatusesApiService | typeof ProjectsApiService | typeof RegionsApiService | typeof RepContactsApiService | typeof RepSalesReportsApiService | typeof RepTerritoriesApiService | typeof RepTerritoryLocationsApiService | typeof RsdRegionsApiService | typeof S3ApiService | typeof StaticFilesApiService | typeof
|
|
8867
|
+
declare const APIS: (typeof AuditLogsApiService | typeof AuthApiService | typeof ControllerProgramsApiService | typeof FeedbacksApiService | typeof GroupsApiService | typeof KnownContactsApiService | typeof LeadTimesApiService | typeof MaintenanceApiService | typeof PermissionBundlesApiService | typeof PermissionsApiService | typeof ProjectStatusesApiService | typeof ProjectsApiService | typeof RegionsApiService | typeof RepContactsApiService | typeof RepSalesReportsApiService | typeof RepTerritoriesApiService | typeof RepTerritoryLocationsApiService | typeof RsdRegionsApiService | typeof S3ApiService | typeof StaticFilesApiService | typeof UserTablesApiService | typeof UsersApiService | typeof UsersManagementApiService)[];
|
|
8910
8868
|
|
|
8911
8869
|
declare const BASE_PATH: InjectionToken<string>;
|
|
8912
8870
|
declare const COLLECTION_FORMATS: {
|
|
@@ -8926,5 +8884,5 @@ declare class ApiModule {
|
|
|
8926
8884
|
|
|
8927
8885
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
8928
8886
|
|
|
8929
|
-
export { APIS, AddressCountry, ApiModule, AshraeVersion, AuditEntity, AuditLogsApiService, AuthApiService, BASE_PATH, BuildingCategory, BuildingType, COLLECTION_FORMATS, Configuration, ConstructionOrderType, ControllerProgramReleaseType, ControllerProgramType, ControllerProgramsApiService, CoolingDesignBasis, DesignWeatherMode, FeedbackType, FeedbacksApiService, FileType, GroupCustomerType, GroupType, GroupsApiService, KnownContactsApiService, Language, LeadTimeType, LeadTimesApiService, MaintenanceApiService, OperationType, Permission, PermissionBundlesApiService, PermissionsApiService, ProjectStatus, ProjectStatusesApiService, ProjectsApiService, RegionLevel, RegionsApiService, RegistrationStatus, RepContactsApiService, RepSalesReportsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, S3ApiService, StaticFilesApiService, UnitSystem,
|
|
8930
|
-
export type { AddressDto, AuditLogChange, AuditLogDto, AuditLogDtoPagedListMetadataDto, AuditLogsApiServiceInterface, AuditLogsSearchAuditLogsRequestParams, AuthApiServiceInterface, AuthAuthenticateByEmailTokenRequestParams, AuthAuthenticateRequestParams, AuthUpdateUserTokenPermissionsRequestParams, BaseStatusChangeCommand, CancelQuoteRequestCommand, ChangeCurrentUserPasswordCommand, ChangeEmailCommand, CompanyInformationDto, ConfigurationParameters, ConnectedGroupDto, ContactDto, ControllerProgramDto, ControllerProgramDtoPagedListMetadataDto, ControllerProgramsApiServiceInterface, ControllerProgramsCreateControllerProgramRequestParams, ControllerProgramsCreateFileDownloadUrlRequestParams, ControllerProgramsGetControllerProgramRequestParams, ControllerProgramsSearchControllerProgramsRequestParams, ControllerProgramsUpdateControllerProgramRequestParams, CreateLeadTimeGroupDto, CreateRepSalesReportCommand, CreateUploadUrlCommand, CurrentUserDetailsDto, CurrentUserDto, DataFormat, DataType, DesignWeatherConditionDto, DistanceDto, EmailConfirmationTokenDto, FeedbacksApiServiceInterface, FeedbacksCreateFeedbackRequestParams, FileDto, ForgotPasswordCommand, GroupDto, GroupsApiServiceInterface, GroupsCreateGroupRequestParams, GroupsGetGroupRequestParams, GroupsRemoveGroupRequestParams, GroupsSearchGroupsRequestParams, GroupsUpdateGroupRequestParams, IdNameDto, Int32IdDto, InviteDto, KnownContactsApiServiceInterface, KnownContactsCreateKnowContactRequestParams, KnownContactsRemoveKnownContactRequestParams, KnownContactsSearchKnownContactsRequestParams, KnownContactsUpdateKnownContactRequestParams, LeadTimeDto, LeadTimeGroupDto, LeadTimesApiServiceInterface, LeadTimesCreateLeadTimeGroupRequestParams, LeadTimesUpdateLeadTimeGroupRequestParams, LoginUserCommand, MaintenanceApiServiceInterface, MaintenanceSetMaintenanceModeRequestParams, OffsetLimitListMetadata, PagedListMetadata, Param, ParamLocation, ParamStyle, PermissionBundleDto, PermissionBundlesApiServiceInterface, PermissionBundlesCreatePermissionBundleRequestParams, PermissionBundlesGetPermissionBundleRequestParams, PermissionBundlesRemovePermissionBundleRequestParams, PermissionBundlesSearchPermissionBundlesRequestParams, PermissionBundlesUpdatePermissionBundleRequestParams, PermissionDto, PermissionsApiServiceInterface, PostPreSignedUrlDto, ProjectDesignConditionsDto, ProjectDto, ProjectEditModeDto, ProjectFacilityAddressDto, ProjectFacilityDto, ProjectIdIdDto, ProjectStatusesApiServiceInterface, ProjectStatusesCancelQuoteRequestRequestParams, ProjectStatusesRequestOrderRequestParams, ProjectStatusesRequestQuote0RequestParams, ProjectStatusesRequestQuoteRequestParams, ProjectStatusesSubmitQuoteRequestParams, ProjectStatusesSubmitToRenewAireRequestParams, ProjectsApiServiceInterface, ProjectsCreateProjectRequestParams, ProjectsExtendProjectEditModeRequestParams, ProjectsGetProjectRequestParams, ProjectsSearchProjectsRequestParams, ProjectsStartEditProjectRequestParams, ProjectsStopEditProjectRequestParams, ProjectsUpdateProjectRequestParams, RegionsApiServiceInterface, RegionsSearchRegionsRequestParams, RejectQuoteCommand, RepContactsApiServiceInterface, RepContactsGetRepTerritoryRepContactRequestParams, RepContactsRemoveRepTerritoryRepContactRequestParams, RepContactsSearchRepTerritoryRepContactRequestParams, RepContactsUpdateRepTerritoryRepContactRequestParams, RepSalesReportDto, RepSalesReportDtoPagedListMetadataDto, RepSalesReportsApiServiceInterface, RepSalesReportsCreateRepSalesReportDownloadUrlRequestParams, RepSalesReportsCreateRepSalesReportRequestParams, RepSalesReportsGetRepSalesReportRequestParams, RepSalesReportsRemoveRepSalesReportRequestParams, RepSalesReportsSearchRepSalesReportsRequestParams, RepTerritoriesApiServiceInterface, RepTerritoriesCreateRepTerritoryLocationRequestParams, RepTerritoriesCreateRepTerritoryRepContactRequestParams, RepTerritoriesCreateRepTerritoryRequestParams, RepTerritoriesGetRepTerritoryRequestParams, RepTerritoriesRemoveRepTerritoryRequestParams, RepTerritoriesSearchRepTerritoriesRequestParams, RepTerritoriesUpdateRepTerritoryRequestParams, RepTerritoryContactsDto, RepTerritoryDto, RepTerritoryLocationDto, RepTerritoryLocationsApiServiceInterface, RepTerritoryLocationsGetRepTerritoryLocationRequestParams, RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams, RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams, RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams, RepTerritoryRepContactDto, RequestChangeEmailCommand, RequestOrderCommand, RequestQuoteCommand, ResetPasswordCommand, RsdRegionDocumentDto, RsdRegionDto, RsdRegionRepTerritoryDto, RsdRegionUserDto, RsdRegionsApiServiceInterface, RsdRegionsCreateRsdRegionRequestParams, RsdRegionsGetRsdRegionDocumentDownloadUrlRequestParams, RsdRegionsGetRsdRegionDocumentPreviewRequestParams, RsdRegionsGetRsdRegionRequestParams, RsdRegionsRemoveRsdRegionRequestParams, RsdRegionsSearchRsdRegionTagsRequestParams, RsdRegionsSearchRsdRegionsRequestParams, RsdRegionsUpdateRsdRegionRequestParams, S3ApiServiceInterface, S3CreateFileUploadUrlRequestParams, SalesContactDto, SaveControllerProgramDto, SaveGroupDto, SaveKnownContactDto, SaveLeadTimeDto, SavePermissionBundleDto, SaveRepTerritoryLocationDto, SaveRepTerritoryRepContactDto, SaveUserDesignConditionsDto, SaveUserProjectSettingsDto, SaveUserQuoteSettingsDto, SearchGroupDto, SearchGroupDtoPagedListMetadataDto, SearchKnownContactDto, SearchKnownContactDtoPagedListMetadataDto, SearchPermissionBundleDto, SearchPermissionBundleDtoPagedListMetadataDto, SearchProjectDto, SearchProjectDtoPagedListMetadataDto, SearchRegionDto, SearchRegionDtoPagedListMetadataDto, SearchRepTerritoryDto, SearchRepTerritoryDtoPagedListMetadataDto, SearchRepTerritoryLocationDto, SearchRepTerritoryLocationDtoPagedListMetadataDto, SearchRepTerritoryRepContactDto, SearchRepTerritoryRepContactDtoPagedListMetadataDto, SearchRsdRegionDto, SearchRsdRegionDtoPagedListMetadataDto, SearchUserDetailsDto, SearchUserDetailsDtoPagedListMetadataDto, SearchUserDto, SearchUserDtoPagedListMetadataDto, SetAddressDto, SetPreferredLanguageCommand, SetUserOccupationCommand, SetUserPasswordCommand, StandardDataFormat, StandardDataType, StandardParamStyle, StaticFilesApiServiceInterface, StaticFilesGetRequestParams, StringPagedListMetadataDto, SubmitQuoteCommand, SubmitToRenewAireCommand, TableSettingDto, TableSettingsGetTableSettingRequestParams, TableSettingsSaveTableSettingRequestParams, TemperatureDto, TokenModel, TotalCountListMetadata, UpdateLeadTimeGroupDto, UpdateProjectDto, UpdateProjectDtoJsonPatchDocument, UpdateProjectDtoOperation, UpdateRepTerritoryLocationDto, UpdateUserTokenPermissionsCommand, UploadFileDto, UploadUrlResult,
|
|
8887
|
+
export { APIS, AddressCountry, ApiModule, AshraeVersion, AuditEntity, AuditLogsApiService, AuthApiService, BASE_PATH, BuildingCategory, BuildingType, COLLECTION_FORMATS, Configuration, ConstructionOrderType, ControllerProgramReleaseType, ControllerProgramType, ControllerProgramsApiService, CoolingDesignBasis, DesignWeatherMode, FeedbackType, FeedbacksApiService, FileType, GroupCustomerType, GroupType, GroupsApiService, KnownContactsApiService, Language, LeadTimeType, LeadTimesApiService, MaintenanceApiService, OperationType, Permission, PermissionBundlesApiService, PermissionsApiService, ProjectStatus, ProjectStatusesApiService, ProjectsApiService, RegionLevel, RegionsApiService, RegistrationStatus, RepContactsApiService, RepSalesReportsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, S3ApiService, StaticFilesApiService, UnitSystem, UserStatus, UserTablesApiService, UsersApiService, UsersManagementApiService, provideApi };
|
|
8888
|
+
export type { AddressDto, AuditLogChange, AuditLogDto, AuditLogDtoPagedListMetadataDto, AuditLogsApiServiceInterface, AuditLogsSearchAuditLogsRequestParams, AuthApiServiceInterface, AuthAuthenticateByEmailTokenRequestParams, AuthAuthenticateRequestParams, AuthUpdateUserTokenPermissionsRequestParams, BaseStatusChangeCommand, CancelQuoteRequestCommand, ChangeCurrentUserPasswordCommand, ChangeEmailCommand, CompanyInformationDto, ConfigurationParameters, ConnectedGroupDto, ContactDto, ControllerProgramDto, ControllerProgramDtoPagedListMetadataDto, ControllerProgramsApiServiceInterface, ControllerProgramsCreateControllerProgramRequestParams, ControllerProgramsCreateFileDownloadUrlRequestParams, ControllerProgramsGetControllerProgramRequestParams, ControllerProgramsSearchControllerProgramsRequestParams, ControllerProgramsUpdateControllerProgramRequestParams, CreateLeadTimeGroupDto, CreateRepSalesReportCommand, CreateUploadUrlCommand, CurrentUserDetailsDto, CurrentUserDto, DataFormat, DataType, DesignWeatherConditionDto, DistanceDto, EmailConfirmationTokenDto, FeedbacksApiServiceInterface, FeedbacksCreateFeedbackRequestParams, FileDto, ForgotPasswordCommand, GroupDto, GroupsApiServiceInterface, GroupsCreateGroupRequestParams, GroupsGetGroupRequestParams, GroupsRemoveGroupRequestParams, GroupsSearchGroupsRequestParams, GroupsUpdateGroupRequestParams, IdNameDto, Int32IdDto, InviteDto, KnownContactsApiServiceInterface, KnownContactsCreateKnowContactRequestParams, KnownContactsRemoveKnownContactRequestParams, KnownContactsSearchKnownContactsRequestParams, KnownContactsUpdateKnownContactRequestParams, LeadTimeDto, LeadTimeGroupDto, LeadTimesApiServiceInterface, LeadTimesCreateLeadTimeGroupRequestParams, LeadTimesUpdateLeadTimeGroupRequestParams, LoginUserCommand, MaintenanceApiServiceInterface, MaintenanceSetMaintenanceModeRequestParams, OffsetLimitListMetadata, PagedListMetadata, Param, ParamLocation, ParamStyle, PermissionBundleDto, PermissionBundlesApiServiceInterface, PermissionBundlesCreatePermissionBundleRequestParams, PermissionBundlesGetPermissionBundleRequestParams, PermissionBundlesRemovePermissionBundleRequestParams, PermissionBundlesSearchPermissionBundlesRequestParams, PermissionBundlesUpdatePermissionBundleRequestParams, PermissionDto, PermissionsApiServiceInterface, PostPreSignedUrlDto, ProjectDesignConditionsDto, ProjectDto, ProjectEditModeDto, ProjectFacilityAddressDto, ProjectFacilityDto, ProjectIdIdDto, ProjectStatusesApiServiceInterface, ProjectStatusesCancelQuoteRequestRequestParams, ProjectStatusesRequestOrderRequestParams, ProjectStatusesRequestQuote0RequestParams, ProjectStatusesRequestQuoteRequestParams, ProjectStatusesSubmitQuoteRequestParams, ProjectStatusesSubmitToRenewAireRequestParams, ProjectsApiServiceInterface, ProjectsCreateProjectRequestParams, ProjectsExtendProjectEditModeRequestParams, ProjectsGetProjectRequestParams, ProjectsSearchProjectsRequestParams, ProjectsStartEditProjectRequestParams, ProjectsStopEditProjectRequestParams, ProjectsUpdateProjectRequestParams, RegionsApiServiceInterface, RegionsSearchRegionsRequestParams, RejectQuoteCommand, RepContactsApiServiceInterface, RepContactsGetRepTerritoryRepContactRequestParams, RepContactsRemoveRepTerritoryRepContactRequestParams, RepContactsSearchRepTerritoryRepContactRequestParams, RepContactsUpdateRepTerritoryRepContactRequestParams, RepSalesReportDto, RepSalesReportDtoPagedListMetadataDto, RepSalesReportsApiServiceInterface, RepSalesReportsCreateRepSalesReportDownloadUrlRequestParams, RepSalesReportsCreateRepSalesReportRequestParams, RepSalesReportsGetRepSalesReportRequestParams, RepSalesReportsRemoveRepSalesReportRequestParams, RepSalesReportsSearchRepSalesReportsRequestParams, RepTerritoriesApiServiceInterface, RepTerritoriesCreateRepTerritoryLocationRequestParams, RepTerritoriesCreateRepTerritoryRepContactRequestParams, RepTerritoriesCreateRepTerritoryRequestParams, RepTerritoriesGetRepTerritoryRequestParams, RepTerritoriesRemoveRepTerritoryRequestParams, RepTerritoriesSearchRepTerritoriesRequestParams, RepTerritoriesUpdateRepTerritoryRequestParams, RepTerritoryContactsDto, RepTerritoryDto, RepTerritoryLocationDto, RepTerritoryLocationsApiServiceInterface, RepTerritoryLocationsGetRepTerritoryLocationRequestParams, RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams, RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams, RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams, RepTerritoryRepContactDto, RequestChangeEmailCommand, RequestOrderCommand, RequestQuoteCommand, ResetPasswordCommand, RsdRegionDocumentDto, RsdRegionDto, RsdRegionRepTerritoryDto, RsdRegionUserDto, RsdRegionsApiServiceInterface, RsdRegionsCreateRsdRegionRequestParams, RsdRegionsGetRsdRegionDocumentDownloadUrlRequestParams, RsdRegionsGetRsdRegionDocumentPreviewRequestParams, RsdRegionsGetRsdRegionRequestParams, RsdRegionsRemoveRsdRegionRequestParams, RsdRegionsSearchRsdRegionTagsRequestParams, RsdRegionsSearchRsdRegionsRequestParams, RsdRegionsUpdateRsdRegionRequestParams, S3ApiServiceInterface, S3CreateFileUploadUrlRequestParams, SalesContactDto, SaveControllerProgramDto, SaveGroupDto, SaveKnownContactDto, SaveLeadTimeDto, SavePermissionBundleDto, SaveRepTerritoryLocationDto, SaveRepTerritoryRepContactDto, SaveUserDesignConditionsDto, SaveUserProjectSettingsDto, SaveUserQuoteSettingsDto, SearchGroupDto, SearchGroupDtoPagedListMetadataDto, SearchKnownContactDto, SearchKnownContactDtoPagedListMetadataDto, SearchPermissionBundleDto, SearchPermissionBundleDtoPagedListMetadataDto, SearchProjectDto, SearchProjectDtoPagedListMetadataDto, SearchRegionDto, SearchRegionDtoPagedListMetadataDto, SearchRepTerritoryDto, SearchRepTerritoryDtoPagedListMetadataDto, SearchRepTerritoryLocationDto, SearchRepTerritoryLocationDtoPagedListMetadataDto, SearchRepTerritoryRepContactDto, SearchRepTerritoryRepContactDtoPagedListMetadataDto, SearchRsdRegionDto, SearchRsdRegionDtoPagedListMetadataDto, SearchUserDetailsDto, SearchUserDetailsDtoPagedListMetadataDto, SearchUserDto, SearchUserDtoPagedListMetadataDto, SetAddressDto, SetPreferredLanguageCommand, SetUserOccupationCommand, SetUserPasswordCommand, StandardDataFormat, StandardDataType, StandardParamStyle, StaticFilesApiServiceInterface, StaticFilesGetRequestParams, StringPagedListMetadataDto, SubmitQuoteCommand, SubmitToRenewAireCommand, TableSettingDto, TableSettingsGetTableSettingRequestParams, TableSettingsSaveTableSettingRequestParams, TemperatureDto, TokenModel, TotalCountListMetadata, UpdateLeadTimeGroupDto, UpdateProjectDto, UpdateProjectDtoJsonPatchDocument, UpdateProjectDtoOperation, UpdateRepTerritoryLocationDto, UpdateUserTokenPermissionsCommand, UploadFileDto, UploadUrlResult, UserDesignConditionsDto, UserDetailsDto, UserEmailDto, UserPermissionDto, UserPermissionSourceDto, UserProfileDto, UserQuoteDto, UserTablesApiServiceInterface, UsersAdminSetUserPasswordRequestParams, UsersApiServiceInterface, UsersChangeCurrentUserPasswordRequestParams, UsersChangeEmailRequestParams, UsersConfirmEmailRequestParams, UsersDeactivateRequestParams, UsersForgotPasswordRequestParams, UsersGetRepContactsRequestParams, UsersGetUserPermissionsRequestParams, UsersGetUserProfileRequestParams, UsersManagementApiServiceInterface, UsersManagementCreateUserRequestParams, UsersManagementGetUserRequestParams, UsersManagementSearchUsersRequestParams, UsersManagementUpdateUserRequestParams, UsersRequestChangeEmailRequestParams, UsersRequestConfirmEmailRequestParams, UsersResetPasswordRequestParams, UsersSearchUsersRequestParams, UsersSendInviteRequestParams, UsersSetPreferredLanguageRequestParams, UsersSetUserAddressRequestParams, UsersSetUserOccupationRequestParams, UsersSetUserPasswordRequestParams, UsersSetUserProfileRequestParams, UsersUpdateUserDesignConditionsRequestParams, UsersUpdateUserDetailsRequestParams, UsersUpdateUserProfileSettingsRequestParams, UsersUpdateUserProjectSettingsRequestParams, UsersUpdateUserQuoteSettingsRequestParams, UsersVerifyResetPasswordTokenRequestParams, VerifyResetPasswordTokenCommand };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saritasa/renewaire-frontend-sdk",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.
|
|
3
|
+
"version": "0.113.0",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.113.0+a59274f70f44271241640c0843a4685b5e5520b4)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|