@rimori/client 2.3.0-next.3 → 2.3.0-next.4

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.
@@ -11,6 +11,7 @@ export interface CreateExerciseParams {
11
11
  name: string;
12
12
  description: string;
13
13
  estimated_duration: number;
14
+ topics: string[];
14
15
  }
15
16
  export interface Exercise {
16
17
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rimori/client",
3
- "version": "2.3.0-next.3",
3
+ "version": "2.3.0-next.4",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "repository": {
@@ -11,6 +11,7 @@ export interface CreateExerciseParams {
11
11
  name: string;
12
12
  description: string;
13
13
  estimated_duration: number;
14
+ topics: string[]; // Required: Array of topics in format "skillCategory.accomplishmentKeyword" for matching accomplishments
14
15
  }
15
16
 
16
17
  export interface Exercise {