@tolinax/ayoune-interfaces 2024.12.0 → 2024.14.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.
|
@@ -39,26 +39,30 @@ interface MonthlySearch {
|
|
|
39
39
|
monthly_searches?: number;
|
|
40
40
|
}
|
|
41
41
|
interface Related {
|
|
42
|
-
_keyword?:
|
|
42
|
+
_keyword?: ObjectId;
|
|
43
43
|
}
|
|
44
44
|
interface Question {
|
|
45
|
-
_keyword?:
|
|
45
|
+
_keyword?: ObjectId;
|
|
46
|
+
}
|
|
47
|
+
interface QuestionWord {
|
|
48
|
+
modifier?: string;
|
|
49
|
+
_keyword?: ObjectId;
|
|
46
50
|
}
|
|
47
51
|
interface Preposition {
|
|
48
52
|
modifier?: string;
|
|
49
|
-
_keyword?:
|
|
53
|
+
_keyword?: ObjectId;
|
|
50
54
|
}
|
|
51
55
|
interface Comparison {
|
|
52
56
|
modifier?: string;
|
|
53
|
-
_keyword?:
|
|
57
|
+
_keyword?: ObjectId;
|
|
54
58
|
}
|
|
55
59
|
interface Alphabetical {
|
|
56
60
|
modifier?: string;
|
|
57
|
-
_keyword?:
|
|
61
|
+
_keyword?: ObjectId;
|
|
58
62
|
}
|
|
59
63
|
interface Translation {
|
|
60
64
|
locale?: string;
|
|
61
|
-
_keyword?:
|
|
65
|
+
_keyword?: ObjectId;
|
|
62
66
|
}
|
|
63
67
|
interface IABCategory {
|
|
64
68
|
_id?: string;
|
|
@@ -148,6 +152,7 @@ export interface IaYOUneKeyword extends IDefaultFields {
|
|
|
148
152
|
related?: Related[];
|
|
149
153
|
synonyms?: Related[];
|
|
150
154
|
questions?: Question[];
|
|
155
|
+
questionWords?: QuestionWord[];
|
|
151
156
|
prepositions?: Preposition[];
|
|
152
157
|
comparisons?: Comparison[];
|
|
153
158
|
alphabeticals?: Alphabetical[];
|