@revxui/api-clients-ts 1.1.469 → 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 +23 -10
- package/esm2020/api/dCOVideoSettingsController.service.mjs +31 -1
- 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 +39 -8
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +51 -8
- 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
|
@@ -5828,6 +5828,36 @@ class DCOVideoSettingsControllerService {
|
|
|
5828
5828
|
reportProgress: reportProgress
|
|
5829
5829
|
});
|
|
5830
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
|
+
}
|
|
5831
5861
|
updateSettingsUsingPOST(id, request, regenerateSample, reqId, token, observe = 'body', reportProgress = false) {
|
|
5832
5862
|
if (id === null || id === undefined) {
|
|
5833
5863
|
throw new Error('Required parameter id was null or undefined when calling updateSettingsUsingPOST.');
|
|
@@ -12412,6 +12442,18 @@ var DcoVideoAssetDTO;
|
|
|
12412
12442
|
* Do not edit the class manually.
|
|
12413
12443
|
*/
|
|
12414
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
|
+
|
|
12415
12457
|
/**
|
|
12416
12458
|
* Api Documentation
|
|
12417
12459
|
* Api Documentation
|
|
@@ -13464,11 +13506,8 @@ var RuleDTO;
|
|
|
13464
13506
|
var SafeguardBlockedItemDTO;
|
|
13465
13507
|
(function (SafeguardBlockedItemDTO) {
|
|
13466
13508
|
SafeguardBlockedItemDTO.StatusEnum = {
|
|
13467
|
-
PENDING: 'PENDING',
|
|
13468
|
-
INPROGRESS: 'IN_PROGRESS',
|
|
13469
|
-
FAILED: 'FAILED',
|
|
13470
13509
|
SUCCESS: 'SUCCESS',
|
|
13471
|
-
|
|
13510
|
+
FAILURE: 'FAILURE'
|
|
13472
13511
|
};
|
|
13473
13512
|
})(SafeguardBlockedItemDTO || (SafeguardBlockedItemDTO = {}));
|
|
13474
13513
|
|
|
@@ -13476,7 +13515,8 @@ var SafeguardDetail;
|
|
|
13476
13515
|
(function (SafeguardDetail) {
|
|
13477
13516
|
SafeguardDetail.TargetingScopeEnum = {
|
|
13478
13517
|
APP: 'APP',
|
|
13479
|
-
INVENTORY: 'INVENTORY'
|
|
13518
|
+
INVENTORY: 'INVENTORY',
|
|
13519
|
+
CREATIVE: 'CREATIVE'
|
|
13480
13520
|
};
|
|
13481
13521
|
})(SafeguardDetail || (SafeguardDetail = {}));
|
|
13482
13522
|
|
|
@@ -13484,7 +13524,8 @@ var SafeguardExclusionDTO;
|
|
|
13484
13524
|
(function (SafeguardExclusionDTO) {
|
|
13485
13525
|
SafeguardExclusionDTO.ScopeEnum = {
|
|
13486
13526
|
APP: 'APP',
|
|
13487
|
-
INVENTORY: 'INVENTORY'
|
|
13527
|
+
INVENTORY: 'INVENTORY',
|
|
13528
|
+
CREATIVE: 'CREATIVE'
|
|
13488
13529
|
};
|
|
13489
13530
|
})(SafeguardExclusionDTO || (SafeguardExclusionDTO = {}));
|
|
13490
13531
|
|
|
@@ -13492,7 +13533,8 @@ var SafeguardRequestDTO;
|
|
|
13492
13533
|
(function (SafeguardRequestDTO) {
|
|
13493
13534
|
SafeguardRequestDTO.TargetingScopeEnum = {
|
|
13494
13535
|
APP: 'APP',
|
|
13495
|
-
INVENTORY: 'INVENTORY'
|
|
13536
|
+
INVENTORY: 'INVENTORY',
|
|
13537
|
+
CREATIVE: 'CREATIVE'
|
|
13496
13538
|
};
|
|
13497
13539
|
})(SafeguardRequestDTO || (SafeguardRequestDTO = {}));
|
|
13498
13540
|
|
|
@@ -13500,7 +13542,8 @@ var SafeguardResponseDTO;
|
|
|
13500
13542
|
(function (SafeguardResponseDTO) {
|
|
13501
13543
|
SafeguardResponseDTO.TargetingScopeEnum = {
|
|
13502
13544
|
APP: 'APP',
|
|
13503
|
-
INVENTORY: 'INVENTORY'
|
|
13545
|
+
INVENTORY: 'INVENTORY',
|
|
13546
|
+
CREATIVE: 'CREATIVE'
|
|
13504
13547
|
};
|
|
13505
13548
|
})(SafeguardResponseDTO || (SafeguardResponseDTO = {}));
|
|
13506
13549
|
|