@strong-together/shared 2.9.0 → 2.10.0

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.js CHANGED
@@ -2223,6 +2223,7 @@ var workoutSplitQueryDtoSchema = z31.object({
2223
2223
  orderIndex: workoutSplitDbSchema.shape.orderIndex,
2224
2224
  createdAt: serializedDateSchema,
2225
2225
  muscleGroup: z31.string().nullable(),
2226
+ estimatedDurationMinutes: z31.number().nullable(),
2226
2227
  isActive: workoutSplitDbSchema.shape.isActive,
2227
2228
  exercises: z31.array(exerciseInPlanQueryDtoSchema)
2228
2229
  });
@@ -2389,9 +2390,10 @@ var exerciseTrackingStatsQueryDtoSchema = z33.object({
2389
2390
  }))
2390
2391
  });
2391
2392
  var exerciseTrackingMapsQueryDtoSchema = z33.object({
2392
- byDate: z33.record(z33.string(), z33.array(groupedTrackingItemQueryDtoSchema)),
2393
- byExerciseToSplitId: z33.record(z33.string(), z33.array(groupedTrackingItemQueryDtoSchema)),
2394
- bySplitName: z33.record(z33.string(), z33.array(groupedTrackingItemQueryDtoSchema))
2393
+ byDate: z33.record(z33.string(), z33.object({
2394
+ durationMins: z33.number(),
2395
+ exerciseTracked: z33.array(groupedTrackingItemQueryDtoSchema)
2396
+ }))
2395
2397
  });
2396
2398
  var exerciseTrackingAndStatsQueryDtoSchema = z33.object({
2397
2399
  trackingStats: exerciseTrackingStatsQueryDtoSchema,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@strong-together/shared",
3
- "version": "2.9.0",
3
+ "version": "2.10.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",