@tolinax/ayoune-interfaces 2024.9.3 → 2024.10.0
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.
|
@@ -82,6 +82,23 @@ interface IBrandBidderConfig {
|
|
|
82
82
|
note?: string;
|
|
83
83
|
}[];
|
|
84
84
|
}
|
|
85
|
+
interface IResults {
|
|
86
|
+
summary: string;
|
|
87
|
+
contentConcept: string;
|
|
88
|
+
seoConcept: string;
|
|
89
|
+
seaConcept: string;
|
|
90
|
+
ads: number;
|
|
91
|
+
pages: number;
|
|
92
|
+
articles: number;
|
|
93
|
+
publications: number;
|
|
94
|
+
content: number;
|
|
95
|
+
cost: number;
|
|
96
|
+
brandBidders: number;
|
|
97
|
+
adHijackers: number;
|
|
98
|
+
tradeMarkViolations: number;
|
|
99
|
+
ownAds: number;
|
|
100
|
+
pauseCampaignFactor: number;
|
|
101
|
+
}
|
|
85
102
|
export interface IKeywordResearch extends IDefaultFields {
|
|
86
103
|
name: string;
|
|
87
104
|
_customerID: ObjectId;
|
|
@@ -112,5 +129,6 @@ export interface IKeywordResearch extends IDefaultFields {
|
|
|
112
129
|
adHijackingConfig: IAdHijackerConfig;
|
|
113
130
|
maxCPCs: number[];
|
|
114
131
|
costRuns: ICostRun[];
|
|
132
|
+
results: IResults;
|
|
115
133
|
}
|
|
116
134
|
export {};
|