@dgpholdings/greatoak-shared 1.2.63 → 1.2.64

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.
@@ -24,14 +24,18 @@ export type TCompareResponse = {
24
24
  reviewNotes: string[];
25
25
  overallQuality: "excellent" | "good" | "fair" | "needs-improvement";
26
26
  };
27
+ export type TMultilingualStrings = {
28
+ en: string[];
29
+ de: string[];
30
+ fr: string[];
31
+ es: string[];
32
+ ru: string[];
33
+ };
27
34
  export type TTipsResponse = {
28
35
  exerciseId: string;
29
36
  exerciseName: string;
30
- instructions: string[];
31
- tips: string[];
32
- commonMistakes: string[];
33
- safetyNotes: string[];
34
- beginnerAdvice: string;
37
+ instructions: TMultilingualStrings;
38
+ tips: TMultilingualStrings;
35
39
  };
36
40
  export type TApiAdminAiAssistantRes = {
37
41
  case: "compare";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dgpholdings/greatoak-shared",
3
- "version": "1.2.63",
3
+ "version": "1.2.64",
4
4
  "description": "Shared TypeScript types and utilities for @dgpholdings projects",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",