@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.d.ts
CHANGED
|
@@ -5122,6 +5122,7 @@ declare const getWholeUserWorkoutPlanResponseSchema: z.ZodObject<{
|
|
|
5122
5122
|
orderIndex: z.ZodInt;
|
|
5123
5123
|
createdAt: z.ZodString;
|
|
5124
5124
|
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
5125
|
+
estimatedDurationMinutes: z.ZodNullable<z.ZodNumber>;
|
|
5125
5126
|
isActive: z.ZodBoolean;
|
|
5126
5127
|
exercises: z.ZodArray<z.ZodObject<{
|
|
5127
5128
|
exerciseToSplitId: z.ZodInt;
|
|
@@ -5160,6 +5161,7 @@ declare const getWholeUserWorkoutPlanContract: {
|
|
|
5160
5161
|
orderIndex: z.ZodInt;
|
|
5161
5162
|
createdAt: z.ZodString;
|
|
5162
5163
|
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
5164
|
+
estimatedDurationMinutes: z.ZodNullable<z.ZodNumber>;
|
|
5163
5165
|
isActive: z.ZodBoolean;
|
|
5164
5166
|
exercises: z.ZodArray<z.ZodObject<{
|
|
5165
5167
|
exerciseToSplitId: z.ZodInt;
|
|
@@ -5210,6 +5212,7 @@ declare const addWorkoutResponseSchema: z.ZodObject<{
|
|
|
5210
5212
|
orderIndex: z.ZodInt;
|
|
5211
5213
|
createdAt: z.ZodString;
|
|
5212
5214
|
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
5215
|
+
estimatedDurationMinutes: z.ZodNullable<z.ZodNumber>;
|
|
5213
5216
|
isActive: z.ZodBoolean;
|
|
5214
5217
|
exercises: z.ZodArray<z.ZodObject<{
|
|
5215
5218
|
exerciseToSplitId: z.ZodInt;
|
|
@@ -5260,6 +5263,7 @@ declare const addWorkoutContract: {
|
|
|
5260
5263
|
orderIndex: z.ZodInt;
|
|
5261
5264
|
createdAt: z.ZodString;
|
|
5262
5265
|
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
5266
|
+
estimatedDurationMinutes: z.ZodNullable<z.ZodNumber>;
|
|
5263
5267
|
isActive: z.ZodBoolean;
|
|
5264
5268
|
exercises: z.ZodArray<z.ZodObject<{
|
|
5265
5269
|
exerciseToSplitId: z.ZodInt;
|
|
@@ -5332,6 +5336,7 @@ declare const workoutSplitQueryDtoSchema: z.ZodObject<{
|
|
|
5332
5336
|
orderIndex: z.ZodInt;
|
|
5333
5337
|
createdAt: z.ZodString;
|
|
5334
5338
|
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
5339
|
+
estimatedDurationMinutes: z.ZodNullable<z.ZodNumber>;
|
|
5335
5340
|
isActive: z.ZodBoolean;
|
|
5336
5341
|
exercises: z.ZodArray<z.ZodObject<{
|
|
5337
5342
|
exerciseToSplitId: z.ZodInt;
|
|
@@ -5362,6 +5367,7 @@ declare const wholeUserWorkoutPlanQueryDtoSchema: z.ZodObject<{
|
|
|
5362
5367
|
orderIndex: z.ZodInt;
|
|
5363
5368
|
createdAt: z.ZodString;
|
|
5364
5369
|
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
5370
|
+
estimatedDurationMinutes: z.ZodNullable<z.ZodNumber>;
|
|
5365
5371
|
isActive: z.ZodBoolean;
|
|
5366
5372
|
exercises: z.ZodArray<z.ZodObject<{
|
|
5367
5373
|
exerciseToSplitId: z.ZodInt;
|
|
@@ -5406,99 +5412,9 @@ declare const getExerciseTrackingRequestSchema: z.ZodObject<{
|
|
|
5406
5412
|
}, z.core.$strip>;
|
|
5407
5413
|
}, z.core.$strip>;
|
|
5408
5414
|
declare const getExerciseTrackingResponseSchema: z.ZodObject<{
|
|
5409
|
-
byDate: z.ZodRecord<z.ZodString, z.
|
|
5410
|
-
|
|
5411
|
-
|
|
5412
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
5413
|
-
setIndex: z.ZodInt;
|
|
5414
|
-
weight: z.ZodNumber;
|
|
5415
|
-
reps: z.ZodInt;
|
|
5416
|
-
}, z.core.$strip>>;
|
|
5417
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
5418
|
-
exerciseAssignment: z.ZodObject<{
|
|
5419
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
5420
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
5421
|
-
exerciseId: z.ZodInt;
|
|
5422
|
-
workoutSplitId: z.ZodInt;
|
|
5423
|
-
workoutSplitName: z.ZodString;
|
|
5424
|
-
exerciseName: z.ZodString;
|
|
5425
|
-
targetMuscle: z.ZodString;
|
|
5426
|
-
specificTargetMuscle: z.ZodString;
|
|
5427
|
-
}, z.core.$strip>;
|
|
5428
|
-
}, z.core.$strip>;
|
|
5429
|
-
}, z.core.$strip>>>;
|
|
5430
|
-
byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
5431
|
-
exerciseTracking: z.ZodObject<{
|
|
5432
|
-
exerciseTrackingId: z.ZodInt;
|
|
5433
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
5434
|
-
setIndex: z.ZodInt;
|
|
5435
|
-
weight: z.ZodNumber;
|
|
5436
|
-
reps: z.ZodInt;
|
|
5437
|
-
}, z.core.$strip>>;
|
|
5438
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
5439
|
-
exerciseAssignment: z.ZodObject<{
|
|
5440
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
5441
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
5442
|
-
exerciseId: z.ZodInt;
|
|
5443
|
-
workoutSplitId: z.ZodInt;
|
|
5444
|
-
workoutSplitName: z.ZodString;
|
|
5445
|
-
exerciseName: z.ZodString;
|
|
5446
|
-
targetMuscle: z.ZodString;
|
|
5447
|
-
specificTargetMuscle: z.ZodString;
|
|
5448
|
-
}, z.core.$strip>;
|
|
5449
|
-
}, z.core.$strip>;
|
|
5450
|
-
}, z.core.$strip>>>;
|
|
5451
|
-
bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
5452
|
-
exerciseTracking: z.ZodObject<{
|
|
5453
|
-
exerciseTrackingId: z.ZodInt;
|
|
5454
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
5455
|
-
setIndex: z.ZodInt;
|
|
5456
|
-
weight: z.ZodNumber;
|
|
5457
|
-
reps: z.ZodInt;
|
|
5458
|
-
}, z.core.$strip>>;
|
|
5459
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
5460
|
-
exerciseAssignment: z.ZodObject<{
|
|
5461
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
5462
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
5463
|
-
exerciseId: z.ZodInt;
|
|
5464
|
-
workoutSplitId: z.ZodInt;
|
|
5465
|
-
workoutSplitName: z.ZodString;
|
|
5466
|
-
exerciseName: z.ZodString;
|
|
5467
|
-
targetMuscle: z.ZodString;
|
|
5468
|
-
specificTargetMuscle: z.ZodString;
|
|
5469
|
-
}, z.core.$strip>;
|
|
5470
|
-
}, z.core.$strip>;
|
|
5471
|
-
}, z.core.$strip>>>;
|
|
5472
|
-
}, z.core.$strip>;
|
|
5473
|
-
declare const getExerciseTrackingContract: {
|
|
5474
|
-
request: z.ZodObject<{
|
|
5475
|
-
query: z.ZodObject<{
|
|
5476
|
-
tz: z.ZodOptional<z.ZodString>;
|
|
5477
|
-
}, z.core.$strip>;
|
|
5478
|
-
}, z.core.$strip>;
|
|
5479
|
-
response: z.ZodObject<{
|
|
5480
|
-
byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
5481
|
-
exerciseTracking: z.ZodObject<{
|
|
5482
|
-
exerciseTrackingId: z.ZodInt;
|
|
5483
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
5484
|
-
setIndex: z.ZodInt;
|
|
5485
|
-
weight: z.ZodNumber;
|
|
5486
|
-
reps: z.ZodInt;
|
|
5487
|
-
}, z.core.$strip>>;
|
|
5488
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
5489
|
-
exerciseAssignment: z.ZodObject<{
|
|
5490
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
5491
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
5492
|
-
exerciseId: z.ZodInt;
|
|
5493
|
-
workoutSplitId: z.ZodInt;
|
|
5494
|
-
workoutSplitName: z.ZodString;
|
|
5495
|
-
exerciseName: z.ZodString;
|
|
5496
|
-
targetMuscle: z.ZodString;
|
|
5497
|
-
specificTargetMuscle: z.ZodString;
|
|
5498
|
-
}, z.core.$strip>;
|
|
5499
|
-
}, z.core.$strip>;
|
|
5500
|
-
}, z.core.$strip>>>;
|
|
5501
|
-
byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
5415
|
+
byDate: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5416
|
+
durationMins: z.ZodNumber;
|
|
5417
|
+
exerciseTracked: z.ZodArray<z.ZodObject<{
|
|
5502
5418
|
exerciseTracking: z.ZodObject<{
|
|
5503
5419
|
exerciseTrackingId: z.ZodInt;
|
|
5504
5420
|
sets: z.ZodArray<z.ZodObject<{
|
|
@@ -5518,28 +5434,40 @@ declare const getExerciseTrackingContract: {
|
|
|
5518
5434
|
specificTargetMuscle: z.ZodString;
|
|
5519
5435
|
}, z.core.$strip>;
|
|
5520
5436
|
}, z.core.$strip>;
|
|
5521
|
-
}, z.core.$strip
|
|
5522
|
-
|
|
5523
|
-
|
|
5524
|
-
|
|
5525
|
-
|
|
5526
|
-
|
|
5527
|
-
|
|
5528
|
-
|
|
5529
|
-
|
|
5530
|
-
|
|
5531
|
-
|
|
5532
|
-
|
|
5533
|
-
|
|
5534
|
-
|
|
5535
|
-
|
|
5536
|
-
|
|
5537
|
-
|
|
5538
|
-
|
|
5539
|
-
|
|
5437
|
+
}, z.core.$strip>>;
|
|
5438
|
+
}, z.core.$strip>>;
|
|
5439
|
+
}, z.core.$strip>;
|
|
5440
|
+
declare const getExerciseTrackingContract: {
|
|
5441
|
+
request: z.ZodObject<{
|
|
5442
|
+
query: z.ZodObject<{
|
|
5443
|
+
tz: z.ZodOptional<z.ZodString>;
|
|
5444
|
+
}, z.core.$strip>;
|
|
5445
|
+
}, z.core.$strip>;
|
|
5446
|
+
response: z.ZodObject<{
|
|
5447
|
+
byDate: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5448
|
+
durationMins: z.ZodNumber;
|
|
5449
|
+
exerciseTracked: z.ZodArray<z.ZodObject<{
|
|
5450
|
+
exerciseTracking: z.ZodObject<{
|
|
5451
|
+
exerciseTrackingId: z.ZodInt;
|
|
5452
|
+
sets: z.ZodArray<z.ZodObject<{
|
|
5453
|
+
setIndex: z.ZodInt;
|
|
5454
|
+
weight: z.ZodNumber;
|
|
5455
|
+
reps: z.ZodInt;
|
|
5456
|
+
}, z.core.$strip>>;
|
|
5457
|
+
notes: z.ZodNullable<z.ZodString>;
|
|
5458
|
+
exerciseAssignment: z.ZodObject<{
|
|
5459
|
+
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
5460
|
+
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
5461
|
+
exerciseId: z.ZodInt;
|
|
5462
|
+
workoutSplitId: z.ZodInt;
|
|
5463
|
+
workoutSplitName: z.ZodString;
|
|
5464
|
+
exerciseName: z.ZodString;
|
|
5465
|
+
targetMuscle: z.ZodString;
|
|
5466
|
+
specificTargetMuscle: z.ZodString;
|
|
5467
|
+
}, z.core.$strip>;
|
|
5540
5468
|
}, z.core.$strip>;
|
|
5541
|
-
}, z.core.$strip
|
|
5542
|
-
}, z.core.$strip
|
|
5469
|
+
}, z.core.$strip>>;
|
|
5470
|
+
}, z.core.$strip>>;
|
|
5543
5471
|
}, z.core.$strip>;
|
|
5544
5472
|
};
|
|
5545
5473
|
declare const getExerciseTrackingStatsResponseSchema: z.ZodObject<{
|
|
@@ -5659,69 +5587,30 @@ declare const finishUserWorkoutResponseSchema: z.ZodObject<{
|
|
|
5659
5587
|
}, z.core.$strip>>;
|
|
5660
5588
|
}, z.core.$strip>;
|
|
5661
5589
|
trackingMaps: z.ZodObject<{
|
|
5662
|
-
byDate: z.ZodRecord<z.ZodString, z.
|
|
5663
|
-
|
|
5664
|
-
|
|
5665
|
-
|
|
5666
|
-
|
|
5667
|
-
|
|
5668
|
-
|
|
5669
|
-
|
|
5670
|
-
|
|
5671
|
-
|
|
5672
|
-
|
|
5673
|
-
|
|
5674
|
-
|
|
5675
|
-
|
|
5676
|
-
|
|
5677
|
-
|
|
5678
|
-
|
|
5679
|
-
|
|
5680
|
-
|
|
5681
|
-
|
|
5682
|
-
|
|
5683
|
-
byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
5684
|
-
exerciseTracking: z.ZodObject<{
|
|
5685
|
-
exerciseTrackingId: z.ZodInt;
|
|
5686
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
5687
|
-
setIndex: z.ZodInt;
|
|
5688
|
-
weight: z.ZodNumber;
|
|
5689
|
-
reps: z.ZodInt;
|
|
5690
|
-
}, z.core.$strip>>;
|
|
5691
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
5692
|
-
exerciseAssignment: z.ZodObject<{
|
|
5693
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
5694
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
5695
|
-
exerciseId: z.ZodInt;
|
|
5696
|
-
workoutSplitId: z.ZodInt;
|
|
5697
|
-
workoutSplitName: z.ZodString;
|
|
5698
|
-
exerciseName: z.ZodString;
|
|
5699
|
-
targetMuscle: z.ZodString;
|
|
5700
|
-
specificTargetMuscle: z.ZodString;
|
|
5701
|
-
}, z.core.$strip>;
|
|
5702
|
-
}, z.core.$strip>;
|
|
5703
|
-
}, z.core.$strip>>>;
|
|
5704
|
-
bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
5705
|
-
exerciseTracking: z.ZodObject<{
|
|
5706
|
-
exerciseTrackingId: z.ZodInt;
|
|
5707
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
5708
|
-
setIndex: z.ZodInt;
|
|
5709
|
-
weight: z.ZodNumber;
|
|
5710
|
-
reps: z.ZodInt;
|
|
5711
|
-
}, z.core.$strip>>;
|
|
5712
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
5713
|
-
exerciseAssignment: z.ZodObject<{
|
|
5714
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
5715
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
5716
|
-
exerciseId: z.ZodInt;
|
|
5717
|
-
workoutSplitId: z.ZodInt;
|
|
5718
|
-
workoutSplitName: z.ZodString;
|
|
5719
|
-
exerciseName: z.ZodString;
|
|
5720
|
-
targetMuscle: z.ZodString;
|
|
5721
|
-
specificTargetMuscle: z.ZodString;
|
|
5590
|
+
byDate: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5591
|
+
durationMins: z.ZodNumber;
|
|
5592
|
+
exerciseTracked: z.ZodArray<z.ZodObject<{
|
|
5593
|
+
exerciseTracking: z.ZodObject<{
|
|
5594
|
+
exerciseTrackingId: z.ZodInt;
|
|
5595
|
+
sets: z.ZodArray<z.ZodObject<{
|
|
5596
|
+
setIndex: z.ZodInt;
|
|
5597
|
+
weight: z.ZodNumber;
|
|
5598
|
+
reps: z.ZodInt;
|
|
5599
|
+
}, z.core.$strip>>;
|
|
5600
|
+
notes: z.ZodNullable<z.ZodString>;
|
|
5601
|
+
exerciseAssignment: z.ZodObject<{
|
|
5602
|
+
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
5603
|
+
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
5604
|
+
exerciseId: z.ZodInt;
|
|
5605
|
+
workoutSplitId: z.ZodInt;
|
|
5606
|
+
workoutSplitName: z.ZodString;
|
|
5607
|
+
exerciseName: z.ZodString;
|
|
5608
|
+
targetMuscle: z.ZodString;
|
|
5609
|
+
specificTargetMuscle: z.ZodString;
|
|
5610
|
+
}, z.core.$strip>;
|
|
5722
5611
|
}, z.core.$strip>;
|
|
5723
|
-
}, z.core.$strip
|
|
5724
|
-
}, z.core.$strip
|
|
5612
|
+
}, z.core.$strip>>;
|
|
5613
|
+
}, z.core.$strip>>;
|
|
5725
5614
|
}, z.core.$strip>;
|
|
5726
5615
|
}, z.core.$strip>;
|
|
5727
5616
|
declare const finishUserWorkoutContract: {
|
|
@@ -5775,69 +5664,30 @@ declare const finishUserWorkoutContract: {
|
|
|
5775
5664
|
}, z.core.$strip>>;
|
|
5776
5665
|
}, z.core.$strip>;
|
|
5777
5666
|
trackingMaps: z.ZodObject<{
|
|
5778
|
-
byDate: z.ZodRecord<z.ZodString, z.
|
|
5779
|
-
|
|
5780
|
-
|
|
5781
|
-
|
|
5782
|
-
|
|
5783
|
-
|
|
5784
|
-
|
|
5785
|
-
|
|
5786
|
-
|
|
5787
|
-
|
|
5788
|
-
|
|
5789
|
-
|
|
5790
|
-
|
|
5791
|
-
|
|
5792
|
-
|
|
5793
|
-
|
|
5794
|
-
|
|
5795
|
-
|
|
5796
|
-
|
|
5797
|
-
|
|
5798
|
-
|
|
5799
|
-
byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
5800
|
-
exerciseTracking: z.ZodObject<{
|
|
5801
|
-
exerciseTrackingId: z.ZodInt;
|
|
5802
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
5803
|
-
setIndex: z.ZodInt;
|
|
5804
|
-
weight: z.ZodNumber;
|
|
5805
|
-
reps: z.ZodInt;
|
|
5806
|
-
}, z.core.$strip>>;
|
|
5807
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
5808
|
-
exerciseAssignment: z.ZodObject<{
|
|
5809
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
5810
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
5811
|
-
exerciseId: z.ZodInt;
|
|
5812
|
-
workoutSplitId: z.ZodInt;
|
|
5813
|
-
workoutSplitName: z.ZodString;
|
|
5814
|
-
exerciseName: z.ZodString;
|
|
5815
|
-
targetMuscle: z.ZodString;
|
|
5816
|
-
specificTargetMuscle: z.ZodString;
|
|
5817
|
-
}, z.core.$strip>;
|
|
5818
|
-
}, z.core.$strip>;
|
|
5819
|
-
}, z.core.$strip>>>;
|
|
5820
|
-
bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
5821
|
-
exerciseTracking: z.ZodObject<{
|
|
5822
|
-
exerciseTrackingId: z.ZodInt;
|
|
5823
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
5824
|
-
setIndex: z.ZodInt;
|
|
5825
|
-
weight: z.ZodNumber;
|
|
5826
|
-
reps: z.ZodInt;
|
|
5827
|
-
}, z.core.$strip>>;
|
|
5828
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
5829
|
-
exerciseAssignment: z.ZodObject<{
|
|
5830
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
5831
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
5832
|
-
exerciseId: z.ZodInt;
|
|
5833
|
-
workoutSplitId: z.ZodInt;
|
|
5834
|
-
workoutSplitName: z.ZodString;
|
|
5835
|
-
exerciseName: z.ZodString;
|
|
5836
|
-
targetMuscle: z.ZodString;
|
|
5837
|
-
specificTargetMuscle: z.ZodString;
|
|
5667
|
+
byDate: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5668
|
+
durationMins: z.ZodNumber;
|
|
5669
|
+
exerciseTracked: z.ZodArray<z.ZodObject<{
|
|
5670
|
+
exerciseTracking: z.ZodObject<{
|
|
5671
|
+
exerciseTrackingId: z.ZodInt;
|
|
5672
|
+
sets: z.ZodArray<z.ZodObject<{
|
|
5673
|
+
setIndex: z.ZodInt;
|
|
5674
|
+
weight: z.ZodNumber;
|
|
5675
|
+
reps: z.ZodInt;
|
|
5676
|
+
}, z.core.$strip>>;
|
|
5677
|
+
notes: z.ZodNullable<z.ZodString>;
|
|
5678
|
+
exerciseAssignment: z.ZodObject<{
|
|
5679
|
+
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
5680
|
+
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
5681
|
+
exerciseId: z.ZodInt;
|
|
5682
|
+
workoutSplitId: z.ZodInt;
|
|
5683
|
+
workoutSplitName: z.ZodString;
|
|
5684
|
+
exerciseName: z.ZodString;
|
|
5685
|
+
targetMuscle: z.ZodString;
|
|
5686
|
+
specificTargetMuscle: z.ZodString;
|
|
5687
|
+
}, z.core.$strip>;
|
|
5838
5688
|
}, z.core.$strip>;
|
|
5839
|
-
}, z.core.$strip
|
|
5840
|
-
}, z.core.$strip
|
|
5689
|
+
}, z.core.$strip>>;
|
|
5690
|
+
}, z.core.$strip>>;
|
|
5841
5691
|
}, z.core.$strip>;
|
|
5842
5692
|
}, z.core.$strip>;
|
|
5843
5693
|
};
|
|
@@ -5978,69 +5828,30 @@ declare const exerciseTrackingStatsQueryDtoSchema: z.ZodObject<{
|
|
|
5978
5828
|
}, z.core.$strip>>;
|
|
5979
5829
|
}, z.core.$strip>;
|
|
5980
5830
|
declare const exerciseTrackingMapsQueryDtoSchema: z.ZodObject<{
|
|
5981
|
-
byDate: z.ZodRecord<z.ZodString, z.
|
|
5982
|
-
|
|
5983
|
-
|
|
5984
|
-
|
|
5985
|
-
|
|
5986
|
-
|
|
5987
|
-
|
|
5988
|
-
|
|
5989
|
-
|
|
5990
|
-
|
|
5991
|
-
|
|
5992
|
-
|
|
5993
|
-
|
|
5994
|
-
|
|
5995
|
-
|
|
5996
|
-
|
|
5997
|
-
|
|
5998
|
-
|
|
5999
|
-
|
|
6000
|
-
|
|
6001
|
-
|
|
6002
|
-
byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
6003
|
-
exerciseTracking: z.ZodObject<{
|
|
6004
|
-
exerciseTrackingId: z.ZodInt;
|
|
6005
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
6006
|
-
setIndex: z.ZodInt;
|
|
6007
|
-
weight: z.ZodNumber;
|
|
6008
|
-
reps: z.ZodInt;
|
|
6009
|
-
}, z.core.$strip>>;
|
|
6010
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
6011
|
-
exerciseAssignment: z.ZodObject<{
|
|
6012
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
6013
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
6014
|
-
exerciseId: z.ZodInt;
|
|
6015
|
-
workoutSplitId: z.ZodInt;
|
|
6016
|
-
workoutSplitName: z.ZodString;
|
|
6017
|
-
exerciseName: z.ZodString;
|
|
6018
|
-
targetMuscle: z.ZodString;
|
|
6019
|
-
specificTargetMuscle: z.ZodString;
|
|
6020
|
-
}, z.core.$strip>;
|
|
6021
|
-
}, z.core.$strip>;
|
|
6022
|
-
}, z.core.$strip>>>;
|
|
6023
|
-
bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
6024
|
-
exerciseTracking: z.ZodObject<{
|
|
6025
|
-
exerciseTrackingId: z.ZodInt;
|
|
6026
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
6027
|
-
setIndex: z.ZodInt;
|
|
6028
|
-
weight: z.ZodNumber;
|
|
6029
|
-
reps: z.ZodInt;
|
|
6030
|
-
}, z.core.$strip>>;
|
|
6031
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
6032
|
-
exerciseAssignment: z.ZodObject<{
|
|
6033
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
6034
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
6035
|
-
exerciseId: z.ZodInt;
|
|
6036
|
-
workoutSplitId: z.ZodInt;
|
|
6037
|
-
workoutSplitName: z.ZodString;
|
|
6038
|
-
exerciseName: z.ZodString;
|
|
6039
|
-
targetMuscle: z.ZodString;
|
|
6040
|
-
specificTargetMuscle: z.ZodString;
|
|
5831
|
+
byDate: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5832
|
+
durationMins: z.ZodNumber;
|
|
5833
|
+
exerciseTracked: z.ZodArray<z.ZodObject<{
|
|
5834
|
+
exerciseTracking: z.ZodObject<{
|
|
5835
|
+
exerciseTrackingId: z.ZodInt;
|
|
5836
|
+
sets: z.ZodArray<z.ZodObject<{
|
|
5837
|
+
setIndex: z.ZodInt;
|
|
5838
|
+
weight: z.ZodNumber;
|
|
5839
|
+
reps: z.ZodInt;
|
|
5840
|
+
}, z.core.$strip>>;
|
|
5841
|
+
notes: z.ZodNullable<z.ZodString>;
|
|
5842
|
+
exerciseAssignment: z.ZodObject<{
|
|
5843
|
+
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
5844
|
+
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
5845
|
+
exerciseId: z.ZodInt;
|
|
5846
|
+
workoutSplitId: z.ZodInt;
|
|
5847
|
+
workoutSplitName: z.ZodString;
|
|
5848
|
+
exerciseName: z.ZodString;
|
|
5849
|
+
targetMuscle: z.ZodString;
|
|
5850
|
+
specificTargetMuscle: z.ZodString;
|
|
5851
|
+
}, z.core.$strip>;
|
|
6041
5852
|
}, z.core.$strip>;
|
|
6042
|
-
}, z.core.$strip
|
|
6043
|
-
}, z.core.$strip
|
|
5853
|
+
}, z.core.$strip>>;
|
|
5854
|
+
}, z.core.$strip>>;
|
|
6044
5855
|
}, z.core.$strip>;
|
|
6045
5856
|
declare const exerciseTrackingAndStatsQueryDtoSchema: z.ZodObject<{
|
|
6046
5857
|
trackingStats: z.ZodObject<{
|
|
@@ -6074,69 +5885,30 @@ declare const exerciseTrackingAndStatsQueryDtoSchema: z.ZodObject<{
|
|
|
6074
5885
|
}, z.core.$strip>>;
|
|
6075
5886
|
}, z.core.$strip>;
|
|
6076
5887
|
trackingMaps: z.ZodObject<{
|
|
6077
|
-
byDate: z.ZodRecord<z.ZodString, z.
|
|
6078
|
-
|
|
6079
|
-
|
|
6080
|
-
|
|
6081
|
-
|
|
6082
|
-
|
|
6083
|
-
|
|
6084
|
-
|
|
6085
|
-
|
|
6086
|
-
|
|
6087
|
-
|
|
6088
|
-
|
|
6089
|
-
|
|
6090
|
-
|
|
6091
|
-
|
|
6092
|
-
|
|
6093
|
-
|
|
6094
|
-
|
|
6095
|
-
|
|
6096
|
-
|
|
6097
|
-
|
|
6098
|
-
byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
6099
|
-
exerciseTracking: z.ZodObject<{
|
|
6100
|
-
exerciseTrackingId: z.ZodInt;
|
|
6101
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
6102
|
-
setIndex: z.ZodInt;
|
|
6103
|
-
weight: z.ZodNumber;
|
|
6104
|
-
reps: z.ZodInt;
|
|
6105
|
-
}, z.core.$strip>>;
|
|
6106
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
6107
|
-
exerciseAssignment: z.ZodObject<{
|
|
6108
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
6109
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
6110
|
-
exerciseId: z.ZodInt;
|
|
6111
|
-
workoutSplitId: z.ZodInt;
|
|
6112
|
-
workoutSplitName: z.ZodString;
|
|
6113
|
-
exerciseName: z.ZodString;
|
|
6114
|
-
targetMuscle: z.ZodString;
|
|
6115
|
-
specificTargetMuscle: z.ZodString;
|
|
6116
|
-
}, z.core.$strip>;
|
|
6117
|
-
}, z.core.$strip>;
|
|
6118
|
-
}, z.core.$strip>>>;
|
|
6119
|
-
bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
6120
|
-
exerciseTracking: z.ZodObject<{
|
|
6121
|
-
exerciseTrackingId: z.ZodInt;
|
|
6122
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
6123
|
-
setIndex: z.ZodInt;
|
|
6124
|
-
weight: z.ZodNumber;
|
|
6125
|
-
reps: z.ZodInt;
|
|
6126
|
-
}, z.core.$strip>>;
|
|
6127
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
6128
|
-
exerciseAssignment: z.ZodObject<{
|
|
6129
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
6130
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
6131
|
-
exerciseId: z.ZodInt;
|
|
6132
|
-
workoutSplitId: z.ZodInt;
|
|
6133
|
-
workoutSplitName: z.ZodString;
|
|
6134
|
-
exerciseName: z.ZodString;
|
|
6135
|
-
targetMuscle: z.ZodString;
|
|
6136
|
-
specificTargetMuscle: z.ZodString;
|
|
5888
|
+
byDate: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5889
|
+
durationMins: z.ZodNumber;
|
|
5890
|
+
exerciseTracked: z.ZodArray<z.ZodObject<{
|
|
5891
|
+
exerciseTracking: z.ZodObject<{
|
|
5892
|
+
exerciseTrackingId: z.ZodInt;
|
|
5893
|
+
sets: z.ZodArray<z.ZodObject<{
|
|
5894
|
+
setIndex: z.ZodInt;
|
|
5895
|
+
weight: z.ZodNumber;
|
|
5896
|
+
reps: z.ZodInt;
|
|
5897
|
+
}, z.core.$strip>>;
|
|
5898
|
+
notes: z.ZodNullable<z.ZodString>;
|
|
5899
|
+
exerciseAssignment: z.ZodObject<{
|
|
5900
|
+
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
5901
|
+
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
5902
|
+
exerciseId: z.ZodInt;
|
|
5903
|
+
workoutSplitId: z.ZodInt;
|
|
5904
|
+
workoutSplitName: z.ZodString;
|
|
5905
|
+
exerciseName: z.ZodString;
|
|
5906
|
+
targetMuscle: z.ZodString;
|
|
5907
|
+
specificTargetMuscle: z.ZodString;
|
|
5908
|
+
}, z.core.$strip>;
|
|
6137
5909
|
}, z.core.$strip>;
|
|
6138
|
-
}, z.core.$strip
|
|
6139
|
-
}, z.core.$strip
|
|
5910
|
+
}, z.core.$strip>>;
|
|
5911
|
+
}, z.core.$strip>>;
|
|
6140
5912
|
}, z.core.$strip>;
|
|
6141
5913
|
}, z.core.$strip>;
|
|
6142
5914
|
/** SQL row wrapping the complete tracking aggregate under `data`. */
|
|
@@ -6173,69 +5945,30 @@ declare const exerciseTrackingAndStatsRowQueryDtoSchema: z.ZodObject<{
|
|
|
6173
5945
|
}, z.core.$strip>>;
|
|
6174
5946
|
}, z.core.$strip>;
|
|
6175
5947
|
trackingMaps: z.ZodObject<{
|
|
6176
|
-
byDate: z.ZodRecord<z.ZodString, z.
|
|
6177
|
-
|
|
6178
|
-
|
|
6179
|
-
|
|
6180
|
-
|
|
6181
|
-
|
|
6182
|
-
|
|
6183
|
-
|
|
6184
|
-
|
|
6185
|
-
|
|
6186
|
-
|
|
6187
|
-
|
|
6188
|
-
|
|
6189
|
-
|
|
6190
|
-
|
|
6191
|
-
|
|
6192
|
-
|
|
6193
|
-
|
|
6194
|
-
|
|
6195
|
-
|
|
6196
|
-
|
|
6197
|
-
byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
6198
|
-
exerciseTracking: z.ZodObject<{
|
|
6199
|
-
exerciseTrackingId: z.ZodInt;
|
|
6200
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
6201
|
-
setIndex: z.ZodInt;
|
|
6202
|
-
weight: z.ZodNumber;
|
|
6203
|
-
reps: z.ZodInt;
|
|
6204
|
-
}, z.core.$strip>>;
|
|
6205
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
6206
|
-
exerciseAssignment: z.ZodObject<{
|
|
6207
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
6208
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
6209
|
-
exerciseId: z.ZodInt;
|
|
6210
|
-
workoutSplitId: z.ZodInt;
|
|
6211
|
-
workoutSplitName: z.ZodString;
|
|
6212
|
-
exerciseName: z.ZodString;
|
|
6213
|
-
targetMuscle: z.ZodString;
|
|
6214
|
-
specificTargetMuscle: z.ZodString;
|
|
6215
|
-
}, z.core.$strip>;
|
|
6216
|
-
}, z.core.$strip>;
|
|
6217
|
-
}, z.core.$strip>>>;
|
|
6218
|
-
bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
6219
|
-
exerciseTracking: z.ZodObject<{
|
|
6220
|
-
exerciseTrackingId: z.ZodInt;
|
|
6221
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
6222
|
-
setIndex: z.ZodInt;
|
|
6223
|
-
weight: z.ZodNumber;
|
|
6224
|
-
reps: z.ZodInt;
|
|
6225
|
-
}, z.core.$strip>>;
|
|
6226
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
6227
|
-
exerciseAssignment: z.ZodObject<{
|
|
6228
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
6229
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
6230
|
-
exerciseId: z.ZodInt;
|
|
6231
|
-
workoutSplitId: z.ZodInt;
|
|
6232
|
-
workoutSplitName: z.ZodString;
|
|
6233
|
-
exerciseName: z.ZodString;
|
|
6234
|
-
targetMuscle: z.ZodString;
|
|
6235
|
-
specificTargetMuscle: z.ZodString;
|
|
5948
|
+
byDate: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5949
|
+
durationMins: z.ZodNumber;
|
|
5950
|
+
exerciseTracked: z.ZodArray<z.ZodObject<{
|
|
5951
|
+
exerciseTracking: z.ZodObject<{
|
|
5952
|
+
exerciseTrackingId: z.ZodInt;
|
|
5953
|
+
sets: z.ZodArray<z.ZodObject<{
|
|
5954
|
+
setIndex: z.ZodInt;
|
|
5955
|
+
weight: z.ZodNumber;
|
|
5956
|
+
reps: z.ZodInt;
|
|
5957
|
+
}, z.core.$strip>>;
|
|
5958
|
+
notes: z.ZodNullable<z.ZodString>;
|
|
5959
|
+
exerciseAssignment: z.ZodObject<{
|
|
5960
|
+
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
5961
|
+
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
5962
|
+
exerciseId: z.ZodInt;
|
|
5963
|
+
workoutSplitId: z.ZodInt;
|
|
5964
|
+
workoutSplitName: z.ZodString;
|
|
5965
|
+
exerciseName: z.ZodString;
|
|
5966
|
+
targetMuscle: z.ZodString;
|
|
5967
|
+
specificTargetMuscle: z.ZodString;
|
|
5968
|
+
}, z.core.$strip>;
|
|
6236
5969
|
}, z.core.$strip>;
|
|
6237
|
-
}, z.core.$strip
|
|
6238
|
-
}, z.core.$strip
|
|
5970
|
+
}, z.core.$strip>>;
|
|
5971
|
+
}, z.core.$strip>>;
|
|
6239
5972
|
}, z.core.$strip>;
|
|
6240
5973
|
}, z.core.$strip>;
|
|
6241
5974
|
}, z.core.$strip>;
|
|
@@ -6273,69 +6006,30 @@ declare const exerciseTrackingStatsRowQueryDtoSchema: z.ZodObject<{
|
|
|
6273
6006
|
}, z.core.$strip>;
|
|
6274
6007
|
declare const exerciseTrackingMapsRowQueryDtoSchema: z.ZodObject<{
|
|
6275
6008
|
data: z.ZodObject<{
|
|
6276
|
-
byDate: z.ZodRecord<z.ZodString, z.
|
|
6277
|
-
|
|
6278
|
-
|
|
6279
|
-
|
|
6280
|
-
|
|
6281
|
-
|
|
6282
|
-
|
|
6283
|
-
|
|
6284
|
-
|
|
6285
|
-
|
|
6286
|
-
|
|
6287
|
-
|
|
6288
|
-
|
|
6289
|
-
|
|
6290
|
-
|
|
6291
|
-
|
|
6292
|
-
|
|
6293
|
-
|
|
6294
|
-
|
|
6295
|
-
|
|
6296
|
-
|
|
6297
|
-
byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
6298
|
-
exerciseTracking: z.ZodObject<{
|
|
6299
|
-
exerciseTrackingId: z.ZodInt;
|
|
6300
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
6301
|
-
setIndex: z.ZodInt;
|
|
6302
|
-
weight: z.ZodNumber;
|
|
6303
|
-
reps: z.ZodInt;
|
|
6304
|
-
}, z.core.$strip>>;
|
|
6305
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
6306
|
-
exerciseAssignment: z.ZodObject<{
|
|
6307
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
6308
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
6309
|
-
exerciseId: z.ZodInt;
|
|
6310
|
-
workoutSplitId: z.ZodInt;
|
|
6311
|
-
workoutSplitName: z.ZodString;
|
|
6312
|
-
exerciseName: z.ZodString;
|
|
6313
|
-
targetMuscle: z.ZodString;
|
|
6314
|
-
specificTargetMuscle: z.ZodString;
|
|
6315
|
-
}, z.core.$strip>;
|
|
6316
|
-
}, z.core.$strip>;
|
|
6317
|
-
}, z.core.$strip>>>;
|
|
6318
|
-
bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
6319
|
-
exerciseTracking: z.ZodObject<{
|
|
6320
|
-
exerciseTrackingId: z.ZodInt;
|
|
6321
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
6322
|
-
setIndex: z.ZodInt;
|
|
6323
|
-
weight: z.ZodNumber;
|
|
6324
|
-
reps: z.ZodInt;
|
|
6325
|
-
}, z.core.$strip>>;
|
|
6326
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
6327
|
-
exerciseAssignment: z.ZodObject<{
|
|
6328
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
6329
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
6330
|
-
exerciseId: z.ZodInt;
|
|
6331
|
-
workoutSplitId: z.ZodInt;
|
|
6332
|
-
workoutSplitName: z.ZodString;
|
|
6333
|
-
exerciseName: z.ZodString;
|
|
6334
|
-
targetMuscle: z.ZodString;
|
|
6335
|
-
specificTargetMuscle: z.ZodString;
|
|
6009
|
+
byDate: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6010
|
+
durationMins: z.ZodNumber;
|
|
6011
|
+
exerciseTracked: z.ZodArray<z.ZodObject<{
|
|
6012
|
+
exerciseTracking: z.ZodObject<{
|
|
6013
|
+
exerciseTrackingId: z.ZodInt;
|
|
6014
|
+
sets: z.ZodArray<z.ZodObject<{
|
|
6015
|
+
setIndex: z.ZodInt;
|
|
6016
|
+
weight: z.ZodNumber;
|
|
6017
|
+
reps: z.ZodInt;
|
|
6018
|
+
}, z.core.$strip>>;
|
|
6019
|
+
notes: z.ZodNullable<z.ZodString>;
|
|
6020
|
+
exerciseAssignment: z.ZodObject<{
|
|
6021
|
+
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
6022
|
+
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
6023
|
+
exerciseId: z.ZodInt;
|
|
6024
|
+
workoutSplitId: z.ZodInt;
|
|
6025
|
+
workoutSplitName: z.ZodString;
|
|
6026
|
+
exerciseName: z.ZodString;
|
|
6027
|
+
targetMuscle: z.ZodString;
|
|
6028
|
+
specificTargetMuscle: z.ZodString;
|
|
6029
|
+
}, z.core.$strip>;
|
|
6336
6030
|
}, z.core.$strip>;
|
|
6337
|
-
}, z.core.$strip
|
|
6338
|
-
}, z.core.$strip
|
|
6031
|
+
}, z.core.$strip>>;
|
|
6032
|
+
}, z.core.$strip>>;
|
|
6339
6033
|
}, z.core.$strip>;
|
|
6340
6034
|
}, z.core.$strip>;
|
|
6341
6035
|
/** SQL row resolving the workout split for an exercise assignment. */
|