@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.cjs +5 -3
- package/dist/index.d.cts +180 -486
- package/dist/index.d.ts +180 -486
- package/dist/index.js +5 -3
- package/package.json +1 -1
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.
|
|
2393
|
-
|
|
2394
|
-
|
|
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,
|