@tolinax/ayoune-interfaces 2024.13.0 → 2024.15.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.
|
@@ -44,6 +44,10 @@ interface Related {
|
|
|
44
44
|
interface Question {
|
|
45
45
|
_keyword?: ObjectId;
|
|
46
46
|
}
|
|
47
|
+
interface QuestionWord {
|
|
48
|
+
modifier?: string;
|
|
49
|
+
_keyword?: ObjectId;
|
|
50
|
+
}
|
|
47
51
|
interface Preposition {
|
|
48
52
|
modifier?: string;
|
|
49
53
|
_keyword?: ObjectId;
|
|
@@ -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[];
|