@openlifelog/sdk 1.0.5 → 1.0.6

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/dist/index.d.mts CHANGED
@@ -371,6 +371,7 @@ interface SessionExerciseDetail {
371
371
  rpe?: number;
372
372
  exerciseName: string;
373
373
  exerciseDescription?: string;
374
+ exerciseCapabilities?: ExerciseCapabilities;
374
375
  }
375
376
  interface WorkoutSession {
376
377
  id: UUID;
package/dist/index.d.ts CHANGED
@@ -371,6 +371,7 @@ interface SessionExerciseDetail {
371
371
  rpe?: number;
372
372
  exerciseName: string;
373
373
  exerciseDescription?: string;
374
+ exerciseCapabilities?: ExerciseCapabilities;
374
375
  }
375
376
  interface WorkoutSession {
376
377
  id: UUID;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openlifelog/sdk",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "TypeScript SDK for the OpenLifeLog API - A comprehensive fitness and nutrition tracking platform",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
package/types/session.ts CHANGED
@@ -8,6 +8,7 @@ import type {
8
8
  DateString,
9
9
  } from './common';
10
10
  import type { SetData } from './workout';
11
+ import type { ExerciseCapabilities } from './exercise';
11
12
 
12
13
  /**
13
14
  * Workout session types (performance tracking)
@@ -37,6 +38,7 @@ export interface SessionExerciseDetail {
37
38
  rpe?: number; // 1-10
38
39
  exerciseName: string;
39
40
  exerciseDescription?: string;
41
+ exerciseCapabilities?: ExerciseCapabilities;
40
42
  }
41
43
 
42
44
  /**