@revxui/api-clients-ts 1.1.427 → 1.1.429
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 +6 -6
- package/esm2020/api/safeguardController.service.mjs +12 -12
- package/esm2020/model/models.mjs +3 -1
- package/esm2020/model/safeguardDetail.mjs +1 -12
- package/esm2020/model/safeguardEntity.mjs +1 -12
- package/esm2020/model/safeguardLiMappingEntity.mjs +2 -0
- package/esm2020/model/safeguardRequestDTO.mjs +1 -1
- package/esm2020/model/safeguardResponseDTO.mjs +1 -1
- package/esm2020/model/safeguardScheduleEntity.mjs +2 -0
- package/fesm2015/revxui-api-clients-ts.mjs +11 -33
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +11 -33
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/models.d.ts +2 -0
- package/model/safeguardDetail.d.ts +2 -2
- package/model/safeguardEntity.d.ts +4 -0
- package/model/safeguardLiMappingEntity.d.ts +17 -0
- package/model/safeguardRequestDTO.d.ts +1 -0
- package/model/safeguardResponseDTO.d.ts +1 -0
- package/model/safeguardScheduleEntity.d.ts +19 -0
- 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,
|
|
@@ -8370,9 +8368,9 @@ class SafeguardControllerService {
|
|
|
8370
8368
|
reportProgress: reportProgress
|
|
8371
8369
|
});
|
|
8372
8370
|
}
|
|
8373
|
-
|
|
8371
|
+
validateSafeguardRuleUsingPOST(safeguardRequestDTO, reqId, token, observe = 'body', reportProgress = false) {
|
|
8374
8372
|
if (safeguardRequestDTO === null || safeguardRequestDTO === undefined) {
|
|
8375
|
-
throw new Error('Required parameter safeguardRequestDTO was null or undefined when calling
|
|
8373
|
+
throw new Error('Required parameter safeguardRequestDTO was null or undefined when calling validateSafeguardRuleUsingPOST.');
|
|
8376
8374
|
}
|
|
8377
8375
|
let headers = this.defaultHeaders;
|
|
8378
8376
|
if (reqId !== undefined && reqId !== null) {
|
|
@@ -8390,12 +8388,14 @@ class SafeguardControllerService {
|
|
|
8390
8388
|
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
8391
8389
|
}
|
|
8392
8390
|
// to determine the Content-Type header
|
|
8393
|
-
const consumes = [
|
|
8391
|
+
const consumes = [
|
|
8392
|
+
'application/json'
|
|
8393
|
+
];
|
|
8394
8394
|
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
8395
8395
|
if (httpContentTypeSelected != undefined) {
|
|
8396
8396
|
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
8397
8397
|
}
|
|
8398
|
-
return this.httpClient.
|
|
8398
|
+
return this.httpClient.post(`${this.basePath}/v2/api/safeguard/validate`, safeguardRequestDTO, {
|
|
8399
8399
|
withCredentials: this.configuration.withCredentials,
|
|
8400
8400
|
headers: headers,
|
|
8401
8401
|
observe: observe,
|
|
@@ -12660,17 +12660,6 @@ var RuleDTO;
|
|
|
12660
12660
|
* Do not edit the class manually.
|
|
12661
12661
|
*/
|
|
12662
12662
|
|
|
12663
|
-
/**
|
|
12664
|
-
* Api Documentation
|
|
12665
|
-
* Api Documentation
|
|
12666
|
-
*
|
|
12667
|
-
* OpenAPI spec version: 1.0
|
|
12668
|
-
*
|
|
12669
|
-
*
|
|
12670
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
12671
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
12672
|
-
* Do not edit the class manually.
|
|
12673
|
-
*/
|
|
12674
12663
|
var SafeguardDetail;
|
|
12675
12664
|
(function (SafeguardDetail) {
|
|
12676
12665
|
SafeguardDetail.TargetingScopeEnum = {
|
|
@@ -12679,17 +12668,6 @@ var SafeguardDetail;
|
|
|
12679
12668
|
};
|
|
12680
12669
|
})(SafeguardDetail || (SafeguardDetail = {}));
|
|
12681
12670
|
|
|
12682
|
-
/**
|
|
12683
|
-
* Api Documentation
|
|
12684
|
-
* Api Documentation
|
|
12685
|
-
*
|
|
12686
|
-
* OpenAPI spec version: 1.0
|
|
12687
|
-
*
|
|
12688
|
-
*
|
|
12689
|
-
* NOTE: This class is auto generated by the swagger code generator program.
|
|
12690
|
-
* https://github.com/swagger-api/swagger-codegen.git
|
|
12691
|
-
* Do not edit the class manually.
|
|
12692
|
-
*/
|
|
12693
12671
|
var SafeguardEntity;
|
|
12694
12672
|
(function (SafeguardEntity) {
|
|
12695
12673
|
SafeguardEntity.TargetingScopeEnum = {
|