@ord-api/ord-api-types 1.0.29 → 1.0.31
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.
- package/package.json +1 -1
- package/types.ts +5 -3
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -1685,17 +1685,19 @@ export interface components {
|
|
|
1685
1685
|
phrase: string;
|
|
1686
1686
|
explanation: string;
|
|
1687
1687
|
grammarPoint: string;
|
|
1688
|
+
exampleSentences: string[];
|
|
1688
1689
|
};
|
|
1689
1690
|
AnnotatedIdiomTip: {
|
|
1690
1691
|
phrase: string;
|
|
1691
1692
|
meaning: string;
|
|
1692
|
-
|
|
1693
|
+
exampleSentences: string[];
|
|
1693
1694
|
};
|
|
1694
1695
|
AnnotatedVocabularyTip: {
|
|
1695
1696
|
word: string;
|
|
1696
1697
|
definition: string;
|
|
1697
1698
|
usageNote: string;
|
|
1698
1699
|
proficiencyLevel: string;
|
|
1700
|
+
exampleSentences: string[];
|
|
1699
1701
|
};
|
|
1700
1702
|
ConversationAIMessageLearningTipsDTO: {
|
|
1701
1703
|
/** Format: uuid */
|
|
@@ -1748,7 +1750,7 @@ export interface components {
|
|
|
1748
1750
|
/** @enum {string} */
|
|
1749
1751
|
severity: "MINOR" | "MODERATE" | "CRITICAL";
|
|
1750
1752
|
/** @enum {string} */
|
|
1751
|
-
errorType: "GRAMMAR" | "VOCABULARY" | "SPELLING" | "PUNCTUATION"
|
|
1753
|
+
errorType: "GRAMMAR" | "VOCABULARY" | "SPELLING" | "PUNCTUATION";
|
|
1752
1754
|
explanation: string;
|
|
1753
1755
|
correctForm: string;
|
|
1754
1756
|
};
|
|
@@ -2091,7 +2093,7 @@ export interface components {
|
|
|
2091
2093
|
/** @enum {string} */
|
|
2092
2094
|
ConversationMessageStrengthType: "GRAMMAR" | "VOCABULARY" | "FLUENCY" | "PRAGMATICS" | "COMMUNICATION";
|
|
2093
2095
|
/** @enum {string} */
|
|
2094
|
-
ConversationMessageErrorType: "GRAMMAR" | "VOCABULARY" | "SPELLING" | "PUNCTUATION"
|
|
2096
|
+
ConversationMessageErrorType: "GRAMMAR" | "VOCABULARY" | "SPELLING" | "PUNCTUATION";
|
|
2095
2097
|
/** @enum {string} */
|
|
2096
2098
|
ConversationTone: "FRIENDLY" | "FORMAL" | "HUMOROUS" | "NEUTRAL" | "ENCOURAGING" | "CHALLENGING";
|
|
2097
2099
|
/** @enum {string} */
|