@tolinax/ayoune-interfaces 2024.9.2 → 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 {};
@@ -649,7 +649,14 @@ interface ProductsSettings {
649
649
  lockProductsAfterApprove?: boolean;
650
650
  reCheckPriceOnAmountChange?: boolean;
651
651
  }
652
+ interface ILogoSettings {
653
+ height?: number;
654
+ margin?: number;
655
+ padding?: number;
656
+ invert: boolean;
657
+ }
652
658
  interface SlidesSettings {
659
+ logoSettings: ILogoSettings;
653
660
  active: boolean;
654
661
  title: string;
655
662
  defaultLanguage: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2024.9.2",
3
+ "version": "2024.10.0",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",