@tolinax/ayoune-interfaces 2024.4.45 → 2024.4.47

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,11 @@
1
+ import { IDefaultFields } from "./IDefaultFields";
2
+ interface Mapping {
3
+ IABCategory: string;
4
+ label: string;
5
+ }
6
+ export interface IIABCategoryMapping extends IDefaultFields {
7
+ _id?: ObjectId;
8
+ _customerID?: ObjectId;
9
+ mappings: Mapping[];
10
+ }
11
+ export {};
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ import { IDefaultFields } from "./IDefaultFields";
2
+ interface Mapping {
3
+ IABCategory: string;
4
+ label: string;
5
+ }
6
+ export interface IIABCategoryMapping extends IDefaultFields {
7
+ _id?: ObjectId;
8
+ _customerID?: ObjectId;
9
+ mappings: Mapping[];
10
+ }
11
+ export {};
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -115,11 +115,15 @@ export interface IaYOUneKeyword extends IDefaultFields {
115
115
  avgGrp?: number;
116
116
  avgCpc?: number;
117
117
  avgCpcGoogle?: number;
118
+ avgCpcIndustry?: number;
118
119
  avgCpd?: number;
120
+ avgCpdIndustry?: number;
119
121
  avgCost?: number;
122
+ avgCostIndustry?: number;
120
123
  avgCtr?: number;
124
+ avgCtrIndustry?: number;
121
125
  avgImpressions?: number;
122
- avgImpressionsBucket?: number;
126
+ avgImpressionsIndustry?: number;
123
127
  breakPointMin?: number;
124
128
  breakPointMax?: number;
125
129
  breakPointAvg?: number;
@@ -287,6 +287,7 @@ export * from "./IHookTemplate";
287
287
  export * from "./IHRJob";
288
288
  export * from "./IHubQuestion";
289
289
  export * from "./IIABCategory";
290
+ export * from "./IIABCategoryMapping";
290
291
  export * from "./IImage";
291
292
  export * from "./IImageBanner";
292
293
  export * from "./IImageBannerCat";
@@ -303,6 +303,7 @@ __exportStar(require("./IHookTemplate"), exports);
303
303
  __exportStar(require("./IHRJob"), exports);
304
304
  __exportStar(require("./IHubQuestion"), exports);
305
305
  __exportStar(require("./IIABCategory"), exports);
306
+ __exportStar(require("./IIABCategoryMapping"), exports);
306
307
  __exportStar(require("./IImage"), exports);
307
308
  __exportStar(require("./IImageBanner"), exports);
308
309
  __exportStar(require("./IImageBannerCat"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2024.4.45",
3
+ "version": "2024.4.47",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",