@tolinax/ayoune-interfaces 2025.12.0 → 2025.12.2
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.
|
@@ -44,6 +44,7 @@ export interface IMarketResearch extends IDefaultFields {
|
|
|
44
44
|
googleDomain?: string;
|
|
45
45
|
config: {
|
|
46
46
|
frequency: number;
|
|
47
|
+
pauseFrequency: number;
|
|
47
48
|
active: boolean;
|
|
48
49
|
lab: boolean;
|
|
49
50
|
calculateBudget: boolean;
|
|
@@ -65,6 +66,7 @@ export interface IMarketResearch extends IDefaultFields {
|
|
|
65
66
|
fetchSettings: {
|
|
66
67
|
provider: "serpapi" | "ayoune";
|
|
67
68
|
withAds: boolean;
|
|
69
|
+
usePause: boolean;
|
|
68
70
|
labRun: boolean;
|
|
69
71
|
testRun: boolean;
|
|
70
72
|
maxPerRun: number;
|
|
@@ -20,6 +20,18 @@ interface LastChecks {
|
|
|
20
20
|
suggestions_alphabetical?: Date;
|
|
21
21
|
suggestions_comparisons?: Date;
|
|
22
22
|
}
|
|
23
|
+
interface NextChecks {
|
|
24
|
+
mobile?: Date;
|
|
25
|
+
desktop?: Date;
|
|
26
|
+
priceRange?: Date;
|
|
27
|
+
price?: Date;
|
|
28
|
+
trends?: Date;
|
|
29
|
+
keyword_planner?: Date;
|
|
30
|
+
suggestions_prepositions?: Date;
|
|
31
|
+
suggestions_questionWords?: Date;
|
|
32
|
+
suggestions_alphabetical?: Date;
|
|
33
|
+
suggestions_comparisons?: Date;
|
|
34
|
+
}
|
|
23
35
|
interface Cost {
|
|
24
36
|
createdAt?: Date;
|
|
25
37
|
bid?: number;
|
|
@@ -81,7 +93,7 @@ export interface IaYOUneKeyword extends IDefaultFields {
|
|
|
81
93
|
niceName?: string;
|
|
82
94
|
locale: string;
|
|
83
95
|
last_checks?: LastChecks;
|
|
84
|
-
next_checks?:
|
|
96
|
+
next_checks?: NextChecks;
|
|
85
97
|
_lastDevice?: string;
|
|
86
98
|
lastDeviceKind?: Device;
|
|
87
99
|
next_check?: Date;
|