@tolinax/ayoune-interfaces 2024.27.0 → 2024.27.1
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.
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
export interface IIndustryKPI extends IDefaultFields {
|
|
3
|
+
lab: boolean;
|
|
4
|
+
environment: "production" | "lab" | "all";
|
|
5
|
+
_industry: ObjectId;
|
|
6
|
+
date: Date;
|
|
7
|
+
host?: string;
|
|
8
|
+
ads: number;
|
|
9
|
+
avgPosition: number;
|
|
10
|
+
avgMonthlySearches: number;
|
|
11
|
+
avgCPC: number;
|
|
12
|
+
impressions: number;
|
|
13
|
+
deliveryRate: number;
|
|
14
|
+
termsCount: number;
|
|
15
|
+
terms: any[];
|
|
16
|
+
budget: number;
|
|
17
|
+
market?: string;
|
|
18
|
+
region?: string;
|
|
19
|
+
device?: string;
|
|
20
|
+
}
|
package/interfaces/index.d.ts
CHANGED
|
@@ -366,7 +366,7 @@ export * from "./IMandatoryTask";
|
|
|
366
366
|
export * from "./IManufacturer";
|
|
367
367
|
export * from "./IMarket";
|
|
368
368
|
export * from "./IMarketBudget";
|
|
369
|
-
export * from "./
|
|
369
|
+
export * from "./IIndustryKPI";
|
|
370
370
|
export * from "./IMarketResearch";
|
|
371
371
|
export * from "./IMaterial";
|
|
372
372
|
export * from "./IMeeting";
|
package/interfaces/index.js
CHANGED
|
@@ -382,7 +382,7 @@ __exportStar(require("./IMandatoryTask"), exports);
|
|
|
382
382
|
__exportStar(require("./IManufacturer"), exports);
|
|
383
383
|
__exportStar(require("./IMarket"), exports);
|
|
384
384
|
__exportStar(require("./IMarketBudget"), exports);
|
|
385
|
-
__exportStar(require("./
|
|
385
|
+
__exportStar(require("./IIndustryKPI"), exports);
|
|
386
386
|
__exportStar(require("./IMarketResearch"), exports);
|
|
387
387
|
__exportStar(require("./IMaterial"), exports);
|
|
388
388
|
__exportStar(require("./IMeeting"), exports);
|