@revxui/api-clients-ts 1.1.451 → 1.1.453
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/esm2020/model/adoDTO.mjs +1 -1
- package/esm2020/model/advertiserDynamicDetails.mjs +1 -1
- package/esm2020/model/creativeDTO.mjs +1 -1
- 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 +8 -4
- package/fesm2015/revxui-api-clients-ts.mjs.map +1 -1
- package/fesm2020/revxui-api-clients-ts.mjs +8 -4
- package/fesm2020/revxui-api-clients-ts.mjs.map +1 -1
- package/model/adoDTO.d.ts +1 -0
- package/model/advertiserDynamicDetails.d.ts +1 -0
- package/model/creativeDTO.d.ts +1 -0
- package/model/safeguardDetail.d.ts +2 -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
package/model/adoDTO.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ import { AdvertiserLayoutVariables } from './advertiserLayoutVariables';
|
|
|
13
13
|
import { BaseModel } from './baseModel';
|
|
14
14
|
export interface AdvertiserDynamicDetails {
|
|
15
15
|
ado?: boolean;
|
|
16
|
+
adoExtManaged?: boolean;
|
|
16
17
|
adoPersons?: Array<BaseModel>;
|
|
17
18
|
advTimezone?: BaseModel;
|
|
18
19
|
advertiserId?: number;
|
package/model/creativeDTO.d.ts
CHANGED
|
@@ -28,9 +28,10 @@ export interface SafeguardDetail {
|
|
|
28
28
|
targetingScope?: SafeguardDetail.TargetingScopeEnum;
|
|
29
29
|
}
|
|
30
30
|
export declare namespace SafeguardDetail {
|
|
31
|
-
type TargetingScopeEnum = 'APP' | 'INVENTORY';
|
|
31
|
+
type TargetingScopeEnum = 'APP' | 'INVENTORY' | 'CREATIVE';
|
|
32
32
|
const TargetingScopeEnum: {
|
|
33
33
|
APP: TargetingScopeEnum;
|
|
34
34
|
INVENTORY: TargetingScopeEnum;
|
|
35
|
+
CREATIVE: TargetingScopeEnum;
|
|
35
36
|
};
|
|
36
37
|
}
|
|
@@ -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
|
}
|