@tolinax/ayoune-interfaces 2024.6.1 → 2024.7.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.
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
declare enum Environment {
|
|
3
|
+
production = "production",
|
|
4
|
+
lab = "lab",
|
|
5
|
+
all = "all"
|
|
6
|
+
}
|
|
7
|
+
declare enum Device {
|
|
8
|
+
mobile = "mobile",
|
|
9
|
+
desktop = "desktop"
|
|
10
|
+
}
|
|
11
|
+
interface LastChecks {
|
|
12
|
+
mobile?: Date;
|
|
13
|
+
desktop?: Date;
|
|
14
|
+
priceRange?: Date;
|
|
15
|
+
price?: Date;
|
|
16
|
+
trends?: Date;
|
|
17
|
+
keyword_planner?: Date;
|
|
18
|
+
}
|
|
19
|
+
interface Cost {
|
|
20
|
+
createdAt?: Date;
|
|
21
|
+
bid?: number;
|
|
22
|
+
grp?: number;
|
|
23
|
+
cpc?: number;
|
|
24
|
+
cpd?: number;
|
|
25
|
+
cost?: number;
|
|
26
|
+
impressions?: number;
|
|
27
|
+
ctr?: number;
|
|
28
|
+
}
|
|
29
|
+
interface Annotation {
|
|
30
|
+
name?: string;
|
|
31
|
+
concept_group: {
|
|
32
|
+
name?: string;
|
|
33
|
+
type?: string;
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
interface MonthlySearch {
|
|
37
|
+
year?: string;
|
|
38
|
+
month?: string;
|
|
39
|
+
monthly_searches?: number;
|
|
40
|
+
}
|
|
41
|
+
interface Related {
|
|
42
|
+
_keyword?: string;
|
|
43
|
+
}
|
|
44
|
+
interface Question {
|
|
45
|
+
_keyword?: string;
|
|
46
|
+
}
|
|
47
|
+
interface Preposition {
|
|
48
|
+
modifier?: string;
|
|
49
|
+
_keyword?: string;
|
|
50
|
+
}
|
|
51
|
+
interface Comparison {
|
|
52
|
+
modifier?: string;
|
|
53
|
+
_keyword?: string;
|
|
54
|
+
}
|
|
55
|
+
interface Alphabetical {
|
|
56
|
+
modifier?: string;
|
|
57
|
+
_keyword?: string;
|
|
58
|
+
}
|
|
59
|
+
interface Translation {
|
|
60
|
+
locale?: string;
|
|
61
|
+
_keyword?: string;
|
|
62
|
+
}
|
|
63
|
+
interface IABCategory {
|
|
64
|
+
_id?: string;
|
|
65
|
+
label?: string;
|
|
66
|
+
parent?: string;
|
|
67
|
+
count?: number;
|
|
68
|
+
}
|
|
69
|
+
export interface IaYOUneKeyword extends IDefaultFields {
|
|
70
|
+
lab?: boolean;
|
|
71
|
+
environment?: Environment;
|
|
72
|
+
keyword: string;
|
|
73
|
+
niceName?: string;
|
|
74
|
+
locale: string;
|
|
75
|
+
last_checks?: LastChecks;
|
|
76
|
+
_lastDevice?: string;
|
|
77
|
+
lastDeviceKind?: Device;
|
|
78
|
+
next_check?: Date;
|
|
79
|
+
needsCheck?: boolean;
|
|
80
|
+
needsManualIndustrySelection?: boolean;
|
|
81
|
+
active?: boolean;
|
|
82
|
+
isQuestion?: boolean;
|
|
83
|
+
isMisspelling?: boolean;
|
|
84
|
+
isMisspellingOf?: string;
|
|
85
|
+
correctSpelling?: string;
|
|
86
|
+
keywordPlanner?: boolean;
|
|
87
|
+
hasAds?: boolean;
|
|
88
|
+
hasAdsOnMobile?: boolean;
|
|
89
|
+
hasAdsOnTablet?: boolean;
|
|
90
|
+
hasAdsOnDesktop?: boolean;
|
|
91
|
+
hasPLA?: boolean;
|
|
92
|
+
hasPLAOnMobile?: boolean;
|
|
93
|
+
hasPLAOnTablet?: boolean;
|
|
94
|
+
hasPLAOnDesktop?: boolean;
|
|
95
|
+
hasSEA?: boolean;
|
|
96
|
+
hasSEAOnMobile?: boolean;
|
|
97
|
+
hasSEAOnTablet?: boolean;
|
|
98
|
+
hasSEAOnDesktop?: boolean;
|
|
99
|
+
hasFlights?: boolean;
|
|
100
|
+
hasFlightsOnMobile?: boolean;
|
|
101
|
+
hasFlightsOnTablet?: boolean;
|
|
102
|
+
hasFlightsOnDesktop?: boolean;
|
|
103
|
+
hasBooking?: boolean;
|
|
104
|
+
hasBookingOnMobile?: boolean;
|
|
105
|
+
hasBookingOnTablet?: boolean;
|
|
106
|
+
hasBookingOnDesktop?: boolean;
|
|
107
|
+
hasKnowledgeGraph?: boolean;
|
|
108
|
+
hasKnowledgeGraphsOnMobile?: boolean;
|
|
109
|
+
hasKnowledgeGraphsOnTablet?: boolean;
|
|
110
|
+
hasKnowledgeGraphOnDesktop?: boolean;
|
|
111
|
+
hasBooks?: boolean;
|
|
112
|
+
hasVideos?: boolean;
|
|
113
|
+
hasCosts?: boolean;
|
|
114
|
+
hasTrends?: boolean;
|
|
115
|
+
avgGrp?: number;
|
|
116
|
+
avgCpc?: number;
|
|
117
|
+
avgCpcGoogle?: number;
|
|
118
|
+
avgCpcIndustry?: number;
|
|
119
|
+
avgCpd?: number;
|
|
120
|
+
avgCpdIndustry?: number;
|
|
121
|
+
avgCost?: number;
|
|
122
|
+
avgCostIndustry?: number;
|
|
123
|
+
avgCtr?: number;
|
|
124
|
+
avgCtrIndustry?: number;
|
|
125
|
+
avgImpressions?: number;
|
|
126
|
+
avgImpressionsIndustry?: number;
|
|
127
|
+
breakPointMin?: number;
|
|
128
|
+
breakPointMax?: number;
|
|
129
|
+
breakPointAvg?: number;
|
|
130
|
+
costs?: Cost[];
|
|
131
|
+
domainAssumptions?: any[];
|
|
132
|
+
domainProves?: any[];
|
|
133
|
+
interest?: number;
|
|
134
|
+
competition?: string;
|
|
135
|
+
competitionIndex?: number;
|
|
136
|
+
participants?: number;
|
|
137
|
+
competitiveness?: number;
|
|
138
|
+
avgMonthlySearches?: number;
|
|
139
|
+
lowTopOfPageBidMicros?: number;
|
|
140
|
+
highTopOfPageBidMicros?: number;
|
|
141
|
+
annotations?: Annotation[];
|
|
142
|
+
monthlySearches?: MonthlySearch[];
|
|
143
|
+
type?: string;
|
|
144
|
+
kind?: string;
|
|
145
|
+
origin?: string;
|
|
146
|
+
industry?: ObjectId;
|
|
147
|
+
subIndustry?: ObjectId;
|
|
148
|
+
related?: Related[];
|
|
149
|
+
synonyms?: Related[];
|
|
150
|
+
questions?: Question[];
|
|
151
|
+
prepositions?: Preposition[];
|
|
152
|
+
comparisons?: Comparison[];
|
|
153
|
+
alphabeticals?: Alphabetical[];
|
|
154
|
+
translations?: Translation[];
|
|
155
|
+
serps?: string[];
|
|
156
|
+
IABCategories?: IABCategory[];
|
|
157
|
+
mainCategory?: string;
|
|
158
|
+
mainCategoryLabel?: string;
|
|
159
|
+
subCategory?: string;
|
|
160
|
+
subCategoryLabel?: string;
|
|
161
|
+
}
|
|
162
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
var Environment;
|
|
4
|
+
(function (Environment) {
|
|
5
|
+
Environment["production"] = "production";
|
|
6
|
+
Environment["lab"] = "lab";
|
|
7
|
+
Environment["all"] = "all";
|
|
8
|
+
})(Environment || (Environment = {}));
|
|
9
|
+
var Device;
|
|
10
|
+
(function (Device) {
|
|
11
|
+
Device["mobile"] = "mobile";
|
|
12
|
+
Device["desktop"] = "desktop";
|
|
13
|
+
})(Device || (Device = {}));
|
package/interfaces/index.d.ts
CHANGED
|
@@ -71,6 +71,7 @@ export * from "./IaYOUneInvite";
|
|
|
71
71
|
export * from "./IaYOUneJobOffer";
|
|
72
72
|
export * from "./IaYOUneJobTitle";
|
|
73
73
|
export * from "./IaYOUneKeyword";
|
|
74
|
+
export * from "./IaYOUneKeywordKPI";
|
|
74
75
|
export * from "./IaYOUneKeywordPreparation";
|
|
75
76
|
export * from "./IaYOUneLicence";
|
|
76
77
|
export * from "./IaYOUneLocation";
|
package/interfaces/index.js
CHANGED
|
@@ -87,6 +87,7 @@ __exportStar(require("./IaYOUneInvite"), exports);
|
|
|
87
87
|
__exportStar(require("./IaYOUneJobOffer"), exports);
|
|
88
88
|
__exportStar(require("./IaYOUneJobTitle"), exports);
|
|
89
89
|
__exportStar(require("./IaYOUneKeyword"), exports);
|
|
90
|
+
__exportStar(require("./IaYOUneKeywordKPI"), exports);
|
|
90
91
|
__exportStar(require("./IaYOUneKeywordPreparation"), exports);
|
|
91
92
|
__exportStar(require("./IaYOUneLicence"), exports);
|
|
92
93
|
__exportStar(require("./IaYOUneLocation"), exports);
|