incremnt 0.1.9 → 0.1.10

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "incremnt",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "Command-line tool for querying your incremnt strength training data",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/src/mcp.js CHANGED
File without changes
package/src/queries.js CHANGED
@@ -207,6 +207,7 @@ export function sessionDetails(snapshot, sessionId) {
207
207
  summary.exercises = (session.exercises ?? []).map((exercise) => ({
208
208
  name: exercise.name,
209
209
  muscleGroup: exercise.muscleGroup ?? null,
210
+ swappedFrom: exercise.swappedFrom ?? null,
210
211
  sets: (exercise.sets ?? []).filter((s) => s.isComplete).map((s) => ({
211
212
  weight: s.weight ?? null,
212
213
  reps: s.reps ?? null,
@@ -235,6 +236,7 @@ export function plannedVsActual(snapshot, sessionId) {
235
236
  return {
236
237
  exerciseName: exercise.name,
237
238
  muscleGroup: exercise.muscleGroup,
239
+ swappedFrom: exercise.swappedFrom ?? null,
238
240
  plannedSets: planned?.targetSets ?? [],
239
241
  actualSets: (exercise.sets ?? []).filter((set) => set.isComplete),
240
242
  plannedRir: planned?.rir ?? null,