@saritasa/renewaire-frontend-sdk 0.206.0 → 0.214.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
CHANGED
|
@@ -1055,6 +1055,169 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1055
1055
|
type: Optional
|
|
1056
1056
|
}] }] });
|
|
1057
1057
|
|
|
1058
|
+
/**
|
|
1059
|
+
* RenewAire CORES API
|
|
1060
|
+
*
|
|
1061
|
+
* Contact: renewaire@saritasa.com
|
|
1062
|
+
*
|
|
1063
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1064
|
+
* https://openapi-generator.tech
|
|
1065
|
+
* Do not edit the class manually.
|
|
1066
|
+
*/
|
|
1067
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
1068
|
+
class BombParametersApiService extends BaseService {
|
|
1069
|
+
httpClient;
|
|
1070
|
+
constructor(httpClient, basePath, configuration) {
|
|
1071
|
+
super(basePath, configuration);
|
|
1072
|
+
this.httpClient = httpClient;
|
|
1073
|
+
}
|
|
1074
|
+
modelParametersGet(observe = "body", reportProgress = false, options) {
|
|
1075
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1076
|
+
// authentication (Bearer) required
|
|
1077
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
1078
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
1079
|
+
this.configuration.selectHeaderAccept([
|
|
1080
|
+
"text/plain",
|
|
1081
|
+
"application/json",
|
|
1082
|
+
"text/json",
|
|
1083
|
+
]);
|
|
1084
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1085
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
1086
|
+
}
|
|
1087
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1088
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1089
|
+
let responseType_ = "json";
|
|
1090
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1091
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
1092
|
+
responseType_ = "text";
|
|
1093
|
+
}
|
|
1094
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1095
|
+
responseType_ = "json";
|
|
1096
|
+
}
|
|
1097
|
+
else {
|
|
1098
|
+
responseType_ = "blob";
|
|
1099
|
+
}
|
|
1100
|
+
}
|
|
1101
|
+
let localVarPath = `/api/bomb/model-parameters/number-parts`;
|
|
1102
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1103
|
+
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
1104
|
+
context: localVarHttpContext,
|
|
1105
|
+
responseType: responseType_,
|
|
1106
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1107
|
+
headers: localVarHeaders,
|
|
1108
|
+
observe: observe,
|
|
1109
|
+
transferCache: localVarTransferCache,
|
|
1110
|
+
reportProgress: reportProgress,
|
|
1111
|
+
});
|
|
1112
|
+
}
|
|
1113
|
+
modelParametersGetModelParameters(observe = "body", reportProgress = false, options) {
|
|
1114
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1115
|
+
// authentication (Bearer) required
|
|
1116
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
1117
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
1118
|
+
this.configuration.selectHeaderAccept([
|
|
1119
|
+
"text/plain",
|
|
1120
|
+
"application/json",
|
|
1121
|
+
"text/json",
|
|
1122
|
+
]);
|
|
1123
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1124
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
1125
|
+
}
|
|
1126
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1127
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1128
|
+
let responseType_ = "json";
|
|
1129
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1130
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
1131
|
+
responseType_ = "text";
|
|
1132
|
+
}
|
|
1133
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1134
|
+
responseType_ = "json";
|
|
1135
|
+
}
|
|
1136
|
+
else {
|
|
1137
|
+
responseType_ = "blob";
|
|
1138
|
+
}
|
|
1139
|
+
}
|
|
1140
|
+
let localVarPath = `/api/bomb/model-parameters`;
|
|
1141
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1142
|
+
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
1143
|
+
context: localVarHttpContext,
|
|
1144
|
+
responseType: responseType_,
|
|
1145
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1146
|
+
headers: localVarHeaders,
|
|
1147
|
+
observe: observe,
|
|
1148
|
+
transferCache: localVarTransferCache,
|
|
1149
|
+
reportProgress: reportProgress,
|
|
1150
|
+
});
|
|
1151
|
+
}
|
|
1152
|
+
modelParametersValidateModelNumber(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1153
|
+
const validateModelNumberCommand = requestParameters?.validateModelNumberCommand;
|
|
1154
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1155
|
+
// authentication (Bearer) required
|
|
1156
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
1157
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
1158
|
+
this.configuration.selectHeaderAccept([
|
|
1159
|
+
"text/plain",
|
|
1160
|
+
"application/json",
|
|
1161
|
+
"text/json",
|
|
1162
|
+
]);
|
|
1163
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1164
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
1165
|
+
}
|
|
1166
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1167
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1168
|
+
// to determine the Content-Type header
|
|
1169
|
+
const consumes = [
|
|
1170
|
+
"application/json-patch+json",
|
|
1171
|
+
"application/json",
|
|
1172
|
+
"text/json",
|
|
1173
|
+
"application/*+json",
|
|
1174
|
+
];
|
|
1175
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
1176
|
+
if (httpContentTypeSelected !== undefined) {
|
|
1177
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
1178
|
+
}
|
|
1179
|
+
let responseType_ = "json";
|
|
1180
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1181
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
1182
|
+
responseType_ = "text";
|
|
1183
|
+
}
|
|
1184
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1185
|
+
responseType_ = "json";
|
|
1186
|
+
}
|
|
1187
|
+
else {
|
|
1188
|
+
responseType_ = "blob";
|
|
1189
|
+
}
|
|
1190
|
+
}
|
|
1191
|
+
let localVarPath = `/api/bomb/model-parameters/validate`;
|
|
1192
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1193
|
+
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
1194
|
+
context: localVarHttpContext,
|
|
1195
|
+
body: validateModelNumberCommand,
|
|
1196
|
+
responseType: responseType_,
|
|
1197
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1198
|
+
headers: localVarHeaders,
|
|
1199
|
+
observe: observe,
|
|
1200
|
+
transferCache: localVarTransferCache,
|
|
1201
|
+
reportProgress: reportProgress,
|
|
1202
|
+
});
|
|
1203
|
+
}
|
|
1204
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: BombParametersApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1205
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: BombParametersApiService, providedIn: "root" });
|
|
1206
|
+
}
|
|
1207
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: BombParametersApiService, decorators: [{
|
|
1208
|
+
type: Injectable,
|
|
1209
|
+
args: [{
|
|
1210
|
+
providedIn: "root",
|
|
1211
|
+
}]
|
|
1212
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
1213
|
+
type: Optional
|
|
1214
|
+
}, {
|
|
1215
|
+
type: Inject,
|
|
1216
|
+
args: [BASE_PATH]
|
|
1217
|
+
}] }, { type: Configuration, decorators: [{
|
|
1218
|
+
type: Optional
|
|
1219
|
+
}] }] });
|
|
1220
|
+
|
|
1058
1221
|
/**
|
|
1059
1222
|
* RenewAire CORES API
|
|
1060
1223
|
*
|
|
@@ -1123,10 +1286,10 @@ class BombRoutingsApiService extends BaseService {
|
|
|
1123
1286
|
reportProgress: reportProgress,
|
|
1124
1287
|
});
|
|
1125
1288
|
}
|
|
1126
|
-
|
|
1289
|
+
routingsDuplicateRoutingLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1127
1290
|
const routingLayerId = requestParameters?.routingLayerId;
|
|
1128
1291
|
if (routingLayerId === null || routingLayerId === undefined) {
|
|
1129
|
-
throw new Error("Required parameter routingLayerId was null or undefined when calling
|
|
1292
|
+
throw new Error("Required parameter routingLayerId was null or undefined when calling routingsDuplicateRoutingLayer.");
|
|
1130
1293
|
}
|
|
1131
1294
|
const duplicateBombLayerDto = requestParameters?.duplicateBombLayerDto;
|
|
1132
1295
|
let localVarHeaders = this.defaultHeaders;
|
|
@@ -1480,6 +1643,57 @@ class BombSchematicsApiService extends BaseService {
|
|
|
1480
1643
|
reportProgress: reportProgress,
|
|
1481
1644
|
});
|
|
1482
1645
|
}
|
|
1646
|
+
schematicsDuplicateSchematicLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1647
|
+
const schematicLayerId = requestParameters?.schematicLayerId;
|
|
1648
|
+
if (schematicLayerId === null || schematicLayerId === undefined) {
|
|
1649
|
+
throw new Error("Required parameter schematicLayerId was null or undefined when calling schematicsDuplicateSchematicLayer.");
|
|
1650
|
+
}
|
|
1651
|
+
const duplicateBombLayerDto = requestParameters?.duplicateBombLayerDto;
|
|
1652
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1653
|
+
// authentication (Bearer) required
|
|
1654
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
1655
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
1656
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1657
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
1658
|
+
}
|
|
1659
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1660
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1661
|
+
// to determine the Content-Type header
|
|
1662
|
+
const consumes = [
|
|
1663
|
+
"application/json-patch+json",
|
|
1664
|
+
"application/json",
|
|
1665
|
+
"text/json",
|
|
1666
|
+
"application/*+json",
|
|
1667
|
+
];
|
|
1668
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
1669
|
+
if (httpContentTypeSelected !== undefined) {
|
|
1670
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
1671
|
+
}
|
|
1672
|
+
let responseType_ = "json";
|
|
1673
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1674
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
1675
|
+
responseType_ = "text";
|
|
1676
|
+
}
|
|
1677
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1678
|
+
responseType_ = "json";
|
|
1679
|
+
}
|
|
1680
|
+
else {
|
|
1681
|
+
responseType_ = "blob";
|
|
1682
|
+
}
|
|
1683
|
+
}
|
|
1684
|
+
let localVarPath = `/api/bomb/schematics/${this.configuration.encodeParam({ name: "schematicLayerId", value: schematicLayerId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}/duplicate`;
|
|
1685
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1686
|
+
return this.httpClient.request("post", `${basePath}${localVarPath}`, {
|
|
1687
|
+
context: localVarHttpContext,
|
|
1688
|
+
body: duplicateBombLayerDto,
|
|
1689
|
+
responseType: responseType_,
|
|
1690
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1691
|
+
headers: localVarHeaders,
|
|
1692
|
+
observe: observe,
|
|
1693
|
+
transferCache: localVarTransferCache,
|
|
1694
|
+
reportProgress: reportProgress,
|
|
1695
|
+
});
|
|
1696
|
+
}
|
|
1483
1697
|
schematicsGetSchematicFileDownloadUrl(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1484
1698
|
const schematicLayerId = requestParameters?.schematicLayerId;
|
|
1485
1699
|
if (schematicLayerId === null || schematicLayerId === undefined) {
|
|
@@ -1969,6 +2183,44 @@ class BombValidationsApiService extends BaseService {
|
|
|
1969
2183
|
reportProgress: reportProgress,
|
|
1970
2184
|
});
|
|
1971
2185
|
}
|
|
2186
|
+
validationsRemoveSchematicLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
2187
|
+
const validationLayerId = requestParameters?.validationLayerId;
|
|
2188
|
+
if (validationLayerId === null || validationLayerId === undefined) {
|
|
2189
|
+
throw new Error("Required parameter validationLayerId was null or undefined when calling validationsRemoveSchematicLayer.");
|
|
2190
|
+
}
|
|
2191
|
+
let localVarHeaders = this.defaultHeaders;
|
|
2192
|
+
// authentication (Bearer) required
|
|
2193
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
2194
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
2195
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
2196
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
2197
|
+
}
|
|
2198
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
2199
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
2200
|
+
let responseType_ = "json";
|
|
2201
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
2202
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
2203
|
+
responseType_ = "text";
|
|
2204
|
+
}
|
|
2205
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
2206
|
+
responseType_ = "json";
|
|
2207
|
+
}
|
|
2208
|
+
else {
|
|
2209
|
+
responseType_ = "blob";
|
|
2210
|
+
}
|
|
2211
|
+
}
|
|
2212
|
+
let localVarPath = `/api/bomb/validations/${this.configuration.encodeParam({ name: "validationLayerId", value: validationLayerId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64" })}`;
|
|
2213
|
+
const { basePath, withCredentials } = this.configuration;
|
|
2214
|
+
return this.httpClient.request("delete", `${basePath}${localVarPath}`, {
|
|
2215
|
+
context: localVarHttpContext,
|
|
2216
|
+
responseType: responseType_,
|
|
2217
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
2218
|
+
headers: localVarHeaders,
|
|
2219
|
+
observe: observe,
|
|
2220
|
+
transferCache: localVarTransferCache,
|
|
2221
|
+
reportProgress: reportProgress,
|
|
2222
|
+
});
|
|
2223
|
+
}
|
|
1972
2224
|
validationsSearchValidationLayers(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1973
2225
|
const parentLayerId = requestParameters?.parentLayerId;
|
|
1974
2226
|
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
@@ -6439,7 +6691,7 @@ class RepContactsApiService extends BaseService {
|
|
|
6439
6691
|
repTerritoryRepContactId === undefined) {
|
|
6440
6692
|
throw new Error("Required parameter repTerritoryRepContactId was null or undefined when calling repContactsUpdateRepTerritoryRepContact.");
|
|
6441
6693
|
}
|
|
6442
|
-
const
|
|
6694
|
+
const updateRepTerritoryRepContactDto = requestParameters?.updateRepTerritoryRepContactDto;
|
|
6443
6695
|
let localVarHeaders = this.defaultHeaders;
|
|
6444
6696
|
// authentication (Bearer) required
|
|
6445
6697
|
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
@@ -6476,7 +6728,7 @@ class RepContactsApiService extends BaseService {
|
|
|
6476
6728
|
const { basePath, withCredentials } = this.configuration;
|
|
6477
6729
|
return this.httpClient.request("put", `${basePath}${localVarPath}`, {
|
|
6478
6730
|
context: localVarHttpContext,
|
|
6479
|
-
body:
|
|
6731
|
+
body: updateRepTerritoryRepContactDto,
|
|
6480
6732
|
responseType: responseType_,
|
|
6481
6733
|
...(withCredentials ? { withCredentials } : {}),
|
|
6482
6734
|
headers: localVarHeaders,
|
|
@@ -10734,6 +10986,7 @@ const APIS = [
|
|
|
10734
10986
|
AuditLogsApiService,
|
|
10735
10987
|
AuthApiService,
|
|
10736
10988
|
BombMaterialsApiService,
|
|
10989
|
+
BombParametersApiService,
|
|
10737
10990
|
BombRoutingsApiService,
|
|
10738
10991
|
BombSchematicsApiService,
|
|
10739
10992
|
BombValidationsApiService,
|
|
@@ -11230,6 +11483,16 @@ var FileType;
|
|
|
11230
11483
|
* Do not edit the class manually.
|
|
11231
11484
|
*/
|
|
11232
11485
|
|
|
11486
|
+
/**
|
|
11487
|
+
* RenewAire CORES API
|
|
11488
|
+
*
|
|
11489
|
+
* Contact: renewaire@saritasa.com
|
|
11490
|
+
*
|
|
11491
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11492
|
+
* https://openapi-generator.tech
|
|
11493
|
+
* Do not edit the class manually.
|
|
11494
|
+
*/
|
|
11495
|
+
|
|
11233
11496
|
/**
|
|
11234
11497
|
* RenewAire CORES API
|
|
11235
11498
|
*
|
|
@@ -11386,6 +11649,44 @@ var LeadTimeType;
|
|
|
11386
11649
|
* Do not edit the class manually.
|
|
11387
11650
|
*/
|
|
11388
11651
|
|
|
11652
|
+
/**
|
|
11653
|
+
* RenewAire CORES API
|
|
11654
|
+
*
|
|
11655
|
+
* Contact: renewaire@saritasa.com
|
|
11656
|
+
*
|
|
11657
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11658
|
+
* https://openapi-generator.tech
|
|
11659
|
+
* Do not edit the class manually.
|
|
11660
|
+
*/
|
|
11661
|
+
|
|
11662
|
+
/**
|
|
11663
|
+
* RenewAire CORES API
|
|
11664
|
+
*
|
|
11665
|
+
* Contact: renewaire@saritasa.com
|
|
11666
|
+
*
|
|
11667
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11668
|
+
* https://openapi-generator.tech
|
|
11669
|
+
* Do not edit the class manually.
|
|
11670
|
+
*/
|
|
11671
|
+
|
|
11672
|
+
/**
|
|
11673
|
+
* RenewAire CORES API
|
|
11674
|
+
*
|
|
11675
|
+
* Contact: renewaire@saritasa.com
|
|
11676
|
+
*
|
|
11677
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11678
|
+
* https://openapi-generator.tech
|
|
11679
|
+
* Do not edit the class manually.
|
|
11680
|
+
*/
|
|
11681
|
+
/**
|
|
11682
|
+
* Type of model number validation error.<br />ModelNumberValidationErrorType<br />0 = Digit<br />1 = Length
|
|
11683
|
+
*/
|
|
11684
|
+
var ModelNumberValidationErrorType;
|
|
11685
|
+
(function (ModelNumberValidationErrorType) {
|
|
11686
|
+
ModelNumberValidationErrorType["Digit"] = "Digit";
|
|
11687
|
+
ModelNumberValidationErrorType["Length"] = "Length";
|
|
11688
|
+
})(ModelNumberValidationErrorType || (ModelNumberValidationErrorType = {}));
|
|
11689
|
+
|
|
11389
11690
|
/**
|
|
11390
11691
|
* RenewAire CORES API
|
|
11391
11692
|
*
|
|
@@ -11459,7 +11760,35 @@ var OperationType;
|
|
|
11459
11760
|
* Do not edit the class manually.
|
|
11460
11761
|
*/
|
|
11461
11762
|
/**
|
|
11462
|
-
*
|
|
11763
|
+
* Parameter type.<br />ParameterType<br />0 = HeaterSize (Heater Size)<br />1 = VibrationIsolation (Vibration Isolation)<br />2 = GFCI (GFCI)<br />3 = DrainOverflowSwitch (Drain Overflow Switch)<br />4 = RecirculationDamper (Recirculation Damper)<br />5 = MoistureEliminator (Moisture Eliminator)<br />6 = SameCoil (Same Coil)<br />7 = GasControlType (Gas Control Type)<br />8 = Combustion (Combustion)<br />9 = PhaseVoltage (Phase & Voltage)<br />10 = Modules (Modules)<br />11 = MOPD (MOPD)
|
|
11764
|
+
*/
|
|
11765
|
+
var ParameterType;
|
|
11766
|
+
(function (ParameterType) {
|
|
11767
|
+
ParameterType["HeaterSize"] = "HeaterSize";
|
|
11768
|
+
ParameterType["VibrationIsolation"] = "VibrationIsolation";
|
|
11769
|
+
ParameterType["Gfci"] = "GFCI";
|
|
11770
|
+
ParameterType["DrainOverflowSwitch"] = "DrainOverflowSwitch";
|
|
11771
|
+
ParameterType["RecirculationDamper"] = "RecirculationDamper";
|
|
11772
|
+
ParameterType["MoistureEliminator"] = "MoistureEliminator";
|
|
11773
|
+
ParameterType["SameCoil"] = "SameCoil";
|
|
11774
|
+
ParameterType["GasControlType"] = "GasControlType";
|
|
11775
|
+
ParameterType["Combustion"] = "Combustion";
|
|
11776
|
+
ParameterType["PhaseVoltage"] = "PhaseVoltage";
|
|
11777
|
+
ParameterType["Modules"] = "Modules";
|
|
11778
|
+
ParameterType["Mopd"] = "MOPD";
|
|
11779
|
+
})(ParameterType || (ParameterType = {}));
|
|
11780
|
+
|
|
11781
|
+
/**
|
|
11782
|
+
* RenewAire CORES API
|
|
11783
|
+
*
|
|
11784
|
+
* Contact: renewaire@saritasa.com
|
|
11785
|
+
*
|
|
11786
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11787
|
+
* https://openapi-generator.tech
|
|
11788
|
+
* Do not edit the class manually.
|
|
11789
|
+
*/
|
|
11790
|
+
/**
|
|
11791
|
+
* Group/user permission.<br />Permission<br />0 = SystemAdmin<br />1 = ManageUsers<br />2 = ViewAllProjectsInTheSystem<br />3 = EditAllProjectsInTheSystem<br />4 = ViewOtherGroupMembersProjects<br />5 = EditEachOthersGroupMembersProjects<br />8 = ViewQsApplications<br />9 = ViewPricing<br />10 = ConfigurationAccessDoas<br />11 = ConfigurationAccessCommercial<br />12 = ConfigurationAccessResidential<br />13 = ConfigurationAccessApplied<br />14 = ConfigurationAccessElectricHeaters<br />15 = ConfigurationAccessGasFurnaces<br />16 = ConfigurationAccessCoilModules<br />17 = ConfigurationAccessAccessories<br />18 = ConfigurationAccessServiceParts<br />19 = ConfigurationAccessSpUnits<br />20 = ConfigurationAccessJciResUnits<br />21 = ConfigurationAccessJciComUnits<br />22 = ConfigurationAccessTraneUnits<br />23 = EditSystemGroups<br />24 = ViewAllHiddenFieldsExtraData<br />25 = ViewExtraCalculationData<br />26 = EditCertainReadonlyFields<br />27 = ViewRenewAireOnlyData<br />28 = ViewAhriCertificationItemsAndData<br />33 = AccessSiteInMaintenanceMode<br />34 = ViewSoldToSelectionAndInformation<br />35 = Rep<br />36 = RequestAccountUpgrade<br />37 = EditUserAccountEmailAddress<br />39 = ManageRsdRegions<br />40 = ViewRsdRegions<br />41 = ManageRepTerritories<br />42 = ViewRepTerritories<br />43 = ViewRelatedRepTerritories<br />44 = ManageRepContacts<br />45 = ViewRepContacts<br />46 = ManageStateProvinces<br />47 = ViewStateProvinces<br />48 = ManageGroups<br />49 = ViewAllGroups<br />50 = ViewRelatedGroups<br />51 = ViewAllUsers<br />52 = ViewRelatedUsers<br />53 = ViewRenewAireLeadTimesData<br />54 = ViewSpLeadTimesData<br />55 = ViewRepReports<br />57 = AccessPartnerPortal<br />58 = AccessExchangerPerformanceApp<br />59 = ViewDefrost<br />60 = ViewAshraeOptions<br />61 = ViewRolesTable<br />62 = ViewPermissionBundles<br />63 = EditUsers<br />64 = BombMaterialsAdmin<br />65 = BombRoutingAdmin<br />66 = BombSchematicsAdmin<br />67 = BombValidationsAdmin<br />68 = AccessBomb<br />100 = SubmitOrder<br />101 = ImportOrdersToErp<br />104 = ViewDiscountWorkflows<br />105 = AddUnrestrictedDiscountsToProjects<br />106 = AddLimitedDiscountsToProjects<br />107 = ApproveUnrestrictedDiscountsInProjects<br />108 = ApproveLimitedDiscountsInProjects<br />109 = SubmitQsApplication<br />110 = QsBonus<br />111 = QsDiscount<br />113 = ApproveQsApplications<br />114 = MakeObsoleteLineItemsValid<br />115 = GenerateQuotes<br />116 = ViewAllProjectDownloadHistory<br />117 = ViewEnergyAnalysis<br />118 = ViewExtraQuoteOptions<br />119 = ViewShipToSelectionAndInformation<br />120 = ViewProjectRevisions<br />121 = AddProjectRevisions<br />122 = ViewLinkedProjects<br />123 = AddLinkedProjects<br />124 = TakeOverEditingFromOtherUsers<br />125 = AccessProjectSalesChannelNotes
|
|
11463
11792
|
*/
|
|
11464
11793
|
var Permission;
|
|
11465
11794
|
(function (Permission) {
|
|
@@ -11523,6 +11852,7 @@ var Permission;
|
|
|
11523
11852
|
Permission["BombRoutingAdmin"] = "BombRoutingAdmin";
|
|
11524
11853
|
Permission["BombSchematicsAdmin"] = "BombSchematicsAdmin";
|
|
11525
11854
|
Permission["BombValidationsAdmin"] = "BombValidationsAdmin";
|
|
11855
|
+
Permission["AccessBomb"] = "AccessBomb";
|
|
11526
11856
|
Permission["SubmitOrder"] = "SubmitOrder";
|
|
11527
11857
|
Permission["ImportOrdersToErp"] = "ImportOrdersToErp";
|
|
11528
11858
|
Permission["ViewDiscountWorkflows"] = "ViewDiscountWorkflows";
|
|
@@ -12255,6 +12585,16 @@ var UserStatus;
|
|
|
12255
12585
|
* Do not edit the class manually.
|
|
12256
12586
|
*/
|
|
12257
12587
|
|
|
12588
|
+
/**
|
|
12589
|
+
* RenewAire CORES API
|
|
12590
|
+
*
|
|
12591
|
+
* Contact: renewaire@saritasa.com
|
|
12592
|
+
*
|
|
12593
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12594
|
+
* https://openapi-generator.tech
|
|
12595
|
+
* Do not edit the class manually.
|
|
12596
|
+
*/
|
|
12597
|
+
|
|
12258
12598
|
class ApiModule {
|
|
12259
12599
|
static forRoot(configurationFactory) {
|
|
12260
12600
|
return {
|
|
@@ -12307,5 +12647,5 @@ function provideApi(configOrBasePath) {
|
|
|
12307
12647
|
* Generated bundle index. Do not edit.
|
|
12308
12648
|
*/
|
|
12309
12649
|
|
|
12310
|
-
export { APIS, AddressCountry, ApiModule, AshraeVersion, AuditEntity, AuditLogsApiService, AuthApiService, BASE_PATH, BombMaterialsApiService, BombRoutingsApiService, BombSchematicsApiService, BombValidationsApiService, 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, ProjectAccessLevel, ProjectBidStatusType, ProjectBidStatusesApiService, ProjectLinksApiService, ProjectLogType, ProjectNoteType, ProjectNotesApiService, ProjectRevisionsApiService, ProjectSharingAccessLevel, ProjectSharingApiService, ProjectShippingApiService, ProjectSoldToApiService, ProjectStatus, ProjectStatusesApiService, ProjectsApiService, QualifiedSpecificationStatus, RegionLevel, RegionsApiService, RegistrationStatus, RepContactsApiService, RepSalesReportsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, S3ApiService, StaticFilesApiService, UnitSystem, UserStatus, UserTablesApiService, UsersApiService, UsersManagementApiService, provideApi };
|
|
12650
|
+
export { APIS, AddressCountry, ApiModule, AshraeVersion, AuditEntity, AuditLogsApiService, AuthApiService, BASE_PATH, BombMaterialsApiService, BombParametersApiService, BombRoutingsApiService, BombSchematicsApiService, BombValidationsApiService, BuildingCategory, BuildingType, COLLECTION_FORMATS, Configuration, ConstructionOrderType, ControllerProgramReleaseType, ControllerProgramType, ControllerProgramsApiService, CoolingDesignBasis, DesignWeatherMode, FeedbackType, FeedbacksApiService, FileType, GroupCustomerType, GroupType, GroupsApiService, KnownContactsApiService, Language, LeadTimeType, LeadTimesApiService, MaintenanceApiService, ModelNumberValidationErrorType, OperationType, ParameterType, Permission, PermissionBundlesApiService, PermissionsApiService, ProjectAccessLevel, ProjectBidStatusType, ProjectBidStatusesApiService, ProjectLinksApiService, ProjectLogType, ProjectNoteType, ProjectNotesApiService, ProjectRevisionsApiService, ProjectSharingAccessLevel, ProjectSharingApiService, ProjectShippingApiService, ProjectSoldToApiService, ProjectStatus, ProjectStatusesApiService, ProjectsApiService, QualifiedSpecificationStatus, RegionLevel, RegionsApiService, RegistrationStatus, RepContactsApiService, RepSalesReportsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, S3ApiService, StaticFilesApiService, UnitSystem, UserStatus, UserTablesApiService, UsersApiService, UsersManagementApiService, provideApi };
|
|
12311
12651
|
//# sourceMappingURL=saritasa-renewaire-frontend-sdk.mjs.map
|