@tolinax/ayoune-interfaces 2024.26.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
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,5 +1,5 @@
1
1
  import { IDefaultFields } from "./IDefaultFields";
2
- export interface IIndustryKPIs extends IDefaultFields {
2
+ export interface IIndustryKPI extends IDefaultFields {
3
3
  lab: boolean;
4
4
  environment: "production" | "lab" | "all";
5
5
  _industry: ObjectId;
@@ -1,6 +1,7 @@
1
1
  import { IDefaultFields } from "./IDefaultFields";
2
2
  export interface IaYOUneAdvertisementDisplay extends IDefaultFields {
3
3
  _customerID?: ObjectId;
4
+ serial?: string;
4
5
  name?: string;
5
6
  note?: string;
6
7
  _location?: ObjectId;
@@ -0,0 +1,12 @@
1
+ import { IDefaultFields } from "./IDefaultFields";
2
+ import { IAddress } from "./IAddress";
3
+ export interface IaYOUneAdvertisementDisplayLocation extends IDefaultFields {
4
+ _customerID?: ObjectId;
5
+ name?: string;
6
+ note?: string;
7
+ address?: IAddress;
8
+ prioritizeOwnAds?: boolean;
9
+ ratio?: number;
10
+ mediaTypes?: string[];
11
+ locale?: string;
12
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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 "./IIndustryKPIs";
369
+ export * from "./IIndustryKPI";
370
370
  export * from "./IMarketResearch";
371
371
  export * from "./IMaterial";
372
372
  export * from "./IMeeting";
@@ -632,7 +632,7 @@ export * from "./IPortfolio";
632
632
  export * from "./IReference";
633
633
  export * from "./IaYOUneAdvertisement";
634
634
  export * from "./IaYOUneAdvertisementCampaign";
635
+ export * from "./IaYOUneAdvertisementGroup";
635
636
  export * from "./IaYOUneAdvertisementDisplay";
637
+ export * from "./IaYOUneAdvertisementDisplayLocation";
636
638
  export * from "./IaYOUneAdvertisementDisplayGroup";
637
- export * from "./IaYOUneAdvertisementGroup";
638
- export * from "./IaYOUneAdvertisementLocation";
@@ -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("./IIndustryKPIs"), exports);
385
+ __exportStar(require("./IIndustryKPI"), exports);
386
386
  __exportStar(require("./IMarketResearch"), exports);
387
387
  __exportStar(require("./IMaterial"), exports);
388
388
  __exportStar(require("./IMeeting"), exports);
@@ -648,7 +648,7 @@ __exportStar(require("./IPortfolio"), exports);
648
648
  __exportStar(require("./IReference"), exports);
649
649
  __exportStar(require("./IaYOUneAdvertisement"), exports);
650
650
  __exportStar(require("./IaYOUneAdvertisementCampaign"), exports);
651
+ __exportStar(require("./IaYOUneAdvertisementGroup"), exports);
651
652
  __exportStar(require("./IaYOUneAdvertisementDisplay"), exports);
653
+ __exportStar(require("./IaYOUneAdvertisementDisplayLocation"), exports);
652
654
  __exportStar(require("./IaYOUneAdvertisementDisplayGroup"), exports);
653
- __exportStar(require("./IaYOUneAdvertisementGroup"), exports);
654
- __exportStar(require("./IaYOUneAdvertisementLocation"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2024.26.0",
3
+ "version": "2024.27.1",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",