@dlwiest/ts-tonal-client 0.3.0 → 0.3.1

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.cjs CHANGED
@@ -301,7 +301,7 @@ class WorkoutService {
301
301
  }
302
302
  return this.httpClient.request('/user-workouts/estimate', {
303
303
  method: 'POST',
304
- body: JSON.stringify({ sets }),
304
+ body: JSON.stringify(sets),
305
305
  });
306
306
  }
307
307
  async createWorkout(workoutData) {
package/dist/index.esm.js CHANGED
@@ -297,7 +297,7 @@ class WorkoutService {
297
297
  }
298
298
  return this.httpClient.request('/user-workouts/estimate', {
299
299
  method: 'POST',
300
- body: JSON.stringify({ sets }),
300
+ body: JSON.stringify(sets),
301
301
  });
302
302
  }
303
303
  async createWorkout(workoutData) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dlwiest/ts-tonal-client",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "TypeScript client for Tonal API",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.esm.js",