@strong-together/shared 2.8.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.d.ts CHANGED
@@ -3867,7 +3867,7 @@ declare const userAerobicsResponseSchema: z.ZodObject<{
3867
3867
  type: z.ZodString;
3868
3868
  durationSec: z.ZodInt;
3869
3869
  durationMins: z.ZodInt;
3870
- workoutTimeUtc: z.ZodString;
3870
+ workoutTimeLocal: z.ZodString;
3871
3871
  }, z.core.$strip>>;
3872
3872
  totalDurationSec: z.ZodNumber;
3873
3873
  totalDurationMins: z.ZodNumber;
@@ -3890,7 +3890,7 @@ declare const getUserAerobicsContract: {
3890
3890
  type: z.ZodString;
3891
3891
  durationSec: z.ZodInt;
3892
3892
  durationMins: z.ZodInt;
3893
- workoutTimeUtc: z.ZodString;
3893
+ workoutTimeLocal: z.ZodString;
3894
3894
  }, z.core.$strip>>;
3895
3895
  totalDurationSec: z.ZodNumber;
3896
3896
  totalDurationMins: z.ZodNumber;
@@ -3918,7 +3918,7 @@ declare const aerobicsWeeklyRecordQueryDtoSchema: z.ZodObject<{
3918
3918
  type: z.ZodString;
3919
3919
  durationSec: z.ZodInt;
3920
3920
  durationMins: z.ZodInt;
3921
- workoutTimeUtc: z.ZodString;
3921
+ workoutTimeLocal: z.ZodString;
3922
3922
  }, z.core.$strip>;
3923
3923
  /** Weekly aerobic aggregation containing records and duration totals. */
3924
3924
  declare const weeklyDataQueryDtoSchema: z.ZodObject<{
@@ -3926,7 +3926,7 @@ declare const weeklyDataQueryDtoSchema: z.ZodObject<{
3926
3926
  type: z.ZodString;
3927
3927
  durationSec: z.ZodInt;
3928
3928
  durationMins: z.ZodInt;
3929
- workoutTimeUtc: z.ZodString;
3929
+ workoutTimeLocal: z.ZodString;
3930
3930
  }, z.core.$strip>>;
3931
3931
  totalDurationSec: z.ZodNumber;
3932
3932
  totalDurationMins: z.ZodNumber;
@@ -3943,7 +3943,7 @@ declare const userAerobicsQueryDtoSchema: z.ZodObject<{
3943
3943
  type: z.ZodString;
3944
3944
  durationSec: z.ZodInt;
3945
3945
  durationMins: z.ZodInt;
3946
- workoutTimeUtc: z.ZodString;
3946
+ workoutTimeLocal: z.ZodString;
3947
3947
  }, z.core.$strip>>;
3948
3948
  totalDurationSec: z.ZodNumber;
3949
3949
  totalDurationMins: z.ZodNumber;
@@ -3962,7 +3962,7 @@ declare const userAerobicsRowQueryDtoSchema: z.ZodObject<{
3962
3962
  type: z.ZodString;
3963
3963
  durationSec: z.ZodInt;
3964
3964
  durationMins: z.ZodInt;
3965
- workoutTimeUtc: z.ZodString;
3965
+ workoutTimeLocal: z.ZodString;
3966
3966
  }, z.core.$strip>>;
3967
3967
  totalDurationSec: z.ZodNumber;
3968
3968
  totalDurationMins: z.ZodNumber;
@@ -4337,159 +4337,69 @@ type UserByIdentifierRowQueryDto = z.infer<typeof userByIdentifierRowQueryDtoSch
4337
4337
  type UserByUsernameRawQueryDto = z.infer<typeof userByUsernameRawQueryDtoSchema>;
4338
4338
  type UserByUsernameRowQueryDto = z.infer<typeof userByUsernameRowQueryDtoSchema>;
4339
4339
 
4340
- declare const bootstrapRequestSchema: z.ZodObject<{
4340
+ declare const getAllExercisesResponseSchema: zod_v4.ZodRecord<zod_v4.ZodString, zod_v4.ZodArray<zod_v4.ZodObject<{
4341
+ id: zod_v4.ZodInt;
4342
+ name: zod_v4.ZodString;
4343
+ specificTargetMuscle: zod_v4.ZodString;
4344
+ }, zod_v4_core.$strip>>>;
4345
+ declare const getAllExercisesContract: {
4346
+ response: zod_v4.ZodRecord<zod_v4.ZodString, zod_v4.ZodArray<zod_v4.ZodObject<{
4347
+ id: zod_v4.ZodInt;
4348
+ name: zod_v4.ZodString;
4349
+ specificTargetMuscle: zod_v4.ZodString;
4350
+ }, zod_v4_core.$strip>>>;
4351
+ };
4352
+ type GetAllExercisesResponse = ResponseOf<typeof getAllExercisesContract>;
4353
+
4354
+ /** Exercise row included in the muscle-grouped exercise query result. */
4355
+ declare const getAllExercisesExerciseQueryDtoSchema: z.ZodObject<{
4356
+ id: z.ZodInt;
4357
+ name: z.ZodString;
4358
+ specificTargetMuscle: z.ZodString;
4359
+ }, z.core.$strip>;
4360
+ /** Exercise map grouped by target muscle. */
4361
+ declare const exercisesMapByMuscleQueryDtoSchema: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
4362
+ id: z.ZodInt;
4363
+ name: z.ZodString;
4364
+ specificTargetMuscle: z.ZodString;
4365
+ }, z.core.$strip>>>;
4366
+ /** SQL row wrapping the exercise map under the `result` alias. */
4367
+ declare const exerciseMapByMuscleRowQueryDtoSchema: z.ZodObject<{
4368
+ result: z.ZodNullable<z.ZodObject<{
4369
+ map: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
4370
+ id: z.ZodInt;
4371
+ name: z.ZodString;
4372
+ specificTargetMuscle: z.ZodString;
4373
+ }, z.core.$strip>>>>;
4374
+ }, z.core.$strip>>;
4375
+ }, z.core.$strip>;
4376
+ type GetAllExercisesExerciseQueryDto = z.infer<typeof getAllExercisesExerciseQueryDtoSchema>;
4377
+ type ExercisesMapByMuscleQueryDto = z.infer<typeof exercisesMapByMuscleQueryDtoSchema>;
4378
+ type ExerciseMapByMuscleRowQueryDto = z.infer<typeof exerciseMapByMuscleRowQueryDtoSchema>;
4379
+
4380
+ declare const getAllMessagesRequestSchema: z.ZodObject<{
4341
4381
  query: z.ZodObject<{
4342
- tz: z.ZodOptional<z.ZodString>;
4382
+ tz: z.ZodString;
4343
4383
  }, z.core.$strip>;
4344
4384
  }, z.core.$strip>;
4345
- declare const bootstrapResponseSchema: z.ZodObject<{
4346
- user: z.ZodObject<{
4385
+ declare const getAllUserMessagesResponseSchema: z.ZodObject<{
4386
+ messages: z.ZodArray<z.ZodObject<{
4347
4387
  id: z.ZodUUID;
4348
- username: z.ZodString;
4349
- email: z.ZodString;
4350
- name: z.ZodString;
4351
- gender: z.ZodString;
4352
- createdAt: z.ZodString;
4353
- updatedAt: z.ZodString;
4354
- profilePicPath: z.ZodNullable<z.ZodString>;
4355
- pushToken: z.ZodNullable<z.ZodString>;
4356
- role: z.ZodString;
4357
- isFirstLogin: z.ZodBoolean;
4358
- tokenVersion: z.ZodInt;
4359
- isVerified: z.ZodBoolean;
4360
- authProvider: z.ZodString;
4361
- lastLogin: z.ZodNullable<z.ZodString>;
4362
- }, z.core.$strip>;
4363
- workout: z.ZodObject<{
4364
- workoutPlan: z.ZodNullable<z.ZodObject<{
4365
- id: z.ZodInt;
4366
- numberOfSplits: z.ZodNumber;
4367
- createdAt: z.ZodString;
4368
- userId: z.ZodUUID;
4369
- isActive: z.ZodBoolean;
4370
- updatedAt: z.ZodString;
4371
- workoutSplits: z.ZodNullable<z.ZodArray<z.ZodObject<{
4372
- id: z.ZodInt;
4373
- workoutId: z.ZodInt;
4374
- name: z.ZodString;
4375
- orderIndex: z.ZodInt;
4376
- createdAt: z.ZodString;
4377
- muscleGroup: z.ZodNullable<z.ZodString>;
4378
- isActive: z.ZodBoolean;
4379
- exercises: z.ZodArray<z.ZodObject<{
4380
- exerciseToSplitId: z.ZodInt;
4381
- exerciseId: z.ZodInt;
4382
- name: z.ZodString;
4383
- sets: z.ZodArray<z.ZodObject<{
4384
- orderIndex: z.ZodInt;
4385
- reps: z.ZodInt;
4386
- }, z.core.$strip>>;
4387
- orderIndex: z.ZodInt;
4388
- isActive: z.ZodBoolean;
4389
- targetMuscle: z.ZodString;
4390
- specificTargetMuscle: z.ZodString;
4391
- }, z.core.$strip>>;
4392
- }, z.core.$strip>>>;
4393
- }, z.core.$strip>>;
4394
- }, z.core.$strip>;
4395
- tracking: z.ZodObject<{
4396
- trackingStats: z.ZodObject<{
4397
- workoutCount: z.ZodCoercedNumber<unknown>;
4398
- hasExerciseTracking: z.ZodBoolean;
4399
- nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
4400
- id: z.ZodInt;
4401
- name: z.ZodString;
4402
- orderIndex: z.ZodInt;
4403
- muscleGroup: z.ZodNullable<z.ZodString>;
4404
- }, z.core.$strip>>;
4405
- workoutTargets: z.ZodObject<{
4406
- workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
4407
- workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
4408
- weekStreak: z.ZodCoercedNumber<unknown>;
4409
- }, z.core.$strip>;
4410
- lastWorkoutStats: z.ZodObject<{
4411
- workoutDate: z.ZodNullable<z.ZodString>;
4412
- workoutSplitName: z.ZodNullable<z.ZodString>;
4413
- exerciseTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
4414
- setTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
4415
- }, z.core.$strip>;
4416
- prs: z.ZodArray<z.ZodObject<{
4417
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
4418
- exerciseId: z.ZodInt;
4419
- exerciseName: z.ZodString;
4420
- prWeight: z.ZodNumber;
4421
- prReps: z.ZodInt;
4422
- prSetIndex: z.ZodInt;
4423
- estimatedOneRepMax: z.ZodNullable<z.ZodNumber>;
4424
- }, z.core.$strip>>;
4425
- }, z.core.$strip>;
4426
- trackingMaps: z.ZodObject<{
4427
- byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
4428
- exerciseTracking: z.ZodObject<{
4429
- exerciseTrackingId: z.ZodInt;
4430
- sets: z.ZodArray<z.ZodObject<{
4431
- setIndex: z.ZodInt;
4432
- weight: z.ZodNumber;
4433
- reps: z.ZodInt;
4434
- }, z.core.$strip>>;
4435
- notes: z.ZodNullable<z.ZodString>;
4436
- exerciseAssignment: z.ZodObject<{
4437
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
4438
- orderIndex: z.ZodNullable<z.ZodInt>;
4439
- exerciseId: z.ZodInt;
4440
- workoutSplitId: z.ZodInt;
4441
- workoutSplitName: z.ZodString;
4442
- exerciseName: z.ZodString;
4443
- targetMuscle: z.ZodString;
4444
- specificTargetMuscle: z.ZodString;
4445
- }, z.core.$strip>;
4446
- }, z.core.$strip>;
4447
- }, z.core.$strip>>>;
4448
- byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
4449
- exerciseTracking: z.ZodObject<{
4450
- exerciseTrackingId: z.ZodInt;
4451
- sets: z.ZodArray<z.ZodObject<{
4452
- setIndex: z.ZodInt;
4453
- weight: z.ZodNumber;
4454
- reps: z.ZodInt;
4455
- }, z.core.$strip>>;
4456
- notes: z.ZodNullable<z.ZodString>;
4457
- exerciseAssignment: z.ZodObject<{
4458
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
4459
- orderIndex: z.ZodNullable<z.ZodInt>;
4460
- exerciseId: z.ZodInt;
4461
- workoutSplitId: z.ZodInt;
4462
- workoutSplitName: z.ZodString;
4463
- exerciseName: z.ZodString;
4464
- targetMuscle: z.ZodString;
4465
- specificTargetMuscle: z.ZodString;
4466
- }, z.core.$strip>;
4467
- }, z.core.$strip>;
4468
- }, z.core.$strip>>>;
4469
- bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
4470
- exerciseTracking: z.ZodObject<{
4471
- exerciseTrackingId: z.ZodInt;
4472
- sets: z.ZodArray<z.ZodObject<{
4473
- setIndex: z.ZodInt;
4474
- weight: z.ZodNumber;
4475
- reps: z.ZodInt;
4476
- }, z.core.$strip>>;
4477
- notes: z.ZodNullable<z.ZodString>;
4478
- exerciseAssignment: z.ZodObject<{
4479
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
4480
- orderIndex: z.ZodNullable<z.ZodInt>;
4481
- exerciseId: z.ZodInt;
4482
- workoutSplitId: z.ZodInt;
4483
- workoutSplitName: z.ZodString;
4484
- exerciseName: z.ZodString;
4485
- targetMuscle: z.ZodString;
4486
- specificTargetMuscle: z.ZodString;
4487
- }, z.core.$strip>;
4488
- }, z.core.$strip>;
4489
- }, z.core.$strip>>>;
4388
+ subject: z.ZodString;
4389
+ msg: z.ZodString;
4390
+ sentAt: z.ZodString;
4391
+ isRead: z.ZodBoolean;
4392
+ senderFullName: z.ZodString;
4393
+ senderProfilePicPath: z.ZodNullable<z.ZodString>;
4394
+ }, z.core.$strip>>;
4395
+ }, z.core.$strip>;
4396
+ declare const getAllUserMessagesContract: {
4397
+ request: z.ZodObject<{
4398
+ query: z.ZodObject<{
4399
+ tz: z.ZodString;
4490
4400
  }, z.core.$strip>;
4491
4401
  }, z.core.$strip>;
4492
- messages: z.ZodObject<{
4402
+ response: z.ZodObject<{
4493
4403
  messages: z.ZodArray<z.ZodObject<{
4494
4404
  id: z.ZodUUID;
4495
4405
  subject: z.ZodString;
@@ -4500,319 +4410,42 @@ declare const bootstrapResponseSchema: z.ZodObject<{
4500
4410
  senderProfilePicPath: z.ZodNullable<z.ZodString>;
4501
4411
  }, z.core.$strip>>;
4502
4412
  }, z.core.$strip>;
4503
- aerobics: z.ZodObject<{
4504
- daily: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
4505
- type: z.ZodString;
4506
- durationSec: z.ZodInt;
4507
- durationMins: z.ZodInt;
4508
- }, z.core.$strip>>>;
4509
- weekly: z.ZodRecord<z.ZodString, z.ZodObject<{
4510
- records: z.ZodArray<z.ZodObject<{
4511
- type: z.ZodString;
4512
- durationSec: z.ZodInt;
4513
- durationMins: z.ZodInt;
4514
- workoutTimeUtc: z.ZodString;
4515
- }, z.core.$strip>>;
4516
- totalDurationSec: z.ZodNumber;
4517
- totalDurationMins: z.ZodNumber;
4518
- }, z.core.$strip>>;
4413
+ };
4414
+ type GetAllUserMessagesQuery = QueryOf<typeof getAllUserMessagesContract>;
4415
+ type GetAllUserMessagesResponse = ResponseOf<typeof getAllUserMessagesContract>;
4416
+ declare const markMessageAsReadRequestSchema: z.ZodObject<{
4417
+ params: z.ZodObject<{
4418
+ id: z.ZodUUID;
4519
4419
  }, z.core.$strip>;
4520
4420
  }, z.core.$strip>;
4521
- declare const bootstrapContract: {
4421
+ declare const markMessageAsReadResponseSchema: z.ZodObject<{
4422
+ id: z.ZodUUID;
4423
+ isRead: z.ZodBoolean;
4424
+ }, z.core.$strip>;
4425
+ declare const markMessageAsReadContract: {
4522
4426
  request: z.ZodObject<{
4523
- query: z.ZodObject<{
4524
- tz: z.ZodOptional<z.ZodString>;
4427
+ params: z.ZodObject<{
4428
+ id: z.ZodUUID;
4525
4429
  }, z.core.$strip>;
4526
4430
  }, z.core.$strip>;
4527
4431
  response: z.ZodObject<{
4528
- user: z.ZodObject<{
4529
- id: z.ZodUUID;
4530
- username: z.ZodString;
4531
- email: z.ZodString;
4532
- name: z.ZodString;
4533
- gender: z.ZodString;
4534
- createdAt: z.ZodString;
4535
- updatedAt: z.ZodString;
4536
- profilePicPath: z.ZodNullable<z.ZodString>;
4537
- pushToken: z.ZodNullable<z.ZodString>;
4538
- role: z.ZodString;
4539
- isFirstLogin: z.ZodBoolean;
4540
- tokenVersion: z.ZodInt;
4541
- isVerified: z.ZodBoolean;
4542
- authProvider: z.ZodString;
4543
- lastLogin: z.ZodNullable<z.ZodString>;
4544
- }, z.core.$strip>;
4545
- workout: z.ZodObject<{
4546
- workoutPlan: z.ZodNullable<z.ZodObject<{
4547
- id: z.ZodInt;
4548
- numberOfSplits: z.ZodNumber;
4549
- createdAt: z.ZodString;
4550
- userId: z.ZodUUID;
4551
- isActive: z.ZodBoolean;
4552
- updatedAt: z.ZodString;
4553
- workoutSplits: z.ZodNullable<z.ZodArray<z.ZodObject<{
4554
- id: z.ZodInt;
4555
- workoutId: z.ZodInt;
4556
- name: z.ZodString;
4557
- orderIndex: z.ZodInt;
4558
- createdAt: z.ZodString;
4559
- muscleGroup: z.ZodNullable<z.ZodString>;
4560
- isActive: z.ZodBoolean;
4561
- exercises: z.ZodArray<z.ZodObject<{
4562
- exerciseToSplitId: z.ZodInt;
4563
- exerciseId: z.ZodInt;
4564
- name: z.ZodString;
4565
- sets: z.ZodArray<z.ZodObject<{
4566
- orderIndex: z.ZodInt;
4567
- reps: z.ZodInt;
4568
- }, z.core.$strip>>;
4569
- orderIndex: z.ZodInt;
4570
- isActive: z.ZodBoolean;
4571
- targetMuscle: z.ZodString;
4572
- specificTargetMuscle: z.ZodString;
4573
- }, z.core.$strip>>;
4574
- }, z.core.$strip>>>;
4575
- }, z.core.$strip>>;
4576
- }, z.core.$strip>;
4577
- tracking: z.ZodObject<{
4578
- trackingStats: z.ZodObject<{
4579
- workoutCount: z.ZodCoercedNumber<unknown>;
4580
- hasExerciseTracking: z.ZodBoolean;
4581
- nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
4582
- id: z.ZodInt;
4583
- name: z.ZodString;
4584
- orderIndex: z.ZodInt;
4585
- muscleGroup: z.ZodNullable<z.ZodString>;
4586
- }, z.core.$strip>>;
4587
- workoutTargets: z.ZodObject<{
4588
- workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
4589
- workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
4590
- weekStreak: z.ZodCoercedNumber<unknown>;
4591
- }, z.core.$strip>;
4592
- lastWorkoutStats: z.ZodObject<{
4593
- workoutDate: z.ZodNullable<z.ZodString>;
4594
- workoutSplitName: z.ZodNullable<z.ZodString>;
4595
- exerciseTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
4596
- setTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
4597
- }, z.core.$strip>;
4598
- prs: z.ZodArray<z.ZodObject<{
4599
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
4600
- exerciseId: z.ZodInt;
4601
- exerciseName: z.ZodString;
4602
- prWeight: z.ZodNumber;
4603
- prReps: z.ZodInt;
4604
- prSetIndex: z.ZodInt;
4605
- estimatedOneRepMax: z.ZodNullable<z.ZodNumber>;
4606
- }, z.core.$strip>>;
4607
- }, z.core.$strip>;
4608
- trackingMaps: z.ZodObject<{
4609
- byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
4610
- exerciseTracking: z.ZodObject<{
4611
- exerciseTrackingId: z.ZodInt;
4612
- sets: z.ZodArray<z.ZodObject<{
4613
- setIndex: z.ZodInt;
4614
- weight: z.ZodNumber;
4615
- reps: z.ZodInt;
4616
- }, z.core.$strip>>;
4617
- notes: z.ZodNullable<z.ZodString>;
4618
- exerciseAssignment: z.ZodObject<{
4619
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
4620
- orderIndex: z.ZodNullable<z.ZodInt>;
4621
- exerciseId: z.ZodInt;
4622
- workoutSplitId: z.ZodInt;
4623
- workoutSplitName: z.ZodString;
4624
- exerciseName: z.ZodString;
4625
- targetMuscle: z.ZodString;
4626
- specificTargetMuscle: z.ZodString;
4627
- }, z.core.$strip>;
4628
- }, z.core.$strip>;
4629
- }, z.core.$strip>>>;
4630
- byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
4631
- exerciseTracking: z.ZodObject<{
4632
- exerciseTrackingId: z.ZodInt;
4633
- sets: z.ZodArray<z.ZodObject<{
4634
- setIndex: z.ZodInt;
4635
- weight: z.ZodNumber;
4636
- reps: z.ZodInt;
4637
- }, z.core.$strip>>;
4638
- notes: z.ZodNullable<z.ZodString>;
4639
- exerciseAssignment: z.ZodObject<{
4640
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
4641
- orderIndex: z.ZodNullable<z.ZodInt>;
4642
- exerciseId: z.ZodInt;
4643
- workoutSplitId: z.ZodInt;
4644
- workoutSplitName: z.ZodString;
4645
- exerciseName: z.ZodString;
4646
- targetMuscle: z.ZodString;
4647
- specificTargetMuscle: z.ZodString;
4648
- }, z.core.$strip>;
4649
- }, z.core.$strip>;
4650
- }, z.core.$strip>>>;
4651
- bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
4652
- exerciseTracking: z.ZodObject<{
4653
- exerciseTrackingId: z.ZodInt;
4654
- sets: z.ZodArray<z.ZodObject<{
4655
- setIndex: z.ZodInt;
4656
- weight: z.ZodNumber;
4657
- reps: z.ZodInt;
4658
- }, z.core.$strip>>;
4659
- notes: z.ZodNullable<z.ZodString>;
4660
- exerciseAssignment: z.ZodObject<{
4661
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
4662
- orderIndex: z.ZodNullable<z.ZodInt>;
4663
- exerciseId: z.ZodInt;
4664
- workoutSplitId: z.ZodInt;
4665
- workoutSplitName: z.ZodString;
4666
- exerciseName: z.ZodString;
4667
- targetMuscle: z.ZodString;
4668
- specificTargetMuscle: z.ZodString;
4669
- }, z.core.$strip>;
4670
- }, z.core.$strip>;
4671
- }, z.core.$strip>>>;
4672
- }, z.core.$strip>;
4673
- }, z.core.$strip>;
4674
- messages: z.ZodObject<{
4675
- messages: z.ZodArray<z.ZodObject<{
4676
- id: z.ZodUUID;
4677
- subject: z.ZodString;
4678
- msg: z.ZodString;
4679
- sentAt: z.ZodString;
4680
- isRead: z.ZodBoolean;
4681
- senderFullName: z.ZodString;
4682
- senderProfilePicPath: z.ZodNullable<z.ZodString>;
4683
- }, z.core.$strip>>;
4684
- }, z.core.$strip>;
4685
- aerobics: z.ZodObject<{
4686
- daily: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
4687
- type: z.ZodString;
4688
- durationSec: z.ZodInt;
4689
- durationMins: z.ZodInt;
4690
- }, z.core.$strip>>>;
4691
- weekly: z.ZodRecord<z.ZodString, z.ZodObject<{
4692
- records: z.ZodArray<z.ZodObject<{
4693
- type: z.ZodString;
4694
- durationSec: z.ZodInt;
4695
- durationMins: z.ZodInt;
4696
- workoutTimeUtc: z.ZodString;
4697
- }, z.core.$strip>>;
4698
- totalDurationSec: z.ZodNumber;
4699
- totalDurationMins: z.ZodNumber;
4700
- }, z.core.$strip>>;
4701
- }, z.core.$strip>;
4702
- }, z.core.$strip>;
4703
- };
4704
- type BootstrapRequestQuery = QueryOf<typeof bootstrapContract>;
4705
- type BootstrapResponse = ResponseOf<typeof bootstrapContract>;
4706
-
4707
- declare const getAllExercisesResponseSchema: zod_v4.ZodRecord<zod_v4.ZodString, zod_v4.ZodArray<zod_v4.ZodObject<{
4708
- id: zod_v4.ZodInt;
4709
- name: zod_v4.ZodString;
4710
- specificTargetMuscle: zod_v4.ZodString;
4711
- }, zod_v4_core.$strip>>>;
4712
- declare const getAllExercisesContract: {
4713
- response: zod_v4.ZodRecord<zod_v4.ZodString, zod_v4.ZodArray<zod_v4.ZodObject<{
4714
- id: zod_v4.ZodInt;
4715
- name: zod_v4.ZodString;
4716
- specificTargetMuscle: zod_v4.ZodString;
4717
- }, zod_v4_core.$strip>>>;
4718
- };
4719
- type GetAllExercisesResponse = ResponseOf<typeof getAllExercisesContract>;
4720
-
4721
- /** Exercise row included in the muscle-grouped exercise query result. */
4722
- declare const getAllExercisesExerciseQueryDtoSchema: z.ZodObject<{
4723
- id: z.ZodInt;
4724
- name: z.ZodString;
4725
- specificTargetMuscle: z.ZodString;
4726
- }, z.core.$strip>;
4727
- /** Exercise map grouped by target muscle. */
4728
- declare const exercisesMapByMuscleQueryDtoSchema: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
4729
- id: z.ZodInt;
4730
- name: z.ZodString;
4731
- specificTargetMuscle: z.ZodString;
4732
- }, z.core.$strip>>>;
4733
- /** SQL row wrapping the exercise map under the `result` alias. */
4734
- declare const exerciseMapByMuscleRowQueryDtoSchema: z.ZodObject<{
4735
- result: z.ZodNullable<z.ZodObject<{
4736
- map: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
4737
- id: z.ZodInt;
4738
- name: z.ZodString;
4739
- specificTargetMuscle: z.ZodString;
4740
- }, z.core.$strip>>>>;
4741
- }, z.core.$strip>>;
4742
- }, z.core.$strip>;
4743
- type GetAllExercisesExerciseQueryDto = z.infer<typeof getAllExercisesExerciseQueryDtoSchema>;
4744
- type ExercisesMapByMuscleQueryDto = z.infer<typeof exercisesMapByMuscleQueryDtoSchema>;
4745
- type ExerciseMapByMuscleRowQueryDto = z.infer<typeof exerciseMapByMuscleRowQueryDtoSchema>;
4746
-
4747
- declare const getAllMessagesRequestSchema: z.ZodObject<{
4748
- query: z.ZodObject<{
4749
- tz: z.ZodString;
4750
- }, z.core.$strip>;
4751
- }, z.core.$strip>;
4752
- declare const getAllUserMessagesResponseSchema: z.ZodObject<{
4753
- messages: z.ZodArray<z.ZodObject<{
4754
- id: z.ZodUUID;
4755
- subject: z.ZodString;
4756
- msg: z.ZodString;
4757
- sentAt: z.ZodString;
4758
- isRead: z.ZodBoolean;
4759
- senderFullName: z.ZodString;
4760
- senderProfilePicPath: z.ZodNullable<z.ZodString>;
4761
- }, z.core.$strip>>;
4762
- }, z.core.$strip>;
4763
- declare const getAllUserMessagesContract: {
4764
- request: z.ZodObject<{
4765
- query: z.ZodObject<{
4766
- tz: z.ZodString;
4767
- }, z.core.$strip>;
4768
- }, z.core.$strip>;
4769
- response: z.ZodObject<{
4770
- messages: z.ZodArray<z.ZodObject<{
4771
- id: z.ZodUUID;
4772
- subject: z.ZodString;
4773
- msg: z.ZodString;
4774
- sentAt: z.ZodString;
4775
- isRead: z.ZodBoolean;
4776
- senderFullName: z.ZodString;
4777
- senderProfilePicPath: z.ZodNullable<z.ZodString>;
4778
- }, z.core.$strip>>;
4779
- }, z.core.$strip>;
4780
- };
4781
- type GetAllUserMessagesQuery = QueryOf<typeof getAllUserMessagesContract>;
4782
- type GetAllUserMessagesResponse = ResponseOf<typeof getAllUserMessagesContract>;
4783
- declare const markMessageAsReadRequestSchema: z.ZodObject<{
4784
- params: z.ZodObject<{
4785
- id: z.ZodUUID;
4786
- }, z.core.$strip>;
4787
- }, z.core.$strip>;
4788
- declare const markMessageAsReadResponseSchema: z.ZodObject<{
4789
- id: z.ZodUUID;
4790
- isRead: z.ZodBoolean;
4791
- }, z.core.$strip>;
4792
- declare const markMessageAsReadContract: {
4793
- request: z.ZodObject<{
4794
- params: z.ZodObject<{
4795
- id: z.ZodUUID;
4796
- }, z.core.$strip>;
4797
- }, z.core.$strip>;
4798
- response: z.ZodObject<{
4799
- id: z.ZodUUID;
4800
- isRead: z.ZodBoolean;
4801
- }, z.core.$strip>;
4802
- };
4803
- type MarkMessageAsReadParams = ParamsOf<typeof markMessageAsReadContract>;
4804
- type MarkMessageAsReadResponse = ResponseOf<typeof markMessageAsReadContract>;
4805
- declare const deleteMessageRequestSchema: z.ZodObject<{
4806
- params: z.ZodObject<{
4807
- id: z.ZodUUID;
4808
- }, z.core.$strip>;
4809
- }, z.core.$strip>;
4810
- declare const deleteMessageResponseSchema: z.ZodObject<{
4811
- id: z.ZodUUID;
4812
- }, z.core.$strip>;
4813
- declare const deleteMessageContract: {
4814
- request: z.ZodObject<{
4815
- params: z.ZodObject<{
4432
+ id: z.ZodUUID;
4433
+ isRead: z.ZodBoolean;
4434
+ }, z.core.$strip>;
4435
+ };
4436
+ type MarkMessageAsReadParams = ParamsOf<typeof markMessageAsReadContract>;
4437
+ type MarkMessageAsReadResponse = ResponseOf<typeof markMessageAsReadContract>;
4438
+ declare const deleteMessageRequestSchema: z.ZodObject<{
4439
+ params: z.ZodObject<{
4440
+ id: z.ZodUUID;
4441
+ }, z.core.$strip>;
4442
+ }, z.core.$strip>;
4443
+ declare const deleteMessageResponseSchema: z.ZodObject<{
4444
+ id: z.ZodUUID;
4445
+ }, z.core.$strip>;
4446
+ declare const deleteMessageContract: {
4447
+ request: z.ZodObject<{
4448
+ params: z.ZodObject<{
4816
4449
  id: z.ZodUUID;
4817
4450
  }, z.core.$strip>;
4818
4451
  }, z.core.$strip>;
@@ -5489,6 +5122,7 @@ declare const getWholeUserWorkoutPlanResponseSchema: z.ZodObject<{
5489
5122
  orderIndex: z.ZodInt;
5490
5123
  createdAt: z.ZodString;
5491
5124
  muscleGroup: z.ZodNullable<z.ZodString>;
5125
+ estimatedDurationMinutes: z.ZodNullable<z.ZodNumber>;
5492
5126
  isActive: z.ZodBoolean;
5493
5127
  exercises: z.ZodArray<z.ZodObject<{
5494
5128
  exerciseToSplitId: z.ZodInt;
@@ -5527,6 +5161,7 @@ declare const getWholeUserWorkoutPlanContract: {
5527
5161
  orderIndex: z.ZodInt;
5528
5162
  createdAt: z.ZodString;
5529
5163
  muscleGroup: z.ZodNullable<z.ZodString>;
5164
+ estimatedDurationMinutes: z.ZodNullable<z.ZodNumber>;
5530
5165
  isActive: z.ZodBoolean;
5531
5166
  exercises: z.ZodArray<z.ZodObject<{
5532
5167
  exerciseToSplitId: z.ZodInt;
@@ -5577,6 +5212,7 @@ declare const addWorkoutResponseSchema: z.ZodObject<{
5577
5212
  orderIndex: z.ZodInt;
5578
5213
  createdAt: z.ZodString;
5579
5214
  muscleGroup: z.ZodNullable<z.ZodString>;
5215
+ estimatedDurationMinutes: z.ZodNullable<z.ZodNumber>;
5580
5216
  isActive: z.ZodBoolean;
5581
5217
  exercises: z.ZodArray<z.ZodObject<{
5582
5218
  exerciseToSplitId: z.ZodInt;
@@ -5627,6 +5263,7 @@ declare const addWorkoutContract: {
5627
5263
  orderIndex: z.ZodInt;
5628
5264
  createdAt: z.ZodString;
5629
5265
  muscleGroup: z.ZodNullable<z.ZodString>;
5266
+ estimatedDurationMinutes: z.ZodNullable<z.ZodNumber>;
5630
5267
  isActive: z.ZodBoolean;
5631
5268
  exercises: z.ZodArray<z.ZodObject<{
5632
5269
  exerciseToSplitId: z.ZodInt;
@@ -5699,6 +5336,7 @@ declare const workoutSplitQueryDtoSchema: z.ZodObject<{
5699
5336
  orderIndex: z.ZodInt;
5700
5337
  createdAt: z.ZodString;
5701
5338
  muscleGroup: z.ZodNullable<z.ZodString>;
5339
+ estimatedDurationMinutes: z.ZodNullable<z.ZodNumber>;
5702
5340
  isActive: z.ZodBoolean;
5703
5341
  exercises: z.ZodArray<z.ZodObject<{
5704
5342
  exerciseToSplitId: z.ZodInt;
@@ -5729,6 +5367,7 @@ declare const wholeUserWorkoutPlanQueryDtoSchema: z.ZodObject<{
5729
5367
  orderIndex: z.ZodInt;
5730
5368
  createdAt: z.ZodString;
5731
5369
  muscleGroup: z.ZodNullable<z.ZodString>;
5370
+ estimatedDurationMinutes: z.ZodNullable<z.ZodNumber>;
5732
5371
  isActive: z.ZodBoolean;
5733
5372
  exercises: z.ZodArray<z.ZodObject<{
5734
5373
  exerciseToSplitId: z.ZodInt;
@@ -5773,140 +5412,62 @@ declare const getExerciseTrackingRequestSchema: z.ZodObject<{
5773
5412
  }, z.core.$strip>;
5774
5413
  }, z.core.$strip>;
5775
5414
  declare const getExerciseTrackingResponseSchema: z.ZodObject<{
5776
- byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5777
- exerciseTracking: z.ZodObject<{
5778
- exerciseTrackingId: z.ZodInt;
5779
- sets: z.ZodArray<z.ZodObject<{
5780
- setIndex: z.ZodInt;
5781
- weight: z.ZodNumber;
5782
- reps: z.ZodInt;
5783
- }, z.core.$strip>>;
5784
- notes: z.ZodNullable<z.ZodString>;
5785
- exerciseAssignment: z.ZodObject<{
5786
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
5787
- orderIndex: z.ZodNullable<z.ZodInt>;
5788
- exerciseId: z.ZodInt;
5789
- workoutSplitId: z.ZodInt;
5790
- workoutSplitName: z.ZodString;
5791
- exerciseName: z.ZodString;
5792
- targetMuscle: z.ZodString;
5793
- specificTargetMuscle: z.ZodString;
5415
+ byDate: z.ZodRecord<z.ZodString, z.ZodObject<{
5416
+ durationMins: z.ZodNumber;
5417
+ exerciseTracked: z.ZodArray<z.ZodObject<{
5418
+ exerciseTracking: z.ZodObject<{
5419
+ exerciseTrackingId: z.ZodInt;
5420
+ sets: z.ZodArray<z.ZodObject<{
5421
+ setIndex: z.ZodInt;
5422
+ weight: z.ZodNumber;
5423
+ reps: z.ZodInt;
5424
+ }, z.core.$strip>>;
5425
+ notes: z.ZodNullable<z.ZodString>;
5426
+ exerciseAssignment: z.ZodObject<{
5427
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
5428
+ orderIndex: z.ZodNullable<z.ZodInt>;
5429
+ exerciseId: z.ZodInt;
5430
+ workoutSplitId: z.ZodInt;
5431
+ workoutSplitName: z.ZodString;
5432
+ exerciseName: z.ZodString;
5433
+ targetMuscle: z.ZodString;
5434
+ specificTargetMuscle: z.ZodString;
5435
+ }, z.core.$strip>;
5794
5436
  }, z.core.$strip>;
5795
- }, z.core.$strip>;
5796
- }, z.core.$strip>>>;
5797
- byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5798
- exerciseTracking: z.ZodObject<{
5799
- exerciseTrackingId: z.ZodInt;
5800
- sets: z.ZodArray<z.ZodObject<{
5801
- setIndex: z.ZodInt;
5802
- weight: z.ZodNumber;
5803
- reps: z.ZodInt;
5804
- }, z.core.$strip>>;
5805
- notes: z.ZodNullable<z.ZodString>;
5806
- exerciseAssignment: z.ZodObject<{
5807
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
5808
- orderIndex: z.ZodNullable<z.ZodInt>;
5809
- exerciseId: z.ZodInt;
5810
- workoutSplitId: z.ZodInt;
5811
- workoutSplitName: z.ZodString;
5812
- exerciseName: z.ZodString;
5813
- targetMuscle: z.ZodString;
5814
- specificTargetMuscle: z.ZodString;
5815
- }, z.core.$strip>;
5816
- }, z.core.$strip>;
5817
- }, z.core.$strip>>>;
5818
- bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5819
- exerciseTracking: z.ZodObject<{
5820
- exerciseTrackingId: z.ZodInt;
5821
- sets: z.ZodArray<z.ZodObject<{
5822
- setIndex: z.ZodInt;
5823
- weight: z.ZodNumber;
5824
- reps: z.ZodInt;
5825
- }, z.core.$strip>>;
5826
- notes: z.ZodNullable<z.ZodString>;
5827
- exerciseAssignment: z.ZodObject<{
5828
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
5829
- orderIndex: z.ZodNullable<z.ZodInt>;
5830
- exerciseId: z.ZodInt;
5831
- workoutSplitId: z.ZodInt;
5832
- workoutSplitName: z.ZodString;
5833
- exerciseName: z.ZodString;
5834
- targetMuscle: z.ZodString;
5835
- specificTargetMuscle: z.ZodString;
5836
- }, z.core.$strip>;
5837
- }, z.core.$strip>;
5838
- }, z.core.$strip>>>;
5839
- }, z.core.$strip>;
5840
- declare const getExerciseTrackingContract: {
5841
- request: z.ZodObject<{
5842
- query: z.ZodObject<{
5843
- tz: z.ZodOptional<z.ZodString>;
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>;
5844
5444
  }, z.core.$strip>;
5845
5445
  }, z.core.$strip>;
5846
5446
  response: z.ZodObject<{
5847
- byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5848
- exerciseTracking: z.ZodObject<{
5849
- exerciseTrackingId: z.ZodInt;
5850
- sets: z.ZodArray<z.ZodObject<{
5851
- setIndex: z.ZodInt;
5852
- weight: z.ZodNumber;
5853
- reps: z.ZodInt;
5854
- }, z.core.$strip>>;
5855
- notes: z.ZodNullable<z.ZodString>;
5856
- exerciseAssignment: z.ZodObject<{
5857
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
5858
- orderIndex: z.ZodNullable<z.ZodInt>;
5859
- exerciseId: z.ZodInt;
5860
- workoutSplitId: z.ZodInt;
5861
- workoutSplitName: z.ZodString;
5862
- exerciseName: z.ZodString;
5863
- targetMuscle: z.ZodString;
5864
- specificTargetMuscle: z.ZodString;
5865
- }, z.core.$strip>;
5866
- }, z.core.$strip>;
5867
- }, z.core.$strip>>>;
5868
- byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5869
- exerciseTracking: z.ZodObject<{
5870
- exerciseTrackingId: z.ZodInt;
5871
- sets: z.ZodArray<z.ZodObject<{
5872
- setIndex: z.ZodInt;
5873
- weight: z.ZodNumber;
5874
- reps: z.ZodInt;
5875
- }, z.core.$strip>>;
5876
- notes: z.ZodNullable<z.ZodString>;
5877
- exerciseAssignment: z.ZodObject<{
5878
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
5879
- orderIndex: z.ZodNullable<z.ZodInt>;
5880
- exerciseId: z.ZodInt;
5881
- workoutSplitId: z.ZodInt;
5882
- workoutSplitName: z.ZodString;
5883
- exerciseName: z.ZodString;
5884
- targetMuscle: z.ZodString;
5885
- specificTargetMuscle: z.ZodString;
5886
- }, z.core.$strip>;
5887
- }, z.core.$strip>;
5888
- }, z.core.$strip>>>;
5889
- bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5890
- exerciseTracking: z.ZodObject<{
5891
- exerciseTrackingId: z.ZodInt;
5892
- sets: z.ZodArray<z.ZodObject<{
5893
- setIndex: z.ZodInt;
5894
- weight: z.ZodNumber;
5895
- reps: z.ZodInt;
5896
- }, z.core.$strip>>;
5897
- notes: z.ZodNullable<z.ZodString>;
5898
- exerciseAssignment: z.ZodObject<{
5899
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
5900
- orderIndex: z.ZodNullable<z.ZodInt>;
5901
- exerciseId: z.ZodInt;
5902
- workoutSplitId: z.ZodInt;
5903
- workoutSplitName: z.ZodString;
5904
- exerciseName: z.ZodString;
5905
- targetMuscle: z.ZodString;
5906
- specificTargetMuscle: z.ZodString;
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>;
5907
5468
  }, z.core.$strip>;
5908
- }, z.core.$strip>;
5909
- }, z.core.$strip>>>;
5469
+ }, z.core.$strip>>;
5470
+ }, z.core.$strip>>;
5910
5471
  }, z.core.$strip>;
5911
5472
  };
5912
5473
  declare const getExerciseTrackingStatsResponseSchema: z.ZodObject<{
@@ -6026,69 +5587,30 @@ declare const finishUserWorkoutResponseSchema: z.ZodObject<{
6026
5587
  }, z.core.$strip>>;
6027
5588
  }, z.core.$strip>;
6028
5589
  trackingMaps: z.ZodObject<{
6029
- byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6030
- exerciseTracking: z.ZodObject<{
6031
- exerciseTrackingId: z.ZodInt;
6032
- sets: z.ZodArray<z.ZodObject<{
6033
- setIndex: z.ZodInt;
6034
- weight: z.ZodNumber;
6035
- reps: z.ZodInt;
6036
- }, z.core.$strip>>;
6037
- notes: z.ZodNullable<z.ZodString>;
6038
- exerciseAssignment: z.ZodObject<{
6039
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6040
- orderIndex: z.ZodNullable<z.ZodInt>;
6041
- exerciseId: z.ZodInt;
6042
- workoutSplitId: z.ZodInt;
6043
- workoutSplitName: z.ZodString;
6044
- exerciseName: z.ZodString;
6045
- targetMuscle: z.ZodString;
6046
- specificTargetMuscle: z.ZodString;
6047
- }, z.core.$strip>;
6048
- }, z.core.$strip>;
6049
- }, z.core.$strip>>>;
6050
- byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6051
- exerciseTracking: z.ZodObject<{
6052
- exerciseTrackingId: z.ZodInt;
6053
- sets: z.ZodArray<z.ZodObject<{
6054
- setIndex: z.ZodInt;
6055
- weight: z.ZodNumber;
6056
- reps: z.ZodInt;
6057
- }, z.core.$strip>>;
6058
- notes: z.ZodNullable<z.ZodString>;
6059
- exerciseAssignment: z.ZodObject<{
6060
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6061
- orderIndex: z.ZodNullable<z.ZodInt>;
6062
- exerciseId: z.ZodInt;
6063
- workoutSplitId: z.ZodInt;
6064
- workoutSplitName: z.ZodString;
6065
- exerciseName: z.ZodString;
6066
- targetMuscle: z.ZodString;
6067
- specificTargetMuscle: z.ZodString;
6068
- }, z.core.$strip>;
6069
- }, z.core.$strip>;
6070
- }, z.core.$strip>>>;
6071
- bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6072
- exerciseTracking: z.ZodObject<{
6073
- exerciseTrackingId: z.ZodInt;
6074
- sets: z.ZodArray<z.ZodObject<{
6075
- setIndex: z.ZodInt;
6076
- weight: z.ZodNumber;
6077
- reps: z.ZodInt;
6078
- }, z.core.$strip>>;
6079
- notes: z.ZodNullable<z.ZodString>;
6080
- exerciseAssignment: z.ZodObject<{
6081
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6082
- orderIndex: z.ZodNullable<z.ZodInt>;
6083
- exerciseId: z.ZodInt;
6084
- workoutSplitId: z.ZodInt;
6085
- workoutSplitName: z.ZodString;
6086
- exerciseName: z.ZodString;
6087
- targetMuscle: z.ZodString;
6088
- 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>;
6089
5611
  }, z.core.$strip>;
6090
- }, z.core.$strip>;
6091
- }, z.core.$strip>>>;
5612
+ }, z.core.$strip>>;
5613
+ }, z.core.$strip>>;
6092
5614
  }, z.core.$strip>;
6093
5615
  }, z.core.$strip>;
6094
5616
  declare const finishUserWorkoutContract: {
@@ -6142,69 +5664,30 @@ declare const finishUserWorkoutContract: {
6142
5664
  }, z.core.$strip>>;
6143
5665
  }, z.core.$strip>;
6144
5666
  trackingMaps: z.ZodObject<{
6145
- byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6146
- exerciseTracking: z.ZodObject<{
6147
- exerciseTrackingId: z.ZodInt;
6148
- sets: z.ZodArray<z.ZodObject<{
6149
- setIndex: z.ZodInt;
6150
- weight: z.ZodNumber;
6151
- reps: z.ZodInt;
6152
- }, z.core.$strip>>;
6153
- notes: z.ZodNullable<z.ZodString>;
6154
- exerciseAssignment: z.ZodObject<{
6155
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6156
- orderIndex: z.ZodNullable<z.ZodInt>;
6157
- exerciseId: z.ZodInt;
6158
- workoutSplitId: z.ZodInt;
6159
- workoutSplitName: z.ZodString;
6160
- exerciseName: z.ZodString;
6161
- targetMuscle: z.ZodString;
6162
- specificTargetMuscle: z.ZodString;
6163
- }, z.core.$strip>;
6164
- }, z.core.$strip>;
6165
- }, z.core.$strip>>>;
6166
- byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6167
- exerciseTracking: z.ZodObject<{
6168
- exerciseTrackingId: z.ZodInt;
6169
- sets: z.ZodArray<z.ZodObject<{
6170
- setIndex: z.ZodInt;
6171
- weight: z.ZodNumber;
6172
- reps: z.ZodInt;
6173
- }, z.core.$strip>>;
6174
- notes: z.ZodNullable<z.ZodString>;
6175
- exerciseAssignment: z.ZodObject<{
6176
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6177
- orderIndex: z.ZodNullable<z.ZodInt>;
6178
- exerciseId: z.ZodInt;
6179
- workoutSplitId: z.ZodInt;
6180
- workoutSplitName: z.ZodString;
6181
- exerciseName: z.ZodString;
6182
- targetMuscle: z.ZodString;
6183
- 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>;
6184
5688
  }, z.core.$strip>;
6185
- }, z.core.$strip>;
6186
- }, z.core.$strip>>>;
6187
- bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6188
- exerciseTracking: z.ZodObject<{
6189
- exerciseTrackingId: z.ZodInt;
6190
- sets: z.ZodArray<z.ZodObject<{
6191
- setIndex: z.ZodInt;
6192
- weight: z.ZodNumber;
6193
- reps: z.ZodInt;
6194
- }, z.core.$strip>>;
6195
- notes: z.ZodNullable<z.ZodString>;
6196
- exerciseAssignment: z.ZodObject<{
6197
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6198
- orderIndex: z.ZodNullable<z.ZodInt>;
6199
- exerciseId: z.ZodInt;
6200
- workoutSplitId: z.ZodInt;
6201
- workoutSplitName: z.ZodString;
6202
- exerciseName: z.ZodString;
6203
- targetMuscle: z.ZodString;
6204
- specificTargetMuscle: z.ZodString;
6205
- }, z.core.$strip>;
6206
- }, z.core.$strip>;
6207
- }, z.core.$strip>>>;
5689
+ }, z.core.$strip>>;
5690
+ }, z.core.$strip>>;
6208
5691
  }, z.core.$strip>;
6209
5692
  }, z.core.$strip>;
6210
5693
  };
@@ -6345,69 +5828,30 @@ declare const exerciseTrackingStatsQueryDtoSchema: z.ZodObject<{
6345
5828
  }, z.core.$strip>>;
6346
5829
  }, z.core.$strip>;
6347
5830
  declare const exerciseTrackingMapsQueryDtoSchema: z.ZodObject<{
6348
- byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6349
- exerciseTracking: z.ZodObject<{
6350
- exerciseTrackingId: z.ZodInt;
6351
- sets: z.ZodArray<z.ZodObject<{
6352
- setIndex: z.ZodInt;
6353
- weight: z.ZodNumber;
6354
- reps: z.ZodInt;
6355
- }, z.core.$strip>>;
6356
- notes: z.ZodNullable<z.ZodString>;
6357
- exerciseAssignment: z.ZodObject<{
6358
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6359
- orderIndex: z.ZodNullable<z.ZodInt>;
6360
- exerciseId: z.ZodInt;
6361
- workoutSplitId: z.ZodInt;
6362
- workoutSplitName: z.ZodString;
6363
- exerciseName: z.ZodString;
6364
- targetMuscle: z.ZodString;
6365
- specificTargetMuscle: z.ZodString;
6366
- }, z.core.$strip>;
6367
- }, z.core.$strip>;
6368
- }, z.core.$strip>>>;
6369
- byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6370
- exerciseTracking: z.ZodObject<{
6371
- exerciseTrackingId: z.ZodInt;
6372
- sets: z.ZodArray<z.ZodObject<{
6373
- setIndex: z.ZodInt;
6374
- weight: z.ZodNumber;
6375
- reps: z.ZodInt;
6376
- }, z.core.$strip>>;
6377
- notes: z.ZodNullable<z.ZodString>;
6378
- exerciseAssignment: z.ZodObject<{
6379
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6380
- orderIndex: z.ZodNullable<z.ZodInt>;
6381
- exerciseId: z.ZodInt;
6382
- workoutSplitId: z.ZodInt;
6383
- workoutSplitName: z.ZodString;
6384
- exerciseName: z.ZodString;
6385
- targetMuscle: z.ZodString;
6386
- specificTargetMuscle: z.ZodString;
6387
- }, z.core.$strip>;
6388
- }, z.core.$strip>;
6389
- }, z.core.$strip>>>;
6390
- bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6391
- exerciseTracking: z.ZodObject<{
6392
- exerciseTrackingId: z.ZodInt;
6393
- sets: z.ZodArray<z.ZodObject<{
6394
- setIndex: z.ZodInt;
6395
- weight: z.ZodNumber;
6396
- reps: z.ZodInt;
6397
- }, z.core.$strip>>;
6398
- notes: z.ZodNullable<z.ZodString>;
6399
- exerciseAssignment: z.ZodObject<{
6400
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6401
- orderIndex: z.ZodNullable<z.ZodInt>;
6402
- exerciseId: z.ZodInt;
6403
- workoutSplitId: z.ZodInt;
6404
- workoutSplitName: z.ZodString;
6405
- exerciseName: z.ZodString;
6406
- targetMuscle: z.ZodString;
6407
- 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>;
6408
5852
  }, z.core.$strip>;
6409
- }, z.core.$strip>;
6410
- }, z.core.$strip>>>;
5853
+ }, z.core.$strip>>;
5854
+ }, z.core.$strip>>;
6411
5855
  }, z.core.$strip>;
6412
5856
  declare const exerciseTrackingAndStatsQueryDtoSchema: z.ZodObject<{
6413
5857
  trackingStats: z.ZodObject<{
@@ -6441,69 +5885,30 @@ declare const exerciseTrackingAndStatsQueryDtoSchema: z.ZodObject<{
6441
5885
  }, z.core.$strip>>;
6442
5886
  }, z.core.$strip>;
6443
5887
  trackingMaps: z.ZodObject<{
6444
- byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6445
- exerciseTracking: z.ZodObject<{
6446
- exerciseTrackingId: z.ZodInt;
6447
- sets: z.ZodArray<z.ZodObject<{
6448
- setIndex: z.ZodInt;
6449
- weight: z.ZodNumber;
6450
- reps: z.ZodInt;
6451
- }, z.core.$strip>>;
6452
- notes: z.ZodNullable<z.ZodString>;
6453
- exerciseAssignment: z.ZodObject<{
6454
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6455
- orderIndex: z.ZodNullable<z.ZodInt>;
6456
- exerciseId: z.ZodInt;
6457
- workoutSplitId: z.ZodInt;
6458
- workoutSplitName: z.ZodString;
6459
- exerciseName: z.ZodString;
6460
- targetMuscle: z.ZodString;
6461
- specificTargetMuscle: z.ZodString;
6462
- }, z.core.$strip>;
6463
- }, z.core.$strip>;
6464
- }, z.core.$strip>>>;
6465
- byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6466
- exerciseTracking: z.ZodObject<{
6467
- exerciseTrackingId: z.ZodInt;
6468
- sets: z.ZodArray<z.ZodObject<{
6469
- setIndex: z.ZodInt;
6470
- weight: z.ZodNumber;
6471
- reps: z.ZodInt;
6472
- }, z.core.$strip>>;
6473
- notes: z.ZodNullable<z.ZodString>;
6474
- exerciseAssignment: z.ZodObject<{
6475
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6476
- orderIndex: z.ZodNullable<z.ZodInt>;
6477
- exerciseId: z.ZodInt;
6478
- workoutSplitId: z.ZodInt;
6479
- workoutSplitName: z.ZodString;
6480
- exerciseName: z.ZodString;
6481
- targetMuscle: z.ZodString;
6482
- specificTargetMuscle: z.ZodString;
6483
- }, z.core.$strip>;
6484
- }, z.core.$strip>;
6485
- }, z.core.$strip>>>;
6486
- bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6487
- exerciseTracking: z.ZodObject<{
6488
- exerciseTrackingId: z.ZodInt;
6489
- sets: z.ZodArray<z.ZodObject<{
6490
- setIndex: z.ZodInt;
6491
- weight: z.ZodNumber;
6492
- reps: z.ZodInt;
6493
- }, z.core.$strip>>;
6494
- notes: z.ZodNullable<z.ZodString>;
6495
- exerciseAssignment: z.ZodObject<{
6496
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6497
- orderIndex: z.ZodNullable<z.ZodInt>;
6498
- exerciseId: z.ZodInt;
6499
- workoutSplitId: z.ZodInt;
6500
- workoutSplitName: z.ZodString;
6501
- exerciseName: z.ZodString;
6502
- targetMuscle: z.ZodString;
6503
- 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>;
6504
5909
  }, z.core.$strip>;
6505
- }, z.core.$strip>;
6506
- }, z.core.$strip>>>;
5910
+ }, z.core.$strip>>;
5911
+ }, z.core.$strip>>;
6507
5912
  }, z.core.$strip>;
6508
5913
  }, z.core.$strip>;
6509
5914
  /** SQL row wrapping the complete tracking aggregate under `data`. */
@@ -6540,69 +5945,30 @@ declare const exerciseTrackingAndStatsRowQueryDtoSchema: z.ZodObject<{
6540
5945
  }, z.core.$strip>>;
6541
5946
  }, z.core.$strip>;
6542
5947
  trackingMaps: z.ZodObject<{
6543
- byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6544
- exerciseTracking: z.ZodObject<{
6545
- exerciseTrackingId: z.ZodInt;
6546
- sets: z.ZodArray<z.ZodObject<{
6547
- setIndex: z.ZodInt;
6548
- weight: z.ZodNumber;
6549
- reps: z.ZodInt;
6550
- }, z.core.$strip>>;
6551
- notes: z.ZodNullable<z.ZodString>;
6552
- exerciseAssignment: z.ZodObject<{
6553
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6554
- orderIndex: z.ZodNullable<z.ZodInt>;
6555
- exerciseId: z.ZodInt;
6556
- workoutSplitId: z.ZodInt;
6557
- workoutSplitName: z.ZodString;
6558
- exerciseName: z.ZodString;
6559
- targetMuscle: z.ZodString;
6560
- specificTargetMuscle: z.ZodString;
6561
- }, z.core.$strip>;
6562
- }, z.core.$strip>;
6563
- }, z.core.$strip>>>;
6564
- byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6565
- exerciseTracking: z.ZodObject<{
6566
- exerciseTrackingId: z.ZodInt;
6567
- sets: z.ZodArray<z.ZodObject<{
6568
- setIndex: z.ZodInt;
6569
- weight: z.ZodNumber;
6570
- reps: z.ZodInt;
6571
- }, z.core.$strip>>;
6572
- notes: z.ZodNullable<z.ZodString>;
6573
- exerciseAssignment: z.ZodObject<{
6574
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6575
- orderIndex: z.ZodNullable<z.ZodInt>;
6576
- exerciseId: z.ZodInt;
6577
- workoutSplitId: z.ZodInt;
6578
- workoutSplitName: z.ZodString;
6579
- exerciseName: z.ZodString;
6580
- targetMuscle: z.ZodString;
6581
- specificTargetMuscle: z.ZodString;
6582
- }, z.core.$strip>;
6583
- }, z.core.$strip>;
6584
- }, z.core.$strip>>>;
6585
- bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6586
- exerciseTracking: z.ZodObject<{
6587
- exerciseTrackingId: z.ZodInt;
6588
- sets: z.ZodArray<z.ZodObject<{
6589
- setIndex: z.ZodInt;
6590
- weight: z.ZodNumber;
6591
- reps: z.ZodInt;
6592
- }, z.core.$strip>>;
6593
- notes: z.ZodNullable<z.ZodString>;
6594
- exerciseAssignment: z.ZodObject<{
6595
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6596
- orderIndex: z.ZodNullable<z.ZodInt>;
6597
- exerciseId: z.ZodInt;
6598
- workoutSplitId: z.ZodInt;
6599
- workoutSplitName: z.ZodString;
6600
- exerciseName: z.ZodString;
6601
- targetMuscle: z.ZodString;
6602
- 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>;
6603
5969
  }, z.core.$strip>;
6604
- }, z.core.$strip>;
6605
- }, z.core.$strip>>>;
5970
+ }, z.core.$strip>>;
5971
+ }, z.core.$strip>>;
6606
5972
  }, z.core.$strip>;
6607
5973
  }, z.core.$strip>;
6608
5974
  }, z.core.$strip>;
@@ -6640,69 +6006,30 @@ declare const exerciseTrackingStatsRowQueryDtoSchema: z.ZodObject<{
6640
6006
  }, z.core.$strip>;
6641
6007
  declare const exerciseTrackingMapsRowQueryDtoSchema: z.ZodObject<{
6642
6008
  data: z.ZodObject<{
6643
- byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6644
- exerciseTracking: z.ZodObject<{
6645
- exerciseTrackingId: z.ZodInt;
6646
- sets: z.ZodArray<z.ZodObject<{
6647
- setIndex: z.ZodInt;
6648
- weight: z.ZodNumber;
6649
- reps: z.ZodInt;
6650
- }, z.core.$strip>>;
6651
- notes: z.ZodNullable<z.ZodString>;
6652
- exerciseAssignment: z.ZodObject<{
6653
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6654
- orderIndex: z.ZodNullable<z.ZodInt>;
6655
- exerciseId: z.ZodInt;
6656
- workoutSplitId: z.ZodInt;
6657
- workoutSplitName: z.ZodString;
6658
- exerciseName: z.ZodString;
6659
- targetMuscle: z.ZodString;
6660
- specificTargetMuscle: z.ZodString;
6661
- }, z.core.$strip>;
6662
- }, z.core.$strip>;
6663
- }, z.core.$strip>>>;
6664
- byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6665
- exerciseTracking: z.ZodObject<{
6666
- exerciseTrackingId: z.ZodInt;
6667
- sets: z.ZodArray<z.ZodObject<{
6668
- setIndex: z.ZodInt;
6669
- weight: z.ZodNumber;
6670
- reps: z.ZodInt;
6671
- }, z.core.$strip>>;
6672
- notes: z.ZodNullable<z.ZodString>;
6673
- exerciseAssignment: z.ZodObject<{
6674
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6675
- orderIndex: z.ZodNullable<z.ZodInt>;
6676
- exerciseId: z.ZodInt;
6677
- workoutSplitId: z.ZodInt;
6678
- workoutSplitName: z.ZodString;
6679
- exerciseName: z.ZodString;
6680
- targetMuscle: z.ZodString;
6681
- specificTargetMuscle: z.ZodString;
6682
- }, z.core.$strip>;
6683
- }, z.core.$strip>;
6684
- }, z.core.$strip>>>;
6685
- bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6686
- exerciseTracking: z.ZodObject<{
6687
- exerciseTrackingId: z.ZodInt;
6688
- sets: z.ZodArray<z.ZodObject<{
6689
- setIndex: z.ZodInt;
6690
- weight: z.ZodNumber;
6691
- reps: z.ZodInt;
6692
- }, z.core.$strip>>;
6693
- notes: z.ZodNullable<z.ZodString>;
6694
- exerciseAssignment: z.ZodObject<{
6695
- exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6696
- orderIndex: z.ZodNullable<z.ZodInt>;
6697
- exerciseId: z.ZodInt;
6698
- workoutSplitId: z.ZodInt;
6699
- workoutSplitName: z.ZodString;
6700
- exerciseName: z.ZodString;
6701
- targetMuscle: z.ZodString;
6702
- 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>;
6703
6030
  }, z.core.$strip>;
6704
- }, z.core.$strip>;
6705
- }, z.core.$strip>>>;
6031
+ }, z.core.$strip>>;
6032
+ }, z.core.$strip>>;
6706
6033
  }, z.core.$strip>;
6707
6034
  }, z.core.$strip>;
6708
6035
  /** SQL row resolving the workout split for an exercise assignment. */
@@ -6734,4 +6061,4 @@ type WorkoutSummaryIdQueryDto = z.infer<typeof workoutSummaryIdQueryDtoSchema>;
6734
6061
  type ExerciseTrackingIdQueryDto = z.infer<typeof exerciseTrackingIdQueryDtoSchema>;
6735
6062
  type FinishedWorkoutEntryQueryDto = z.infer<typeof finishedWorkoutEntryQueryDtoSchema>;
6736
6063
 
6737
- export { type AccessTokenPayloadDto, type AddAerobicInputQueryDto, type AddUserAerobicsBody, type AddWorkoutBody, type AddWorkoutResponse, type AdherenceExerciseStatsQueryDto, type AerobicTrackingRow, type AerobicsDailyRecordQueryDto, type AerobicsWeeklyRecordQueryDto, type AllUserMessageQueryDto, type AnalyzeVideoPayloadDto, type AnalyzeVideoResultPayloadDto, type AppleOAuthBody, type AppleTokenVerificationResultDto, type AuthenticatedUserForUpdateQueryDto, type BodyOf, type BootstrapRequestQuery, type BootstrapResponse, type ChangeEmailAndVerifyBody, type ChangeEmailTokenPayloadDto, type CheckUserVerifyQuery, type Contract, type CreateUserBody, type CreateUserResponse, type CreatedUserQueryDto, type CreatedUserRawQueryDto, type CreatedUserRowQueryDto, type DeleteMessageParams, type DeleteMessageResponse, type DeleteUserProfilePicBody, type DeletedMessageQueryDto, type EmailVerifyPayloadDto, type EnqueueAnalyzeVideoParamsDto, type ExerciseAssignmentIdQueryDto, type ExerciseInPlanQueryDto, type ExerciseMapByMuscleRowQueryDto, type ExerciseMetadataQueryDto, type ExerciseRow, type ExerciseToWorkoutSplitRow, type ExerciseTrackingAnalysisQueryDto, type ExerciseTrackingAndStatsQueryDto, type ExerciseTrackingAndStatsRowQueryDto, type ExerciseTrackingIdQueryDto, type ExerciseTrackingMapsQueryDto, type ExerciseTrackingMapsRowQueryDto, type ExerciseTrackingPrMaxQueryDto, type ExerciseTrackingRow, type ExerciseTrackingStatsQueryDto, type ExerciseTrackingStatsRowQueryDto, type ExercisesMapByMuscleQueryDto, type FinishUserWorkoutBody, type FinishUserWorkoutResponse, type FinishedWorkoutEntryQueryDto, type ForgotPasswordPayloadDto, type GenerateTicketBody, type GenerateTicketResponse, type GetAllExercisesExerciseQueryDto, type GetAllExercisesResponse, type GetAllUserMessagesQuery, type GetAllUserMessagesResponse, type GetAnalyticsResponse, type GetAuthenticatedUserByIdResponse, type GetExerciseTrackingQuery, type GetExerciseTrackingResponse, type GetExerciseTrackingStatsResponse, type GetPresignedUrlFromS3Body, type GetPresignedUrlFromS3Response, type GetUserAerobicsQuery, type GetWholeUserWorkoutPlanQuery, type GetWholeUserWorkoutPlanResponse, type GoalAdherenceQueryDto, type GoalAdherenceRowQueryDto, type GoogleOAuthBody, type GoogleTokenVerificationResultDto, type LastLoginQueryDto, type LoginRequestBody, type LoginResponse, type LogoutResponse, type MarkMessageAsReadParams, type MarkMessageAsReadResponse, type MessageAfterSendQueryDto, type MessageAsReadQueryDto, type MessageRow, type OAuthCreatedUserRowQueryDto, type OAuthLinkQueryDto, type OAuthLinkRowQueryDto, type OAuthLoginResponse, type OAuthLookupQueryDto, type OAuthLookupRawQueryDto, type OAuthLookupRowQueryDto, type ParamsOf, type QueryOf, type RefreshTokenResponse, type RequestOf, type RequestSchema, type ResetPasswordBody, type ResetPasswordQuery, type ResetPasswordResponse, type ResponseOf, type SaveUserPushTokenBody, type SaveWorkoutSplitInputQueryDto, type SaveWorkoutSplitPayloadQueryDto, type SendChangePassEmailBody, type SendVerificationMailBody, type SetProfilePicAndUpdateDBResponse, type SquatRepetitionDto, type TokenVersionQueryDto, type TrackingByDateItemQueryDto, type TrackingBySplitNameItemQueryDto, type TrackingMapItemQueryDto, type UpdateAuthenticatedUserResponse, type UpdateUserBody, type UserAerobicsQueryDto, type UserAerobicsResponse, type UserAerobicsRowQueryDto, type UserAfterBumpQueryDto, type UserByIdentifierQueryDto, type UserByIdentifierRawQueryDto, type UserByIdentifierRowQueryDto, type UserByUsernameRawQueryDto, type UserByUsernameRowQueryDto, type UserConflictQueryDto, type UserDataQueryDto, type UserDataResponse, type UserDataRowQueryDto, type UserExistsQueryDto, type UserInsert, type UserMessageIdentityQueryDto, type UserProfilePicQueryDto, type UserRow, type UserToHourlyReminderQueryDto, type UserWithNotificationsEnabledQueryDto, type VerifyUserAccountQuery, type WeeklyDataQueryDto, type WholeUserWorkoutPlanQueryDto, type WorkoutExerciseInputQueryDto, type WorkoutPlanIdQueryDto, type WorkoutPlanRow, type WorkoutRmRecordQueryDto, type WorkoutRmsQueryDto, type WorkoutRmsRowQueryDto, type WorkoutSplitIdQueryDto, type WorkoutSplitLookupQueryDto, type WorkoutSplitQueryDto, type WorkoutSplitRow, type WorkoutSummaryIdQueryDto, type WorkoutSummaryRow, accessTokenPayloadDtoSchema, addAerobicInputQueryDtoSchema, addAerobicsRequestSchema, addUserAerobicsContract, addWorkoutContract, addWorkoutRequestSchema, addWorkoutResponseSchema, adherenceExerciseStatsQueryDtoSchema, aerobicTrackingDbSchema, aerobicsDailyRecordQueryDtoSchema, aerobicsWeeklyRecordQueryDtoSchema, allUserMessageQueryDtoSchema, analyzeVideoPayloadDtoSchema, analyzeVideoResultPayloadDtoSchema, appleOAuthContract, appleOAuthRequestSchema, appleTokenVerificationResultDtoSchema, authenticatedUserForUpdateQueryDtoSchema, bootstrapContract, bootstrapRequestSchema, bootstrapResponseSchema, changeEmailAndVerifyContract, changeEmailAndVerifyRequestSchema, changeEmailTokenPayloadDtoSchema, checkUserVerifyContract, checkUserVerifyRequestSchema, createUserContract, createUserRequestSchema, createUserResponseSchema, createUserUserSchema, createdUserQueryDtoSchema, createdUserRawQueryDtoSchema, createdUserRowQueryDtoSchema, deleteMessageContract, deleteMessageRequestSchema, deleteMessageResponseSchema, deleteProfilePicRequestSchema, deleteUserProfilePicContract, deletedMessageQueryDtoSchema, emailVerifyPayloadDtoSchema, enqueueAnalyzeVideoParamsDtoSchema, exerciseAssignmentIdQueryDtoSchema, exerciseDbSchema, exerciseInPlanQueryDtoSchema, exerciseMapByMuscleRowQueryDtoSchema, exerciseMetadataQueryDtoSchema, exerciseToWorkoutSplitDbSchema, exerciseToWorkoutSplitSetExpandedViewDbSchema, exerciseTrackingAnalysisQueryDtoSchema, exerciseTrackingAndStatsQueryDtoSchema, exerciseTrackingAndStatsRowQueryDtoSchema, exerciseTrackingDbSchema, exerciseTrackingIdQueryDtoSchema, exerciseTrackingMapsQueryDtoSchema, exerciseTrackingMapsRowQueryDtoSchema, exerciseTrackingPrMaxQueryDtoSchema, exerciseTrackingSetExpandedViewDbSchema, exerciseTrackingStatsQueryDtoSchema, exerciseTrackingStatsRowQueryDtoSchema, exercisesMapByMuscleQueryDtoSchema, finishUserWorkoutContract, finishUserWorkoutResponseSchema, finishWorkoutRequestSchema, finishedWorkoutEntryQueryDtoSchema, forgotPasswordPayloadDtoSchema, generateTicketContract, generateTicketRequestSchema, generateTicketResponseSchema, getAerobicsRequestSchema, getAllExercisesContract, getAllExercisesExerciseQueryDtoSchema, getAllExercisesResponseSchema, getAllMessagesRequestSchema, getAllUserMessagesContract, getAllUserMessagesResponseSchema, getAnalyticsContract, getAnalyticsResponseSchema, getAuthenticatedUserByIdContract, getAuthenticatedUserByIdResponseSchema, getExerciseTrackingContract, getExerciseTrackingRequestSchema, getExerciseTrackingResponseSchema, getExerciseTrackingStatsContract, getExerciseTrackingStatsResponseSchema, getPresignedUrlFromS3Contract, getPresignedUrlFromS3RequestSchema, getPresignedUrlFromS3ResponseSchema, getUserAerobicsContract, getWholeUserWorkoutPlanContract, getWholeUserWorkoutPlanResponseSchema, getWholeWorkoutPlanRequestSchema, goalAdherenceQueryDtoSchema, goalAdherenceRowQueryDtoSchema, googleOAuthContract, googleOAuthRequestSchema, googleTokenVerificationResultDtoSchema, lastLoginQueryDtoSchema, loginContract, loginRequestSchema, loginResponseSchema, logoutContract, logoutResponseSchema, markMessageAsReadContract, markMessageAsReadRequestSchema, markMessageAsReadResponseSchema, messageAfterSendQueryDtoSchema, messageAsReadQueryDtoSchema, messageDbSchema, oAuthCreatedUserRowQueryDtoSchema, oAuthLinkQueryDtoSchema, oAuthLinkRowQueryDtoSchema, oAuthLoginContract, oAuthLoginResponseSchema, oAuthLookupQueryDtoSchema, oAuthLookupRawQueryDtoSchema, oAuthLookupRowQueryDtoSchema, oauthAccountDbSchema, proceedLoginResponseSchema, prsViewDbSchema, refreshTokenContract, refreshTokenResponseSchema, resetPasswordContract, resetPasswordRequestSchema, resetPasswordResponseSchema, saveUserPushTokenContract, saveUserPushTokenRequestSchema, saveWorkoutSplitInputQueryDtoSchema, saveWorkoutSplitPayloadQueryDtoSchema, sendChangePassEmailContract, sendChangePassEmailRequestSchema, sendVerificationMailContract, sendVerificationMailRequestSchema, serializedDateSchema, setProfilePicAndUpdateDBContract, setProfilePicAndUpdateDBResponseSchema, squatRepetitionDtoSchema, timezoneSchema, tokenVersionQueryDtoSchema, trackingByDateItemQueryDtoSchema, trackingBySplitNameItemQueryDtoSchema, trackingMapItemQueryDtoSchema, trackingSetDbSchema, updateAuthenticatedUserContract, updateAuthenticatedUserResponseSchema, updateUserRequestSchema, userAerobicsQueryDtoSchema, userAerobicsResponseSchema, userAerobicsRowQueryDtoSchema, userAfterBumpQueryDtoSchema, userByIdentifierQueryDtoSchema, userByIdentifierRawQueryDtoSchema, userByIdentifierRowQueryDtoSchema, userByUsernameRawQueryDtoSchema, userByUsernameRowQueryDtoSchema, userConflictQueryDtoSchema, userDataContract, userDataQueryDtoSchema, userDataResponseSchema, userDataRowQueryDtoSchema, userDbSchema, userExistsQueryDtoSchema, userInsertDbSchema, userMessageIdentityQueryDtoSchema, userProfilePicQueryDtoSchema, userReminderSettingDbSchema, userSplitInformationDbSchema, userToHourlyReminderQueryDtoSchema, userUpdateDbSchema, userWithNotificationsEnabledQueryDtoSchema, verifyAccountRequestSchema, verifyUserAccountContract, weeklyDataQueryDtoSchema, wholeUserWorkoutPlanQueryDtoSchema, workoutExerciseInputQueryDtoSchema, workoutPlanDbSchema, workoutPlanIdQueryDtoSchema, workoutRmRecordQueryDtoSchema, workoutRmsQueryDtoSchema, workoutRmsRowQueryDtoSchema, workoutSetDbSchema, workoutSplitDbSchema, workoutSplitIdQueryDtoSchema, workoutSplitLookupQueryDtoSchema, workoutSplitQueryDtoSchema, workoutSummaryDbSchema, workoutSummaryIdQueryDtoSchema };
6064
+ export { type AccessTokenPayloadDto, type AddAerobicInputQueryDto, type AddUserAerobicsBody, type AddWorkoutBody, type AddWorkoutResponse, type AdherenceExerciseStatsQueryDto, type AerobicTrackingRow, type AerobicsDailyRecordQueryDto, type AerobicsWeeklyRecordQueryDto, type AllUserMessageQueryDto, type AnalyzeVideoPayloadDto, type AnalyzeVideoResultPayloadDto, type AppleOAuthBody, type AppleTokenVerificationResultDto, type AuthenticatedUserForUpdateQueryDto, type BodyOf, type ChangeEmailAndVerifyBody, type ChangeEmailTokenPayloadDto, type CheckUserVerifyQuery, type Contract, type CreateUserBody, type CreateUserResponse, type CreatedUserQueryDto, type CreatedUserRawQueryDto, type CreatedUserRowQueryDto, type DeleteMessageParams, type DeleteMessageResponse, type DeleteUserProfilePicBody, type DeletedMessageQueryDto, type EmailVerifyPayloadDto, type EnqueueAnalyzeVideoParamsDto, type ExerciseAssignmentIdQueryDto, type ExerciseInPlanQueryDto, type ExerciseMapByMuscleRowQueryDto, type ExerciseMetadataQueryDto, type ExerciseRow, type ExerciseToWorkoutSplitRow, type ExerciseTrackingAnalysisQueryDto, type ExerciseTrackingAndStatsQueryDto, type ExerciseTrackingAndStatsRowQueryDto, type ExerciseTrackingIdQueryDto, type ExerciseTrackingMapsQueryDto, type ExerciseTrackingMapsRowQueryDto, type ExerciseTrackingPrMaxQueryDto, type ExerciseTrackingRow, type ExerciseTrackingStatsQueryDto, type ExerciseTrackingStatsRowQueryDto, type ExercisesMapByMuscleQueryDto, type FinishUserWorkoutBody, type FinishUserWorkoutResponse, type FinishedWorkoutEntryQueryDto, type ForgotPasswordPayloadDto, type GenerateTicketBody, type GenerateTicketResponse, type GetAllExercisesExerciseQueryDto, type GetAllExercisesResponse, type GetAllUserMessagesQuery, type GetAllUserMessagesResponse, type GetAnalyticsResponse, type GetAuthenticatedUserByIdResponse, type GetExerciseTrackingQuery, type GetExerciseTrackingResponse, type GetExerciseTrackingStatsResponse, type GetPresignedUrlFromS3Body, type GetPresignedUrlFromS3Response, type GetUserAerobicsQuery, type GetWholeUserWorkoutPlanQuery, type GetWholeUserWorkoutPlanResponse, type GoalAdherenceQueryDto, type GoalAdherenceRowQueryDto, type GoogleOAuthBody, type GoogleTokenVerificationResultDto, type LastLoginQueryDto, type LoginRequestBody, type LoginResponse, type LogoutResponse, type MarkMessageAsReadParams, type MarkMessageAsReadResponse, type MessageAfterSendQueryDto, type MessageAsReadQueryDto, type MessageRow, type OAuthCreatedUserRowQueryDto, type OAuthLinkQueryDto, type OAuthLinkRowQueryDto, type OAuthLoginResponse, type OAuthLookupQueryDto, type OAuthLookupRawQueryDto, type OAuthLookupRowQueryDto, type ParamsOf, type QueryOf, type RefreshTokenResponse, type RequestOf, type RequestSchema, type ResetPasswordBody, type ResetPasswordQuery, type ResetPasswordResponse, type ResponseOf, type SaveUserPushTokenBody, type SaveWorkoutSplitInputQueryDto, type SaveWorkoutSplitPayloadQueryDto, type SendChangePassEmailBody, type SendVerificationMailBody, type SetProfilePicAndUpdateDBResponse, type SquatRepetitionDto, type TokenVersionQueryDto, type TrackingByDateItemQueryDto, type TrackingBySplitNameItemQueryDto, type TrackingMapItemQueryDto, type UpdateAuthenticatedUserResponse, type UpdateUserBody, type UserAerobicsQueryDto, type UserAerobicsResponse, type UserAerobicsRowQueryDto, type UserAfterBumpQueryDto, type UserByIdentifierQueryDto, type UserByIdentifierRawQueryDto, type UserByIdentifierRowQueryDto, type UserByUsernameRawQueryDto, type UserByUsernameRowQueryDto, type UserConflictQueryDto, type UserDataQueryDto, type UserDataResponse, type UserDataRowQueryDto, type UserExistsQueryDto, type UserInsert, type UserMessageIdentityQueryDto, type UserProfilePicQueryDto, type UserRow, type UserToHourlyReminderQueryDto, type UserWithNotificationsEnabledQueryDto, type VerifyUserAccountQuery, type WeeklyDataQueryDto, type WholeUserWorkoutPlanQueryDto, type WorkoutExerciseInputQueryDto, type WorkoutPlanIdQueryDto, type WorkoutPlanRow, type WorkoutRmRecordQueryDto, type WorkoutRmsQueryDto, type WorkoutRmsRowQueryDto, type WorkoutSplitIdQueryDto, type WorkoutSplitLookupQueryDto, type WorkoutSplitQueryDto, type WorkoutSplitRow, type WorkoutSummaryIdQueryDto, type WorkoutSummaryRow, accessTokenPayloadDtoSchema, addAerobicInputQueryDtoSchema, addAerobicsRequestSchema, addUserAerobicsContract, addWorkoutContract, addWorkoutRequestSchema, addWorkoutResponseSchema, adherenceExerciseStatsQueryDtoSchema, aerobicTrackingDbSchema, aerobicsDailyRecordQueryDtoSchema, aerobicsWeeklyRecordQueryDtoSchema, allUserMessageQueryDtoSchema, analyzeVideoPayloadDtoSchema, analyzeVideoResultPayloadDtoSchema, appleOAuthContract, appleOAuthRequestSchema, appleTokenVerificationResultDtoSchema, authenticatedUserForUpdateQueryDtoSchema, changeEmailAndVerifyContract, changeEmailAndVerifyRequestSchema, changeEmailTokenPayloadDtoSchema, checkUserVerifyContract, checkUserVerifyRequestSchema, createUserContract, createUserRequestSchema, createUserResponseSchema, createUserUserSchema, createdUserQueryDtoSchema, createdUserRawQueryDtoSchema, createdUserRowQueryDtoSchema, deleteMessageContract, deleteMessageRequestSchema, deleteMessageResponseSchema, deleteProfilePicRequestSchema, deleteUserProfilePicContract, deletedMessageQueryDtoSchema, emailVerifyPayloadDtoSchema, enqueueAnalyzeVideoParamsDtoSchema, exerciseAssignmentIdQueryDtoSchema, exerciseDbSchema, exerciseInPlanQueryDtoSchema, exerciseMapByMuscleRowQueryDtoSchema, exerciseMetadataQueryDtoSchema, exerciseToWorkoutSplitDbSchema, exerciseToWorkoutSplitSetExpandedViewDbSchema, exerciseTrackingAnalysisQueryDtoSchema, exerciseTrackingAndStatsQueryDtoSchema, exerciseTrackingAndStatsRowQueryDtoSchema, exerciseTrackingDbSchema, exerciseTrackingIdQueryDtoSchema, exerciseTrackingMapsQueryDtoSchema, exerciseTrackingMapsRowQueryDtoSchema, exerciseTrackingPrMaxQueryDtoSchema, exerciseTrackingSetExpandedViewDbSchema, exerciseTrackingStatsQueryDtoSchema, exerciseTrackingStatsRowQueryDtoSchema, exercisesMapByMuscleQueryDtoSchema, finishUserWorkoutContract, finishUserWorkoutResponseSchema, finishWorkoutRequestSchema, finishedWorkoutEntryQueryDtoSchema, forgotPasswordPayloadDtoSchema, generateTicketContract, generateTicketRequestSchema, generateTicketResponseSchema, getAerobicsRequestSchema, getAllExercisesContract, getAllExercisesExerciseQueryDtoSchema, getAllExercisesResponseSchema, getAllMessagesRequestSchema, getAllUserMessagesContract, getAllUserMessagesResponseSchema, getAnalyticsContract, getAnalyticsResponseSchema, getAuthenticatedUserByIdContract, getAuthenticatedUserByIdResponseSchema, getExerciseTrackingContract, getExerciseTrackingRequestSchema, getExerciseTrackingResponseSchema, getExerciseTrackingStatsContract, getExerciseTrackingStatsResponseSchema, getPresignedUrlFromS3Contract, getPresignedUrlFromS3RequestSchema, getPresignedUrlFromS3ResponseSchema, getUserAerobicsContract, getWholeUserWorkoutPlanContract, getWholeUserWorkoutPlanResponseSchema, getWholeWorkoutPlanRequestSchema, goalAdherenceQueryDtoSchema, goalAdherenceRowQueryDtoSchema, googleOAuthContract, googleOAuthRequestSchema, googleTokenVerificationResultDtoSchema, lastLoginQueryDtoSchema, loginContract, loginRequestSchema, loginResponseSchema, logoutContract, logoutResponseSchema, markMessageAsReadContract, markMessageAsReadRequestSchema, markMessageAsReadResponseSchema, messageAfterSendQueryDtoSchema, messageAsReadQueryDtoSchema, messageDbSchema, oAuthCreatedUserRowQueryDtoSchema, oAuthLinkQueryDtoSchema, oAuthLinkRowQueryDtoSchema, oAuthLoginContract, oAuthLoginResponseSchema, oAuthLookupQueryDtoSchema, oAuthLookupRawQueryDtoSchema, oAuthLookupRowQueryDtoSchema, oauthAccountDbSchema, proceedLoginResponseSchema, prsViewDbSchema, refreshTokenContract, refreshTokenResponseSchema, resetPasswordContract, resetPasswordRequestSchema, resetPasswordResponseSchema, saveUserPushTokenContract, saveUserPushTokenRequestSchema, saveWorkoutSplitInputQueryDtoSchema, saveWorkoutSplitPayloadQueryDtoSchema, sendChangePassEmailContract, sendChangePassEmailRequestSchema, sendVerificationMailContract, sendVerificationMailRequestSchema, serializedDateSchema, setProfilePicAndUpdateDBContract, setProfilePicAndUpdateDBResponseSchema, squatRepetitionDtoSchema, timezoneSchema, tokenVersionQueryDtoSchema, trackingByDateItemQueryDtoSchema, trackingBySplitNameItemQueryDtoSchema, trackingMapItemQueryDtoSchema, trackingSetDbSchema, updateAuthenticatedUserContract, updateAuthenticatedUserResponseSchema, updateUserRequestSchema, userAerobicsQueryDtoSchema, userAerobicsResponseSchema, userAerobicsRowQueryDtoSchema, userAfterBumpQueryDtoSchema, userByIdentifierQueryDtoSchema, userByIdentifierRawQueryDtoSchema, userByIdentifierRowQueryDtoSchema, userByUsernameRawQueryDtoSchema, userByUsernameRowQueryDtoSchema, userConflictQueryDtoSchema, userDataContract, userDataQueryDtoSchema, userDataResponseSchema, userDataRowQueryDtoSchema, userDbSchema, userExistsQueryDtoSchema, userInsertDbSchema, userMessageIdentityQueryDtoSchema, userProfilePicQueryDtoSchema, userReminderSettingDbSchema, userSplitInformationDbSchema, userToHourlyReminderQueryDtoSchema, userUpdateDbSchema, userWithNotificationsEnabledQueryDtoSchema, verifyAccountRequestSchema, verifyUserAccountContract, weeklyDataQueryDtoSchema, wholeUserWorkoutPlanQueryDtoSchema, workoutExerciseInputQueryDtoSchema, workoutPlanDbSchema, workoutPlanIdQueryDtoSchema, workoutRmRecordQueryDtoSchema, workoutRmsQueryDtoSchema, workoutRmsRowQueryDtoSchema, workoutSetDbSchema, workoutSplitDbSchema, workoutSplitIdQueryDtoSchema, workoutSplitLookupQueryDtoSchema, workoutSplitQueryDtoSchema, workoutSummaryDbSchema, workoutSummaryIdQueryDtoSchema };