@tolinax/ayoune-interfaces 2024.10.0 → 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;
|
|
@@ -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;
|
package/interfaces/ISetting.d.ts
CHANGED
|
@@ -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;
|