@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
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Api Documentation
|
|
3
|
+
* Api Documentation
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { DcoVideoMusicTrackDTO } from './dcoVideoMusicTrackDTO';
|
|
13
|
+
export interface ApiResponseObjectListDcoVideoMusicTrackDTO {
|
|
14
|
+
error?: Error;
|
|
15
|
+
respId?: string;
|
|
16
|
+
respObject?: Array<DcoVideoMusicTrackDTO>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Api Documentation
|
|
3
|
+
* Api Documentation
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
9
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
export interface DcoVideoMusicTrackDTO {
|
|
13
|
+
displayName?: string;
|
|
14
|
+
durationSecs?: number;
|
|
15
|
+
fileName?: string;
|
|
16
|
+
fileSizeInBytes?: number;
|
|
17
|
+
id?: number;
|
|
18
|
+
url?: string;
|
|
19
|
+
}
|
package/model/models.d.ts
CHANGED
|
@@ -124,6 +124,7 @@ export * from './apiResponseObjectListCreativeMetaData';
|
|
|
124
124
|
export * from './apiResponseObjectListDashboardResponse';
|
|
125
125
|
export * from './apiResponseObjectListDcoVideoBrandGuidelineDTO';
|
|
126
126
|
export * from './apiResponseObjectListDcoVideoDimensionDTO';
|
|
127
|
+
export * from './apiResponseObjectListDcoVideoMusicTrackDTO';
|
|
127
128
|
export * from './apiResponseObjectListDcoVideoSettingsDTO';
|
|
128
129
|
export * from './apiResponseObjectListDcoVideoTemplateDTO';
|
|
129
130
|
export * from './apiResponseObjectListDynamicVideoTemplate';
|
|
@@ -292,6 +293,7 @@ export * from './dcoVideoDimensionDTO';
|
|
|
292
293
|
export * from './dcoVideoGenerateSampleRequest';
|
|
293
294
|
export * from './dcoVideoGenerateSampleResponse';
|
|
294
295
|
export * from './dcoVideoGeneratedCountResponse';
|
|
296
|
+
export * from './dcoVideoMusicTrackDTO';
|
|
295
297
|
export * from './dcoVideoSettingsCreateRequest';
|
|
296
298
|
export * from './dcoVideoSettingsDTO';
|
|
297
299
|
export * from './dcoVideoSettingsUpdateRequest';
|
|
@@ -22,12 +22,9 @@ export interface SafeguardBlockedItemDTO {
|
|
|
22
22
|
unblockActionMessage?: string;
|
|
23
23
|
}
|
|
24
24
|
export declare namespace SafeguardBlockedItemDTO {
|
|
25
|
-
type StatusEnum = '
|
|
25
|
+
type StatusEnum = 'SUCCESS' | 'FAILURE';
|
|
26
26
|
const StatusEnum: {
|
|
27
|
-
PENDING: StatusEnum;
|
|
28
|
-
INPROGRESS: StatusEnum;
|
|
29
|
-
FAILED: StatusEnum;
|
|
30
27
|
SUCCESS: StatusEnum;
|
|
31
|
-
|
|
28
|
+
FAILURE: StatusEnum;
|
|
32
29
|
};
|
|
33
30
|
}
|
|
@@ -14,10 +14,12 @@ export interface SafeguardDetail {
|
|
|
14
14
|
createdBy?: BaseModel;
|
|
15
15
|
createdOn?: number;
|
|
16
16
|
isActive?: boolean;
|
|
17
|
+
lastRunTime?: number;
|
|
17
18
|
lookbackWindow?: number;
|
|
18
19
|
modifiedBy?: BaseModel;
|
|
19
20
|
modifiedOn?: number;
|
|
20
21
|
nextRunTime?: number;
|
|
22
|
+
permanentlyBlockOnSecondStrike?: boolean;
|
|
21
23
|
refreshFrequency?: number;
|
|
22
24
|
rules?: string;
|
|
23
25
|
runFrequency?: number;
|
|
@@ -28,9 +30,10 @@ export interface SafeguardDetail {
|
|
|
28
30
|
targetingScope?: SafeguardDetail.TargetingScopeEnum;
|
|
29
31
|
}
|
|
30
32
|
export declare namespace SafeguardDetail {
|
|
31
|
-
type TargetingScopeEnum = 'APP' | 'INVENTORY';
|
|
33
|
+
type TargetingScopeEnum = 'APP' | 'INVENTORY' | 'CREATIVE';
|
|
32
34
|
const TargetingScopeEnum: {
|
|
33
35
|
APP: TargetingScopeEnum;
|
|
34
36
|
INVENTORY: TargetingScopeEnum;
|
|
37
|
+
CREATIVE: TargetingScopeEnum;
|
|
35
38
|
};
|
|
36
39
|
}
|
|
@@ -17,9 +17,10 @@ export interface SafeguardExclusionDTO {
|
|
|
17
17
|
scope?: SafeguardExclusionDTO.ScopeEnum;
|
|
18
18
|
}
|
|
19
19
|
export declare namespace SafeguardExclusionDTO {
|
|
20
|
-
type ScopeEnum = 'APP' | 'INVENTORY';
|
|
20
|
+
type ScopeEnum = 'APP' | 'INVENTORY' | 'CREATIVE';
|
|
21
21
|
const ScopeEnum: {
|
|
22
22
|
APP: ScopeEnum;
|
|
23
23
|
INVENTORY: ScopeEnum;
|
|
24
|
+
CREATIVE: ScopeEnum;
|
|
24
25
|
};
|
|
25
26
|
}
|
|
@@ -15,6 +15,7 @@ export interface SafeguardRequestDTO {
|
|
|
15
15
|
advertiserId?: number;
|
|
16
16
|
campaignId?: number;
|
|
17
17
|
lookbackWindow?: number;
|
|
18
|
+
permanentlyBlockOnSecondStrike?: boolean;
|
|
18
19
|
refreshFrequency?: number;
|
|
19
20
|
rules?: string;
|
|
20
21
|
runFrequency?: number;
|
|
@@ -25,9 +26,10 @@ export interface SafeguardRequestDTO {
|
|
|
25
26
|
targetingScope?: SafeguardRequestDTO.TargetingScopeEnum;
|
|
26
27
|
}
|
|
27
28
|
export declare namespace SafeguardRequestDTO {
|
|
28
|
-
type TargetingScopeEnum = 'APP' | 'INVENTORY';
|
|
29
|
+
type TargetingScopeEnum = 'APP' | 'INVENTORY' | 'CREATIVE';
|
|
29
30
|
const TargetingScopeEnum: {
|
|
30
31
|
APP: TargetingScopeEnum;
|
|
31
32
|
INVENTORY: TargetingScopeEnum;
|
|
33
|
+
CREATIVE: TargetingScopeEnum;
|
|
32
34
|
};
|
|
33
35
|
}
|
|
@@ -16,6 +16,7 @@ export interface SafeguardResponseDTO {
|
|
|
16
16
|
campaignId?: number;
|
|
17
17
|
lookbackWindow?: number;
|
|
18
18
|
nextRunTime?: number;
|
|
19
|
+
permanentlyBlockOnSecondStrike?: boolean;
|
|
19
20
|
refreshFrequency?: number;
|
|
20
21
|
rules?: string;
|
|
21
22
|
runFrequency?: number;
|
|
@@ -26,9 +27,10 @@ export interface SafeguardResponseDTO {
|
|
|
26
27
|
targetingScope?: SafeguardResponseDTO.TargetingScopeEnum;
|
|
27
28
|
}
|
|
28
29
|
export declare namespace SafeguardResponseDTO {
|
|
29
|
-
type TargetingScopeEnum = 'APP' | 'INVENTORY';
|
|
30
|
+
type TargetingScopeEnum = 'APP' | 'INVENTORY' | 'CREATIVE';
|
|
30
31
|
const TargetingScopeEnum: {
|
|
31
32
|
APP: TargetingScopeEnum;
|
|
32
33
|
INVENTORY: TargetingScopeEnum;
|
|
34
|
+
CREATIVE: TargetingScopeEnum;
|
|
33
35
|
};
|
|
34
36
|
}
|