@revxui/api-clients-ts 1.1.428 → 1.1.430
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/api/safeguardController.service.d.ts +3 -3
- package/esm2020/api/safeguardController.service.mjs +6 -8
- package/esm2020/model/safeguardDetail.mjs +1 -1
- package/fesm2015/revxui-api-clients-ts.mjs +5 -7
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +5 -7
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/safeguardDetail.d.ts +3 -2
- package/package.json +1 -1
|
@@ -8292,12 +8292,12 @@ class SafeguardControllerService {
|
|
|
8292
8292
|
reportProgress: reportProgress
|
|
8293
8293
|
});
|
|
8294
8294
|
}
|
|
8295
|
-
|
|
8295
|
+
updateSafeguardRuleStatusUsingGET(ids, status, reqId, token, observe = 'body', reportProgress = false) {
|
|
8296
8296
|
if (ids === null || ids === undefined) {
|
|
8297
|
-
throw new Error('Required parameter ids was null or undefined when calling
|
|
8297
|
+
throw new Error('Required parameter ids was null or undefined when calling updateSafeguardRuleStatusUsingGET.');
|
|
8298
8298
|
}
|
|
8299
8299
|
if (status === null || status === undefined) {
|
|
8300
|
-
throw new Error('Required parameter status was null or undefined when calling
|
|
8300
|
+
throw new Error('Required parameter status was null or undefined when calling updateSafeguardRuleStatusUsingGET.');
|
|
8301
8301
|
}
|
|
8302
8302
|
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
8303
8303
|
if (ids !== undefined && ids !== null) {
|
|
@@ -8322,10 +8322,8 @@ class SafeguardControllerService {
|
|
|
8322
8322
|
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8323
8323
|
}
|
|
8324
8324
|
// to determine the Content-Type header
|
|
8325
|
-
const consumes = [
|
|
8326
|
-
|
|
8327
|
-
];
|
|
8328
|
-
return this.httpClient.post(`${this.basePath}/v2/api/safeguard/update/status`, null, {
|
|
8325
|
+
const consumes = [];
|
|
8326
|
+
return this.httpClient.get(`${this.basePath}/v2/api/safeguard/update/status`, {
|
|
8329
8327
|
params: queryParameters,
|
|
8330
8328
|
withCredentials: this.configuration.withCredentials,
|
|
8331
8329
|
headers: headers,
|