@ord-api/ord-api-types 1.0.28 → 1.0.30

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.ts +7 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ord-api/ord-api-types",
3
- "version": "1.0.28",
3
+ "version": "1.0.30",
4
4
  "description": "TypeScript types for ORD API - Auto-generated from OpenAPI specification",
5
5
  "main": "types.ts",
6
6
  "types": "types.ts",
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
- example: string;
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" | "REGISTER";
1753
+ errorType: "GRAMMAR" | "VOCABULARY" | "SPELLING" | "PUNCTUATION";
1752
1754
  explanation: string;
1753
1755
  correctForm: string;
1754
1756
  };
@@ -1761,7 +1763,7 @@ export interface components {
1761
1763
  ConversationMessageSuggestion: {
1762
1764
  original: string;
1763
1765
  /** @enum {string} */
1764
- suggestionType: "IMPROVEMENT" | "ENRICHMENT" | "CORRECTION";
1766
+ suggestionType: "VOCABULARY" | "STRUCTURE";
1765
1767
  alternatives: string[];
1766
1768
  explanation: string;
1767
1769
  };
@@ -2087,11 +2089,11 @@ export interface components {
2087
2089
  /** @enum {string} */
2088
2090
  ConversationMessageMistakeSeverity: "MINOR" | "MODERATE" | "CRITICAL";
2089
2091
  /** @enum {string} */
2090
- ConversationMessageSuggestionType: "IMPROVEMENT" | "ENRICHMENT" | "CORRECTION";
2092
+ ConversationMessageSuggestionType: "VOCABULARY" | "STRUCTURE";
2091
2093
  /** @enum {string} */
2092
2094
  ConversationMessageStrengthType: "GRAMMAR" | "VOCABULARY" | "FLUENCY" | "PRAGMATICS" | "COMMUNICATION";
2093
2095
  /** @enum {string} */
2094
- ConversationMessageErrorType: "GRAMMAR" | "VOCABULARY" | "SPELLING" | "PUNCTUATION" | "REGISTER";
2096
+ ConversationMessageErrorType: "GRAMMAR" | "VOCABULARY" | "SPELLING" | "PUNCTUATION";
2095
2097
  /** @enum {string} */
2096
2098
  ConversationTone: "FRIENDLY" | "FORMAL" | "HUMOROUS" | "NEUTRAL" | "ENCOURAGING" | "CHALLENGING";
2097
2099
  /** @enum {string} */