@tolinax/ayoune-interfaces 2024.10.0 → 2024.12.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.
@@ -59,6 +59,14 @@ export interface IAd extends IDefaultFields {
59
59
  isFriend: boolean;
60
60
  params: any;
61
61
  awin_number: string;
62
+ aff_id: string;
63
+ offer_id: string;
64
+ aff_sub1: string;
65
+ aff_sub2: string;
66
+ aff_sub3: string;
67
+ aff_sub4: string;
68
+ aff_sub5: string;
69
+ aff_sub6: string;
62
70
  redirectChain: {
63
71
  url: string;
64
72
  domain: string;
@@ -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;
@@ -87,6 +89,7 @@ interface IResults {
87
89
  contentConcept: string;
88
90
  seoConcept: string;
89
91
  seaConcept: string;
92
+ plaConcept: string;
90
93
  ads: number;
91
94
  pages: number;
92
95
  articles: number;
@@ -98,6 +101,12 @@ interface IResults {
98
101
  tradeMarkViolations: number;
99
102
  ownAds: number;
100
103
  pauseCampaignFactor: number;
104
+ videoIdDesktop?: ObjectId;
105
+ videoNameDesktop?: string;
106
+ videoUrlDesktop?: string;
107
+ videoIdMobile?: ObjectId;
108
+ videoNameMobile?: string;
109
+ videoUrlMobile?: string;
101
110
  }
102
111
  export interface IKeywordResearch extends IDefaultFields {
103
112
  name: string;
@@ -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.10.0",
3
+ "version": "2024.12.0",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",