@tolinax/ayoune-interfaces 2024.9.3 → 2024.11.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.
@@ -31,6 +31,8 @@ interface IResearchConfig {
31
31
  advancedCrawling: boolean;
32
32
  start: number;
33
33
  evaluationDuration: number;
34
+ generateVideos?: boolean;
35
+ generateAudios?: boolean;
34
36
  devices: string[];
35
37
  matchType: string;
36
38
  lastCheck?: Date;
@@ -82,6 +84,30 @@ interface IBrandBidderConfig {
82
84
  note?: string;
83
85
  }[];
84
86
  }
87
+ interface IResults {
88
+ summary: string;
89
+ contentConcept: string;
90
+ seoConcept: string;
91
+ seaConcept: string;
92
+ plaConcept: string;
93
+ ads: number;
94
+ pages: number;
95
+ articles: number;
96
+ publications: number;
97
+ content: number;
98
+ cost: number;
99
+ brandBidders: number;
100
+ adHijackers: number;
101
+ tradeMarkViolations: number;
102
+ ownAds: number;
103
+ pauseCampaignFactor: number;
104
+ videoIdDesktop?: ObjectId;
105
+ videoNameDesktop?: string;
106
+ videoUrlDesktop?: string;
107
+ videoIdMobile?: ObjectId;
108
+ videoNameMobile?: string;
109
+ videoUrlMobile?: string;
110
+ }
85
111
  export interface IKeywordResearch extends IDefaultFields {
86
112
  name: string;
87
113
  _customerID: ObjectId;
@@ -112,5 +138,6 @@ export interface IKeywordResearch extends IDefaultFields {
112
138
  adHijackingConfig: IAdHijackerConfig;
113
139
  maxCPCs: number[];
114
140
  costRuns: ICostRun[];
141
+ results: IResults;
115
142
  }
116
143
  export {};
@@ -74,6 +74,8 @@ interface ColorsSettings {
74
74
  call?: string;
75
75
  offline?: string;
76
76
  locked?: string;
77
+ background?: string;
78
+ text?: string;
77
79
  brand?: string;
78
80
  primary?: string;
79
81
  secondary?: string;
@@ -83,6 +85,9 @@ interface ColorsSettings {
83
85
  info?: string;
84
86
  }
85
87
  interface FontsSettings {
88
+ title?: string;
89
+ subTitle?: string;
90
+ heading?: string;
86
91
  brand?: string;
87
92
  primary?: string;
88
93
  secondary?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2024.9.3",
3
+ "version": "2024.11.0",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",