@revxui/api-clients-ts 1.1.468 → 1.1.470
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/dCOVideoSettingsController.service.d.ts +27 -14
- package/esm2020/api/dCOVideoSettingsController.service.mjs +37 -5
- package/esm2020/model/apiResponseObjectListDcoVideoMusicTrackDTO.mjs +2 -0
- package/esm2020/model/dcoVideoAssetDTO.mjs +1 -1
- package/esm2020/model/dcoVideoMusicTrackDTO.mjs +13 -0
- package/esm2020/model/dcoVideoSettingsDTO.mjs +1 -1
- package/esm2020/model/models.mjs +3 -1
- package/esm2020/model/safeguardBlockedItemDTO.mjs +2 -5
- package/esm2020/model/safeguardDetail.mjs +3 -2
- package/esm2020/model/safeguardExclusionDTO.mjs +3 -2
- package/esm2020/model/safeguardRequestDTO.mjs +3 -2
- package/esm2020/model/safeguardResponseDTO.mjs +3 -2
- package/fesm2015/revxui-api-clients-ts.mjs +45 -12
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +57 -12
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/apiResponseObjectListDcoVideoMusicTrackDTO.d.ts +17 -0
- package/model/dcoVideoAssetDTO.d.ts +1 -0
- package/model/dcoVideoMusicTrackDTO.d.ts +19 -0
- package/model/dcoVideoSettingsDTO.d.ts +1 -0
- package/model/models.d.ts +2 -0
- package/model/safeguardBlockedItemDTO.d.ts +2 -5
- package/model/safeguardDetail.d.ts +4 -1
- package/model/safeguardExclusionDTO.d.ts +2 -1
- package/model/safeguardRequestDTO.d.ts +3 -1
- package/model/safeguardResponseDTO.d.ts +3 -1
- package/package.json +1 -1
|
@@ -5567,9 +5567,9 @@ class DCOVideoSettingsControllerService {
|
|
|
5567
5567
|
reportProgress: reportProgress
|
|
5568
5568
|
});
|
|
5569
5569
|
}
|
|
5570
|
-
|
|
5570
|
+
deleteSettingsUsingPOST(id, reqId, token, observe = 'body', reportProgress = false) {
|
|
5571
5571
|
if (id === null || id === undefined) {
|
|
5572
|
-
throw new Error('Required parameter id was null or undefined when calling
|
|
5572
|
+
throw new Error('Required parameter id was null or undefined when calling deleteSettingsUsingPOST.');
|
|
5573
5573
|
}
|
|
5574
5574
|
let headers = this.defaultHeaders;
|
|
5575
5575
|
if (reqId !== undefined && reqId !== null) {
|
|
@@ -5587,8 +5587,10 @@ class DCOVideoSettingsControllerService {
|
|
|
5587
5587
|
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
5588
5588
|
}
|
|
5589
5589
|
// to determine the Content-Type header
|
|
5590
|
-
const consumes = [
|
|
5591
|
-
|
|
5590
|
+
const consumes = [
|
|
5591
|
+
'application/json'
|
|
5592
|
+
];
|
|
5593
|
+
return this.httpClient.post(`${this.basePath}/v2/api/dcovideo/settings/${encodeURIComponent(String(id))}/archive`, null, {
|
|
5592
5594
|
withCredentials: this.configuration.withCredentials,
|
|
5593
5595
|
headers: headers,
|
|
5594
5596
|
observe: observe,
|
|
@@ -5826,6 +5828,36 @@ class DCOVideoSettingsControllerService {
|
|
|
5826
5828
|
reportProgress: reportProgress
|
|
5827
5829
|
});
|
|
5828
5830
|
}
|
|
5831
|
+
listMusicTracksUsingGET(includeInactive, reqId, token, observe = 'body', reportProgress = false) {
|
|
5832
|
+
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
5833
|
+
if (includeInactive !== undefined && includeInactive !== null) {
|
|
5834
|
+
queryParameters = queryParameters.set('includeInactive', includeInactive);
|
|
5835
|
+
}
|
|
5836
|
+
let headers = this.defaultHeaders;
|
|
5837
|
+
if (reqId !== undefined && reqId !== null) {
|
|
5838
|
+
headers = headers.set('reqId', String(reqId));
|
|
5839
|
+
}
|
|
5840
|
+
if (token !== undefined && token !== null) {
|
|
5841
|
+
headers = headers.set('token', String(token));
|
|
5842
|
+
}
|
|
5843
|
+
// to determine the Accept header
|
|
5844
|
+
let httpHeaderAccepts = [
|
|
5845
|
+
'application/json'
|
|
5846
|
+
];
|
|
5847
|
+
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
5848
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
5849
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
5850
|
+
}
|
|
5851
|
+
// to determine the Content-Type header
|
|
5852
|
+
const consumes = [];
|
|
5853
|
+
return this.httpClient.get(`${this.basePath}/v2/api/dcovideo/music-tracks`, {
|
|
5854
|
+
params: queryParameters,
|
|
5855
|
+
withCredentials: this.configuration.withCredentials,
|
|
5856
|
+
headers: headers,
|
|
5857
|
+
observe: observe,
|
|
5858
|
+
reportProgress: reportProgress
|
|
5859
|
+
});
|
|
5860
|
+
}
|
|
5829
5861
|
updateSettingsUsingPOST(id, request, regenerateSample, reqId, token, observe = 'body', reportProgress = false) {
|
|
5830
5862
|
if (id === null || id === undefined) {
|
|
5831
5863
|
throw new Error('Required parameter id was null or undefined when calling updateSettingsUsingPOST.');
|
|
@@ -12410,6 +12442,18 @@ var DcoVideoAssetDTO;
|
|
|
12410
12442
|
* Do not edit the class manually.
|
|
12411
12443
|
*/
|
|
12412
12444
|
|
|
12445
|
+
/**
|
|
12446
|
+
* Api Documentation
|
|
12447
|
+
* Api Documentation
|
|
12448
|
+
*
|
|
12449
|
+
* OpenAPI spec version: 1.0
|
|
12450
|
+
*
|
|
12451
|
+
*
|
|
12452
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
12453
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
12454
|
+
* Do not edit the class manually.
|
|
12455
|
+
*/
|
|
12456
|
+
|
|
12413
12457
|
/**
|
|
12414
12458
|
* Api Documentation
|
|
12415
12459
|
* Api Documentation
|
|
@@ -13462,11 +13506,8 @@ var RuleDTO;
|
|
|
13462
13506
|
var SafeguardBlockedItemDTO;
|
|
13463
13507
|
(function (SafeguardBlockedItemDTO) {
|
|
13464
13508
|
SafeguardBlockedItemDTO.StatusEnum = {
|
|
13465
|
-
PENDING: 'PENDING',
|
|
13466
|
-
INPROGRESS: 'IN_PROGRESS',
|
|
13467
|
-
FAILED: 'FAILED',
|
|
13468
13509
|
SUCCESS: 'SUCCESS',
|
|
13469
|
-
|
|
13510
|
+
FAILURE: 'FAILURE'
|
|
13470
13511
|
};
|
|
13471
13512
|
})(SafeguardBlockedItemDTO || (SafeguardBlockedItemDTO = {}));
|
|
13472
13513
|
|
|
@@ -13474,7 +13515,8 @@ var SafeguardDetail;
|
|
|
13474
13515
|
(function (SafeguardDetail) {
|
|
13475
13516
|
SafeguardDetail.TargetingScopeEnum = {
|
|
13476
13517
|
APP: 'APP',
|
|
13477
|
-
INVENTORY: 'INVENTORY'
|
|
13518
|
+
INVENTORY: 'INVENTORY',
|
|
13519
|
+
CREATIVE: 'CREATIVE'
|
|
13478
13520
|
};
|
|
13479
13521
|
})(SafeguardDetail || (SafeguardDetail = {}));
|
|
13480
13522
|
|
|
@@ -13482,7 +13524,8 @@ var SafeguardExclusionDTO;
|
|
|
13482
13524
|
(function (SafeguardExclusionDTO) {
|
|
13483
13525
|
SafeguardExclusionDTO.ScopeEnum = {
|
|
13484
13526
|
APP: 'APP',
|
|
13485
|
-
INVENTORY: 'INVENTORY'
|
|
13527
|
+
INVENTORY: 'INVENTORY',
|
|
13528
|
+
CREATIVE: 'CREATIVE'
|
|
13486
13529
|
};
|
|
13487
13530
|
})(SafeguardExclusionDTO || (SafeguardExclusionDTO = {}));
|
|
13488
13531
|
|
|
@@ -13490,7 +13533,8 @@ var SafeguardRequestDTO;
|
|
|
13490
13533
|
(function (SafeguardRequestDTO) {
|
|
13491
13534
|
SafeguardRequestDTO.TargetingScopeEnum = {
|
|
13492
13535
|
APP: 'APP',
|
|
13493
|
-
INVENTORY: 'INVENTORY'
|
|
13536
|
+
INVENTORY: 'INVENTORY',
|
|
13537
|
+
CREATIVE: 'CREATIVE'
|
|
13494
13538
|
};
|
|
13495
13539
|
})(SafeguardRequestDTO || (SafeguardRequestDTO = {}));
|
|
13496
13540
|
|
|
@@ -13498,7 +13542,8 @@ var SafeguardResponseDTO;
|
|
|
13498
13542
|
(function (SafeguardResponseDTO) {
|
|
13499
13543
|
SafeguardResponseDTO.TargetingScopeEnum = {
|
|
13500
13544
|
APP: 'APP',
|
|
13501
|
-
INVENTORY: 'INVENTORY'
|
|
13545
|
+
INVENTORY: 'INVENTORY',
|
|
13546
|
+
CREATIVE: 'CREATIVE'
|
|
13502
13547
|
};
|
|
13503
13548
|
})(SafeguardResponseDTO || (SafeguardResponseDTO = {}));
|
|
13504
13549
|
|