@saritasa/renewaire-frontend-sdk 0.112.0 → 0.114.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 +50 -125
- package/fesm2022/saritasa-renewaire-frontend-sdk.mjs.map +1 -1
- package/index.d.ts +280 -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
|
*
|
|
@@ -2135,15 +2207,99 @@ interface ProjectFacilityDto {
|
|
|
2135
2207
|
/**
|
|
2136
2208
|
* DTO for RenewAire.Cores.Domain.Projects.Project.
|
|
2137
2209
|
*/
|
|
2138
|
-
interface
|
|
2210
|
+
interface ProjectRevisionDto {
|
|
2139
2211
|
/**
|
|
2140
2212
|
* Identifier for RenewAire.Cores.Domain.Projects.Project.
|
|
2141
2213
|
*/
|
|
2142
2214
|
id: number;
|
|
2215
|
+
/**
|
|
2216
|
+
* Revision number.
|
|
2217
|
+
*/
|
|
2218
|
+
revisionNumber: number;
|
|
2219
|
+
/**
|
|
2220
|
+
* Revision tag.
|
|
2221
|
+
*/
|
|
2222
|
+
revisionTag: string;
|
|
2223
|
+
/**
|
|
2224
|
+
* Revision notes.
|
|
2225
|
+
*/
|
|
2226
|
+
revisionNotes: string;
|
|
2227
|
+
/**
|
|
2228
|
+
* Represents a data transfer object containing an identifier and a name. It is intended to be used in simple dropdown lists or in table views where we need to display a link to the object.
|
|
2229
|
+
*/
|
|
2230
|
+
createdByUser: IdNameDto;
|
|
2231
|
+
/**
|
|
2232
|
+
* Creation data/time.
|
|
2233
|
+
*/
|
|
2234
|
+
createdAt: string;
|
|
2235
|
+
}
|
|
2236
|
+
|
|
2237
|
+
/**
|
|
2238
|
+
* RenewAire CORES API
|
|
2239
|
+
*
|
|
2240
|
+
* Contact: renewaire@saritasa.com
|
|
2241
|
+
*
|
|
2242
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2243
|
+
* https://openapi-generator.tech
|
|
2244
|
+
* Do not edit the class manually.
|
|
2245
|
+
*/
|
|
2246
|
+
|
|
2247
|
+
/**
|
|
2248
|
+
* DTO for RenewAire.Cores.Domain.Projects.ProjectGroup.
|
|
2249
|
+
*/
|
|
2250
|
+
interface ProjectGroupDto {
|
|
2251
|
+
/**
|
|
2252
|
+
* Identifier for RenewAire.Cores.Domain.Projects.ProjectGroup.
|
|
2253
|
+
*/
|
|
2254
|
+
id: number;
|
|
2143
2255
|
/**
|
|
2144
2256
|
* Project number.
|
|
2145
2257
|
*/
|
|
2146
2258
|
projectNumber: string;
|
|
2259
|
+
/**
|
|
2260
|
+
* Identifier for RenewAire.Cores.Domain.Projects.Project.
|
|
2261
|
+
*/
|
|
2262
|
+
mainRevisionId: number;
|
|
2263
|
+
/**
|
|
2264
|
+
* Project revisions.
|
|
2265
|
+
*/
|
|
2266
|
+
revisions: Array<ProjectRevisionDto>;
|
|
2267
|
+
}
|
|
2268
|
+
|
|
2269
|
+
/**
|
|
2270
|
+
* RenewAire CORES API
|
|
2271
|
+
*
|
|
2272
|
+
* Contact: renewaire@saritasa.com
|
|
2273
|
+
*
|
|
2274
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2275
|
+
* https://openapi-generator.tech
|
|
2276
|
+
* Do not edit the class manually.
|
|
2277
|
+
*/
|
|
2278
|
+
|
|
2279
|
+
/**
|
|
2280
|
+
* DTO for RenewAire.Cores.Domain.Projects.Project.
|
|
2281
|
+
*/
|
|
2282
|
+
interface ProjectDto {
|
|
2283
|
+
/**
|
|
2284
|
+
* Identifier for RenewAire.Cores.Domain.Projects.Project.
|
|
2285
|
+
*/
|
|
2286
|
+
id: number;
|
|
2287
|
+
/**
|
|
2288
|
+
* Revision number.
|
|
2289
|
+
*/
|
|
2290
|
+
revisionNumber: number;
|
|
2291
|
+
/**
|
|
2292
|
+
* Revision tag.
|
|
2293
|
+
*/
|
|
2294
|
+
revisionTag: string;
|
|
2295
|
+
/**
|
|
2296
|
+
* Revision notes.
|
|
2297
|
+
*/
|
|
2298
|
+
revisionNotes: string;
|
|
2299
|
+
/**
|
|
2300
|
+
* DTO for RenewAire.Cores.Domain.Projects.ProjectGroup.
|
|
2301
|
+
*/
|
|
2302
|
+
projectGroup: ProjectGroupDto;
|
|
2147
2303
|
/**
|
|
2148
2304
|
* Project name.
|
|
2149
2305
|
*/
|
|
@@ -3171,10 +3327,6 @@ interface SaveRepTerritoryRepContactDto {
|
|
|
3171
3327
|
* DTO to save RenewAire.Cores.Domain.Users.UserDesignConditions.
|
|
3172
3328
|
*/
|
|
3173
3329
|
interface SaveUserDesignConditionsDto {
|
|
3174
|
-
/**
|
|
3175
|
-
* Related user id.
|
|
3176
|
-
*/
|
|
3177
|
-
userId: number;
|
|
3178
3330
|
/**
|
|
3179
3331
|
* Weather station state.
|
|
3180
3332
|
*/
|
|
@@ -3535,6 +3687,10 @@ interface SearchProjectDto {
|
|
|
3535
3687
|
* Identifier for RenewAire.Cores.Domain.Projects.Project.
|
|
3536
3688
|
*/
|
|
3537
3689
|
id: number;
|
|
3690
|
+
/**
|
|
3691
|
+
* Identifier for RenewAire.Cores.Domain.Projects.ProjectGroup.
|
|
3692
|
+
*/
|
|
3693
|
+
projectGroupId: number;
|
|
3538
3694
|
/**
|
|
3539
3695
|
* Project number.
|
|
3540
3696
|
*/
|
|
@@ -4468,74 +4624,6 @@ interface UploadUrlResult {
|
|
|
4468
4624
|
postPreSignedUrl: PostPreSignedUrlDto;
|
|
4469
4625
|
}
|
|
4470
4626
|
|
|
4471
|
-
/**
|
|
4472
|
-
* RenewAire CORES API
|
|
4473
|
-
*
|
|
4474
|
-
* Contact: renewaire@saritasa.com
|
|
4475
|
-
*
|
|
4476
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4477
|
-
* https://openapi-generator.tech
|
|
4478
|
-
* Do not edit the class manually.
|
|
4479
|
-
*/
|
|
4480
|
-
|
|
4481
|
-
/**
|
|
4482
|
-
* User design condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.
|
|
4483
|
-
*/
|
|
4484
|
-
interface UserDesignConditionsDto {
|
|
4485
|
-
/**
|
|
4486
|
-
* Related user id.
|
|
4487
|
-
*/
|
|
4488
|
-
userId: number;
|
|
4489
|
-
/**
|
|
4490
|
-
* Weather station state.
|
|
4491
|
-
*/
|
|
4492
|
-
weatherStationState: string;
|
|
4493
|
-
/**
|
|
4494
|
-
* Weather station code.
|
|
4495
|
-
*/
|
|
4496
|
-
weatherStation: string;
|
|
4497
|
-
/**
|
|
4498
|
-
* DTO for RenewAire.Cores.Domain.Distance.
|
|
4499
|
-
*/
|
|
4500
|
-
elevation: DistanceDto;
|
|
4501
|
-
/**
|
|
4502
|
-
* Climate zone. It if filled from weather stations list.
|
|
4503
|
-
*/
|
|
4504
|
-
climateZone: string;
|
|
4505
|
-
/**
|
|
4506
|
-
* Design weather condition DTO for RenewAire.Cores.Domain.Projects.DesignWeatherCondition.
|
|
4507
|
-
*/
|
|
4508
|
-
summerOutsideAir: DesignWeatherConditionDto;
|
|
4509
|
-
/**
|
|
4510
|
-
* Design weather condition DTO for RenewAire.Cores.Domain.Projects.DesignWeatherCondition.
|
|
4511
|
-
*/
|
|
4512
|
-
summerReturnAir: DesignWeatherConditionDto;
|
|
4513
|
-
/**
|
|
4514
|
-
* Design weather condition DTO for RenewAire.Cores.Domain.Projects.DesignWeatherCondition.
|
|
4515
|
-
*/
|
|
4516
|
-
winterOutsideAir: DesignWeatherConditionDto;
|
|
4517
|
-
/**
|
|
4518
|
-
* Design weather condition DTO for RenewAire.Cores.Domain.Projects.DesignWeatherCondition.
|
|
4519
|
-
*/
|
|
4520
|
-
winterReturnAir: DesignWeatherConditionDto;
|
|
4521
|
-
/**
|
|
4522
|
-
* Cooling percentile day.
|
|
4523
|
-
*/
|
|
4524
|
-
coolingPercentileDay?: number | null;
|
|
4525
|
-
/**
|
|
4526
|
-
* Heating percentile day.
|
|
4527
|
-
*/
|
|
4528
|
-
heatingPercentileDay?: number | null;
|
|
4529
|
-
/**
|
|
4530
|
-
* CoolingDesignBasis<br />0 = Cooling<br />1 = Dehumidification
|
|
4531
|
-
*/
|
|
4532
|
-
coolingDesignBasis?: CoolingDesignBasis | null;
|
|
4533
|
-
/**
|
|
4534
|
-
* AshraeVersion<br />0 = V2007<br />1 = V2010<br />2 = V2013<br />3 = V2016<br />4 = V2019<br />5 = V2022<br />Required permissions: SystemAdmin | ViewAshraeOptions
|
|
4535
|
-
*/
|
|
4536
|
-
ashraeVersion?: AshraeVersion | null;
|
|
4537
|
-
}
|
|
4538
|
-
|
|
4539
4627
|
/**
|
|
4540
4628
|
* RenewAire CORES API
|
|
4541
4629
|
*
|
|
@@ -4659,6 +4747,10 @@ interface UserDetailsDto {
|
|
|
4659
4747
|
* DTO for user quote settings.
|
|
4660
4748
|
*/
|
|
4661
4749
|
quote?: UserQuoteDto | null;
|
|
4750
|
+
/**
|
|
4751
|
+
* User design conditions DTO.
|
|
4752
|
+
*/
|
|
4753
|
+
designConditions?: UserDesignConditionsDto | null;
|
|
4662
4754
|
}
|
|
4663
4755
|
|
|
4664
4756
|
/**
|
|
@@ -6234,7 +6326,7 @@ interface ProjectsGetProjectRequestParams {
|
|
|
6234
6326
|
projectId: number;
|
|
6235
6327
|
}
|
|
6236
6328
|
interface ProjectsSearchProjectsRequestParams {
|
|
6237
|
-
fields: Array<"id" | "projectNumber" | "name" | "status" | "constructionOrderType" | "buildingCategory" | "buildingType" | "clientName" | "createdAt" | "createdByUser" | "updatedAt" | "updatedByUser">;
|
|
6329
|
+
fields: Array<"id" | "projectGroupId" | "projectNumber" | "name" | "status" | "constructionOrderType" | "buildingCategory" | "buildingType" | "clientName" | "createdAt" | "createdByUser" | "updatedAt" | "updatedByUser">;
|
|
6238
6330
|
orderBy?: string;
|
|
6239
6331
|
projectNumber?: string;
|
|
6240
6332
|
name?: string;
|
|
@@ -7693,88 +7785,6 @@ declare class StaticFilesApiService extends BaseService implements StaticFilesAp
|
|
|
7693
7785
|
static ɵprov: i0.ɵɵInjectableDeclaration<StaticFilesApiService>;
|
|
7694
7786
|
}
|
|
7695
7787
|
|
|
7696
|
-
/**
|
|
7697
|
-
* RenewAire CORES API
|
|
7698
|
-
*
|
|
7699
|
-
* Contact: renewaire@saritasa.com
|
|
7700
|
-
*
|
|
7701
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7702
|
-
* https://openapi-generator.tech
|
|
7703
|
-
* Do not edit the class manually.
|
|
7704
|
-
*/
|
|
7705
|
-
|
|
7706
|
-
interface UserDesignConditionsGetProjectDesignConditionsRequestParams {
|
|
7707
|
-
userId: number;
|
|
7708
|
-
}
|
|
7709
|
-
interface UserDesignConditionsSaveProjectDesignConditionsRequestParams {
|
|
7710
|
-
saveUserDesignConditionsDto?: SaveUserDesignConditionsDto;
|
|
7711
|
-
}
|
|
7712
|
-
interface UserDesignConditionsApiServiceInterface {
|
|
7713
|
-
defaultHeaders: HttpHeaders;
|
|
7714
|
-
configuration: Configuration;
|
|
7715
|
-
/**
|
|
7716
|
-
* Get user design conditions.
|
|
7717
|
-
*
|
|
7718
|
-
* @param requestParameters
|
|
7719
|
-
*/
|
|
7720
|
-
userDesignConditionsGetProjectDesignConditions(requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams, extraHttpRequestParams?: any): Observable<UserDesignConditionsDto>;
|
|
7721
|
-
/**
|
|
7722
|
-
* Save user design conditions.
|
|
7723
|
-
*
|
|
7724
|
-
* @param requestParameters
|
|
7725
|
-
*/
|
|
7726
|
-
userDesignConditionsSaveProjectDesignConditions(requestParameters: UserDesignConditionsSaveProjectDesignConditionsRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
7727
|
-
}
|
|
7728
|
-
|
|
7729
|
-
declare class UserDesignConditionsApiService extends BaseService implements UserDesignConditionsApiServiceInterface {
|
|
7730
|
-
protected httpClient: HttpClient;
|
|
7731
|
-
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
7732
|
-
/**
|
|
7733
|
-
* Get user design conditions.
|
|
7734
|
-
* @param requestParameters
|
|
7735
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7736
|
-
* @param reportProgress flag to report request and response progress.
|
|
7737
|
-
*/
|
|
7738
|
-
userDesignConditionsGetProjectDesignConditions(requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
7739
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7740
|
-
context?: HttpContext;
|
|
7741
|
-
transferCache?: boolean;
|
|
7742
|
-
}): Observable<UserDesignConditionsDto>;
|
|
7743
|
-
userDesignConditionsGetProjectDesignConditions(requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
7744
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7745
|
-
context?: HttpContext;
|
|
7746
|
-
transferCache?: boolean;
|
|
7747
|
-
}): Observable<HttpResponse<UserDesignConditionsDto>>;
|
|
7748
|
-
userDesignConditionsGetProjectDesignConditions(requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
7749
|
-
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
7750
|
-
context?: HttpContext;
|
|
7751
|
-
transferCache?: boolean;
|
|
7752
|
-
}): Observable<HttpEvent<UserDesignConditionsDto>>;
|
|
7753
|
-
/**
|
|
7754
|
-
* Save user design conditions.
|
|
7755
|
-
* @param requestParameters
|
|
7756
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7757
|
-
* @param reportProgress flag to report request and response progress.
|
|
7758
|
-
*/
|
|
7759
|
-
userDesignConditionsSaveProjectDesignConditions(requestParameters?: UserDesignConditionsSaveProjectDesignConditionsRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
7760
|
-
httpHeaderAccept?: undefined;
|
|
7761
|
-
context?: HttpContext;
|
|
7762
|
-
transferCache?: boolean;
|
|
7763
|
-
}): Observable<any>;
|
|
7764
|
-
userDesignConditionsSaveProjectDesignConditions(requestParameters?: UserDesignConditionsSaveProjectDesignConditionsRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
7765
|
-
httpHeaderAccept?: undefined;
|
|
7766
|
-
context?: HttpContext;
|
|
7767
|
-
transferCache?: boolean;
|
|
7768
|
-
}): Observable<HttpResponse<any>>;
|
|
7769
|
-
userDesignConditionsSaveProjectDesignConditions(requestParameters?: UserDesignConditionsSaveProjectDesignConditionsRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
7770
|
-
httpHeaderAccept?: undefined;
|
|
7771
|
-
context?: HttpContext;
|
|
7772
|
-
transferCache?: boolean;
|
|
7773
|
-
}): Observable<HttpEvent<any>>;
|
|
7774
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UserDesignConditionsApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
7775
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<UserDesignConditionsApiService>;
|
|
7776
|
-
}
|
|
7777
|
-
|
|
7778
7788
|
/**
|
|
7779
7789
|
* RenewAire CORES API
|
|
7780
7790
|
*
|
|
@@ -7957,6 +7967,10 @@ interface UsersSetUserPasswordRequestParams {
|
|
|
7957
7967
|
interface UsersSetUserProfileRequestParams {
|
|
7958
7968
|
userProfileDto?: UserProfileDto;
|
|
7959
7969
|
}
|
|
7970
|
+
interface UsersUpdateUserDesignConditionsRequestParams {
|
|
7971
|
+
userId: number;
|
|
7972
|
+
saveUserDesignConditionsDto?: SaveUserDesignConditionsDto;
|
|
7973
|
+
}
|
|
7960
7974
|
interface UsersUpdateUserDetailsRequestParams {
|
|
7961
7975
|
userId: number;
|
|
7962
7976
|
contactInformationFirstName: string;
|
|
@@ -8119,6 +8133,12 @@ interface UsersApiServiceInterface {
|
|
|
8119
8133
|
* @param requestParameters
|
|
8120
8134
|
*/
|
|
8121
8135
|
usersSetUserProfile(requestParameters: UsersSetUserProfileRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
8136
|
+
/**
|
|
8137
|
+
* Update user design conditions.
|
|
8138
|
+
*
|
|
8139
|
+
* @param requestParameters
|
|
8140
|
+
*/
|
|
8141
|
+
usersUpdateUserDesignConditions(requestParameters: UsersUpdateUserDesignConditionsRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
8122
8142
|
/**
|
|
8123
8143
|
* Update user details settings (name / contact information / avatars / etc.).
|
|
8124
8144
|
*
|
|
@@ -8593,6 +8613,27 @@ declare class UsersApiService extends BaseService implements UsersApiServiceInte
|
|
|
8593
8613
|
context?: HttpContext;
|
|
8594
8614
|
transferCache?: boolean;
|
|
8595
8615
|
}): Observable<HttpEvent<any>>;
|
|
8616
|
+
/**
|
|
8617
|
+
* Update user design conditions.
|
|
8618
|
+
* @param requestParameters
|
|
8619
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
8620
|
+
* @param reportProgress flag to report request and response progress.
|
|
8621
|
+
*/
|
|
8622
|
+
usersUpdateUserDesignConditions(requestParameters: UsersUpdateUserDesignConditionsRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
8623
|
+
httpHeaderAccept?: undefined;
|
|
8624
|
+
context?: HttpContext;
|
|
8625
|
+
transferCache?: boolean;
|
|
8626
|
+
}): Observable<any>;
|
|
8627
|
+
usersUpdateUserDesignConditions(requestParameters: UsersUpdateUserDesignConditionsRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
8628
|
+
httpHeaderAccept?: undefined;
|
|
8629
|
+
context?: HttpContext;
|
|
8630
|
+
transferCache?: boolean;
|
|
8631
|
+
}): Observable<HttpResponse<any>>;
|
|
8632
|
+
usersUpdateUserDesignConditions(requestParameters: UsersUpdateUserDesignConditionsRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
8633
|
+
httpHeaderAccept?: undefined;
|
|
8634
|
+
context?: HttpContext;
|
|
8635
|
+
transferCache?: boolean;
|
|
8636
|
+
}): Observable<HttpEvent<any>>;
|
|
8596
8637
|
/**
|
|
8597
8638
|
* Update user details settings (name / contact information / avatars / etc.).
|
|
8598
8639
|
* @param requestParameters
|
|
@@ -8911,7 +8952,7 @@ declare class UsersManagementApiService extends BaseService implements UsersMana
|
|
|
8911
8952
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsersManagementApiService>;
|
|
8912
8953
|
}
|
|
8913
8954
|
|
|
8914
|
-
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
|
|
8955
|
+
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)[];
|
|
8915
8956
|
|
|
8916
8957
|
declare const BASE_PATH: InjectionToken<string>;
|
|
8917
8958
|
declare const COLLECTION_FORMATS: {
|
|
@@ -8931,5 +8972,5 @@ declare class ApiModule {
|
|
|
8931
8972
|
|
|
8932
8973
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
8933
8974
|
|
|
8934
|
-
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,
|
|
8935
|
-
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,
|
|
8975
|
+
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 };
|
|
8976
|
+
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, ProjectGroupDto, ProjectIdIdDto, ProjectRevisionDto, 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.114.0",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.114.0+c8f65bce89aa5a5d1bc028a808ffe4260d5560f1)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|