@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.cjs
CHANGED
|
@@ -2429,6 +2429,7 @@ var workoutSplitQueryDtoSchema = import_v431.z.object({
|
|
|
2429
2429
|
orderIndex: workoutSplitDbSchema.shape.orderIndex,
|
|
2430
2430
|
createdAt: serializedDateSchema,
|
|
2431
2431
|
muscleGroup: import_v431.z.string().nullable(),
|
|
2432
|
+
estimatedDurationMinutes: import_v431.z.number().nullable(),
|
|
2432
2433
|
isActive: workoutSplitDbSchema.shape.isActive,
|
|
2433
2434
|
exercises: import_v431.z.array(exerciseInPlanQueryDtoSchema)
|
|
2434
2435
|
});
|
|
@@ -2595,9 +2596,10 @@ var exerciseTrackingStatsQueryDtoSchema = import_v433.z.object({
|
|
|
2595
2596
|
}))
|
|
2596
2597
|
});
|
|
2597
2598
|
var exerciseTrackingMapsQueryDtoSchema = import_v433.z.object({
|
|
2598
|
-
byDate: import_v433.z.record(import_v433.z.string(), import_v433.z.
|
|
2599
|
-
|
|
2600
|
-
|
|
2599
|
+
byDate: import_v433.z.record(import_v433.z.string(), import_v433.z.object({
|
|
2600
|
+
durationMins: import_v433.z.number(),
|
|
2601
|
+
exerciseTracked: import_v433.z.array(groupedTrackingItemQueryDtoSchema)
|
|
2602
|
+
}))
|
|
2601
2603
|
});
|
|
2602
2604
|
var exerciseTrackingAndStatsQueryDtoSchema = import_v433.z.object({
|
|
2603
2605
|
trackingStats: exerciseTrackingStatsQueryDtoSchema,
|