@saritasa/renewaire-frontend-sdk 0.190.0 → 0.192.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
|
@@ -1421,6 +1421,49 @@ class BombSchematicsApiService extends BaseService {
|
|
|
1421
1421
|
reportProgress: reportProgress,
|
|
1422
1422
|
});
|
|
1423
1423
|
}
|
|
1424
|
+
schematicsSearchSchematicLayers(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1425
|
+
const parentSchematicLayerId = requestParameters?.parentSchematicLayerId;
|
|
1426
|
+
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
1427
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, parentSchematicLayerId, "ParentSchematicLayerId");
|
|
1428
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1429
|
+
// authentication (Bearer) required
|
|
1430
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
|
|
1431
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
1432
|
+
this.configuration.selectHeaderAccept([
|
|
1433
|
+
"text/plain",
|
|
1434
|
+
"application/json",
|
|
1435
|
+
"text/json",
|
|
1436
|
+
]);
|
|
1437
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1438
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
1439
|
+
}
|
|
1440
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1441
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1442
|
+
let responseType_ = "json";
|
|
1443
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1444
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
1445
|
+
responseType_ = "text";
|
|
1446
|
+
}
|
|
1447
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1448
|
+
responseType_ = "json";
|
|
1449
|
+
}
|
|
1450
|
+
else {
|
|
1451
|
+
responseType_ = "blob";
|
|
1452
|
+
}
|
|
1453
|
+
}
|
|
1454
|
+
let localVarPath = `/api/bomb/schematics`;
|
|
1455
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1456
|
+
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
1457
|
+
context: localVarHttpContext,
|
|
1458
|
+
params: localVarQueryParameters,
|
|
1459
|
+
responseType: responseType_,
|
|
1460
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1461
|
+
headers: localVarHeaders,
|
|
1462
|
+
observe: observe,
|
|
1463
|
+
transferCache: localVarTransferCache,
|
|
1464
|
+
reportProgress: reportProgress,
|
|
1465
|
+
});
|
|
1466
|
+
}
|
|
1424
1467
|
schematicsUpdateSchematicLayer(requestParameters, observe = "body", reportProgress = false, options) {
|
|
1425
1468
|
const schematicLayerId = requestParameters?.schematicLayerId;
|
|
1426
1469
|
if (schematicLayerId === null || schematicLayerId === undefined) {
|
|
@@ -11580,6 +11623,16 @@ var RegistrationStatus;
|
|
|
11580
11623
|
* Do not edit the class manually.
|
|
11581
11624
|
*/
|
|
11582
11625
|
|
|
11626
|
+
/**
|
|
11627
|
+
* RenewAire CORES API
|
|
11628
|
+
*
|
|
11629
|
+
* Contact: renewaire@saritasa.com
|
|
11630
|
+
*
|
|
11631
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11632
|
+
* https://openapi-generator.tech
|
|
11633
|
+
* Do not edit the class manually.
|
|
11634
|
+
*/
|
|
11635
|
+
|
|
11583
11636
|
/**
|
|
11584
11637
|
* RenewAire CORES API
|
|
11585
11638
|
*
|