@strong-together/shared 2.5.0 → 2.6.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.cts CHANGED
@@ -540,6 +540,23 @@ declare const workoutSplit: drizzle_orm_pg_core.PgTableWithColumns<{
540
540
  identity: undefined;
541
541
  generated: undefined;
542
542
  }, {}, {}>;
543
+ orderIndex: drizzle_orm_pg_core.PgColumn<{
544
+ name: "order_index";
545
+ tableName: "workout_split";
546
+ dataType: "number";
547
+ columnType: "PgInteger";
548
+ data: number;
549
+ driverParam: string | number;
550
+ notNull: true;
551
+ hasDefault: false;
552
+ isPrimaryKey: false;
553
+ isAutoincrement: false;
554
+ hasRuntimeDefault: false;
555
+ enumValues: undefined;
556
+ baseColumn: never;
557
+ identity: undefined;
558
+ generated: undefined;
559
+ }, {}, {}>;
543
560
  createdAt: drizzle_orm_pg_core.PgColumn<{
544
561
  name: "created_at";
545
562
  tableName: "workout_split";
@@ -2229,6 +2246,23 @@ declare const workoutSplitDbSchema: drizzle_zod.BuildSchema<"select", {
2229
2246
  identity: undefined;
2230
2247
  generated: undefined;
2231
2248
  }, {}, {}>;
2249
+ orderIndex: drizzle_orm_pg_core.PgColumn<{
2250
+ name: "order_index";
2251
+ tableName: "workout_split";
2252
+ dataType: "number";
2253
+ columnType: "PgInteger";
2254
+ data: number;
2255
+ driverParam: string | number;
2256
+ notNull: true;
2257
+ hasDefault: false;
2258
+ isPrimaryKey: false;
2259
+ isAutoincrement: false;
2260
+ hasRuntimeDefault: false;
2261
+ enumValues: undefined;
2262
+ baseColumn: never;
2263
+ identity: undefined;
2264
+ generated: undefined;
2265
+ }, {}, {}>;
2232
2266
  createdAt: drizzle_orm_pg_core.PgColumn<{
2233
2267
  name: "created_at";
2234
2268
  tableName: "workout_split";
@@ -4338,33 +4372,33 @@ declare const bootstrapResponseSchema: z.ZodObject<{
4338
4372
  id: z.ZodInt;
4339
4373
  workoutId: z.ZodInt;
4340
4374
  name: z.ZodString;
4375
+ orderIndex: z.ZodInt;
4341
4376
  createdAt: z.ZodString;
4342
4377
  muscleGroup: z.ZodNullable<z.ZodString>;
4343
4378
  isActive: z.ZodBoolean;
4344
- exerciseToWorkoutSplit: z.ZodArray<z.ZodObject<{
4345
- id: z.ZodInt;
4379
+ exercises: z.ZodArray<z.ZodObject<{
4380
+ exerciseToSplitId: z.ZodInt;
4381
+ exerciseId: z.ZodInt;
4382
+ name: z.ZodString;
4346
4383
  sets: z.ZodArray<z.ZodInt>;
4384
+ orderIndex: z.ZodInt;
4347
4385
  isActive: z.ZodBoolean;
4348
4386
  targetMuscle: z.ZodString;
4349
4387
  specificTargetMuscle: z.ZodString;
4350
- exercise: z.ZodString;
4351
- workoutSplit: z.ZodString;
4352
4388
  }, z.core.$strip>>;
4353
4389
  }, z.core.$strip>>>;
4354
4390
  }, z.core.$strip>>;
4355
- workoutPlanForEditWorkout: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
4356
- id: z.ZodInt;
4357
- name: z.ZodString;
4358
- sets: z.ZodArray<z.ZodInt>;
4359
- orderIndex: z.ZodInt;
4360
- targetMuscle: z.ZodString;
4361
- specificTargetMuscle: z.ZodString;
4362
- }, z.core.$strip>>>>;
4363
4391
  }, z.core.$strip>;
4364
4392
  tracking: z.ZodObject<{
4365
4393
  trackingStats: z.ZodObject<{
4366
4394
  workoutCount: z.ZodCoercedNumber<unknown>;
4367
4395
  hasExerciseTracking: z.ZodBoolean;
4396
+ nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
4397
+ id: z.ZodInt;
4398
+ name: z.ZodString;
4399
+ orderIndex: z.ZodInt;
4400
+ muscleGroup: z.ZodNullable<z.ZodString>;
4401
+ }, z.core.$strip>>;
4368
4402
  workoutTargets: z.ZodObject<{
4369
4403
  workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
4370
4404
  workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
@@ -4516,33 +4550,33 @@ declare const bootstrapContract: {
4516
4550
  id: z.ZodInt;
4517
4551
  workoutId: z.ZodInt;
4518
4552
  name: z.ZodString;
4553
+ orderIndex: z.ZodInt;
4519
4554
  createdAt: z.ZodString;
4520
4555
  muscleGroup: z.ZodNullable<z.ZodString>;
4521
4556
  isActive: z.ZodBoolean;
4522
- exerciseToWorkoutSplit: z.ZodArray<z.ZodObject<{
4523
- id: z.ZodInt;
4557
+ exercises: z.ZodArray<z.ZodObject<{
4558
+ exerciseToSplitId: z.ZodInt;
4559
+ exerciseId: z.ZodInt;
4560
+ name: z.ZodString;
4524
4561
  sets: z.ZodArray<z.ZodInt>;
4562
+ orderIndex: z.ZodInt;
4525
4563
  isActive: z.ZodBoolean;
4526
4564
  targetMuscle: z.ZodString;
4527
4565
  specificTargetMuscle: z.ZodString;
4528
- exercise: z.ZodString;
4529
- workoutSplit: z.ZodString;
4530
4566
  }, z.core.$strip>>;
4531
4567
  }, z.core.$strip>>>;
4532
4568
  }, z.core.$strip>>;
4533
- workoutPlanForEditWorkout: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
4534
- id: z.ZodInt;
4535
- name: z.ZodString;
4536
- sets: z.ZodArray<z.ZodInt>;
4537
- orderIndex: z.ZodInt;
4538
- targetMuscle: z.ZodString;
4539
- specificTargetMuscle: z.ZodString;
4540
- }, z.core.$strip>>>>;
4541
4569
  }, z.core.$strip>;
4542
4570
  tracking: z.ZodObject<{
4543
4571
  trackingStats: z.ZodObject<{
4544
4572
  workoutCount: z.ZodCoercedNumber<unknown>;
4545
4573
  hasExerciseTracking: z.ZodBoolean;
4574
+ nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
4575
+ id: z.ZodInt;
4576
+ name: z.ZodString;
4577
+ orderIndex: z.ZodInt;
4578
+ muscleGroup: z.ZodNullable<z.ZodString>;
4579
+ }, z.core.$strip>>;
4546
4580
  workoutTargets: z.ZodObject<{
4547
4581
  workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
4548
4582
  workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
@@ -5444,28 +5478,22 @@ declare const getWholeUserWorkoutPlanResponseSchema: z.ZodObject<{
5444
5478
  id: z.ZodInt;
5445
5479
  workoutId: z.ZodInt;
5446
5480
  name: z.ZodString;
5481
+ orderIndex: z.ZodInt;
5447
5482
  createdAt: z.ZodString;
5448
5483
  muscleGroup: z.ZodNullable<z.ZodString>;
5449
5484
  isActive: z.ZodBoolean;
5450
- exerciseToWorkoutSplit: z.ZodArray<z.ZodObject<{
5451
- id: z.ZodInt;
5485
+ exercises: z.ZodArray<z.ZodObject<{
5486
+ exerciseToSplitId: z.ZodInt;
5487
+ exerciseId: z.ZodInt;
5488
+ name: z.ZodString;
5452
5489
  sets: z.ZodArray<z.ZodInt>;
5490
+ orderIndex: z.ZodInt;
5453
5491
  isActive: z.ZodBoolean;
5454
5492
  targetMuscle: z.ZodString;
5455
5493
  specificTargetMuscle: z.ZodString;
5456
- exercise: z.ZodString;
5457
- workoutSplit: z.ZodString;
5458
5494
  }, z.core.$strip>>;
5459
5495
  }, z.core.$strip>>>;
5460
5496
  }, z.core.$strip>>;
5461
- workoutPlanForEditWorkout: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5462
- id: z.ZodInt;
5463
- name: z.ZodString;
5464
- sets: z.ZodArray<z.ZodInt>;
5465
- orderIndex: z.ZodInt;
5466
- targetMuscle: z.ZodString;
5467
- specificTargetMuscle: z.ZodString;
5468
- }, z.core.$strip>>>>;
5469
5497
  }, z.core.$strip>;
5470
5498
  declare const getWholeUserWorkoutPlanContract: {
5471
5499
  request: z.ZodObject<{
@@ -5485,37 +5513,36 @@ declare const getWholeUserWorkoutPlanContract: {
5485
5513
  id: z.ZodInt;
5486
5514
  workoutId: z.ZodInt;
5487
5515
  name: z.ZodString;
5516
+ orderIndex: z.ZodInt;
5488
5517
  createdAt: z.ZodString;
5489
5518
  muscleGroup: z.ZodNullable<z.ZodString>;
5490
5519
  isActive: z.ZodBoolean;
5491
- exerciseToWorkoutSplit: z.ZodArray<z.ZodObject<{
5492
- id: z.ZodInt;
5520
+ exercises: z.ZodArray<z.ZodObject<{
5521
+ exerciseToSplitId: z.ZodInt;
5522
+ exerciseId: z.ZodInt;
5523
+ name: z.ZodString;
5493
5524
  sets: z.ZodArray<z.ZodInt>;
5525
+ orderIndex: z.ZodInt;
5494
5526
  isActive: z.ZodBoolean;
5495
5527
  targetMuscle: z.ZodString;
5496
5528
  specificTargetMuscle: z.ZodString;
5497
- exercise: z.ZodString;
5498
- workoutSplit: z.ZodString;
5499
5529
  }, z.core.$strip>>;
5500
5530
  }, z.core.$strip>>>;
5501
5531
  }, z.core.$strip>>;
5502
- workoutPlanForEditWorkout: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5503
- id: z.ZodInt;
5504
- name: z.ZodString;
5505
- sets: z.ZodArray<z.ZodInt>;
5506
- orderIndex: z.ZodInt;
5507
- targetMuscle: z.ZodString;
5508
- specificTargetMuscle: z.ZodString;
5509
- }, z.core.$strip>>>>;
5510
5532
  }, z.core.$strip>;
5511
5533
  };
5512
5534
  declare const addWorkoutRequestSchema: z.ZodObject<{
5513
5535
  body: z.ZodObject<{
5514
- workoutData: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5515
- id: z.ZodInt;
5516
- sets: z.ZodArray<z.ZodInt>;
5517
- orderIndex: z.ZodInt;
5518
- }, z.core.$strip>>>;
5536
+ workoutData: z.ZodArray<z.ZodObject<{
5537
+ name: z.ZodString;
5538
+ orderIndex: z.ZodNumber;
5539
+ exercises: z.ZodArray<z.ZodObject<{
5540
+ exerciseId: z.ZodInt;
5541
+ sets: z.ZodArray<z.ZodInt>;
5542
+ orderIndex: z.ZodInt;
5543
+ }, z.core.$strip>>;
5544
+ id: z.ZodOptional<z.ZodInt>;
5545
+ }, z.core.$strip>>;
5519
5546
  workoutName: z.ZodOptional<z.ZodString>;
5520
5547
  tz: z.ZodString;
5521
5548
  }, z.core.$strip>;
@@ -5533,37 +5560,36 @@ declare const addWorkoutResponseSchema: z.ZodObject<{
5533
5560
  id: z.ZodInt;
5534
5561
  workoutId: z.ZodInt;
5535
5562
  name: z.ZodString;
5563
+ orderIndex: z.ZodInt;
5536
5564
  createdAt: z.ZodString;
5537
5565
  muscleGroup: z.ZodNullable<z.ZodString>;
5538
5566
  isActive: z.ZodBoolean;
5539
- exerciseToWorkoutSplit: z.ZodArray<z.ZodObject<{
5540
- id: z.ZodInt;
5567
+ exercises: z.ZodArray<z.ZodObject<{
5568
+ exerciseToSplitId: z.ZodInt;
5569
+ exerciseId: z.ZodInt;
5570
+ name: z.ZodString;
5541
5571
  sets: z.ZodArray<z.ZodInt>;
5572
+ orderIndex: z.ZodInt;
5542
5573
  isActive: z.ZodBoolean;
5543
5574
  targetMuscle: z.ZodString;
5544
5575
  specificTargetMuscle: z.ZodString;
5545
- exercise: z.ZodString;
5546
- workoutSplit: z.ZodString;
5547
5576
  }, z.core.$strip>>;
5548
5577
  }, z.core.$strip>>>;
5549
5578
  }, z.core.$strip>;
5550
- workoutPlanForEditWorkout: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5551
- id: z.ZodInt;
5552
- name: z.ZodString;
5553
- sets: z.ZodArray<z.ZodInt>;
5554
- orderIndex: z.ZodInt;
5555
- targetMuscle: z.ZodString;
5556
- specificTargetMuscle: z.ZodString;
5557
- }, z.core.$strip>>>;
5558
5579
  }, z.core.$strip>;
5559
5580
  declare const addWorkoutContract: {
5560
5581
  request: z.ZodObject<{
5561
5582
  body: z.ZodObject<{
5562
- workoutData: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5563
- id: z.ZodInt;
5564
- sets: z.ZodArray<z.ZodInt>;
5565
- orderIndex: z.ZodInt;
5566
- }, z.core.$strip>>>;
5583
+ workoutData: z.ZodArray<z.ZodObject<{
5584
+ name: z.ZodString;
5585
+ orderIndex: z.ZodNumber;
5586
+ exercises: z.ZodArray<z.ZodObject<{
5587
+ exerciseId: z.ZodInt;
5588
+ sets: z.ZodArray<z.ZodInt>;
5589
+ orderIndex: z.ZodInt;
5590
+ }, z.core.$strip>>;
5591
+ id: z.ZodOptional<z.ZodInt>;
5592
+ }, z.core.$strip>>;
5567
5593
  workoutName: z.ZodOptional<z.ZodString>;
5568
5594
  tz: z.ZodString;
5569
5595
  }, z.core.$strip>;
@@ -5581,28 +5607,22 @@ declare const addWorkoutContract: {
5581
5607
  id: z.ZodInt;
5582
5608
  workoutId: z.ZodInt;
5583
5609
  name: z.ZodString;
5610
+ orderIndex: z.ZodInt;
5584
5611
  createdAt: z.ZodString;
5585
5612
  muscleGroup: z.ZodNullable<z.ZodString>;
5586
5613
  isActive: z.ZodBoolean;
5587
- exerciseToWorkoutSplit: z.ZodArray<z.ZodObject<{
5588
- id: z.ZodInt;
5614
+ exercises: z.ZodArray<z.ZodObject<{
5615
+ exerciseToSplitId: z.ZodInt;
5616
+ exerciseId: z.ZodInt;
5617
+ name: z.ZodString;
5589
5618
  sets: z.ZodArray<z.ZodInt>;
5619
+ orderIndex: z.ZodInt;
5590
5620
  isActive: z.ZodBoolean;
5591
5621
  targetMuscle: z.ZodString;
5592
5622
  specificTargetMuscle: z.ZodString;
5593
- exercise: z.ZodString;
5594
- workoutSplit: z.ZodString;
5595
5623
  }, z.core.$strip>>;
5596
5624
  }, z.core.$strip>>>;
5597
5625
  }, z.core.$strip>;
5598
- workoutPlanForEditWorkout: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5599
- id: z.ZodInt;
5600
- name: z.ZodString;
5601
- sets: z.ZodArray<z.ZodInt>;
5602
- orderIndex: z.ZodInt;
5603
- targetMuscle: z.ZodString;
5604
- specificTargetMuscle: z.ZodString;
5605
- }, z.core.$strip>>>;
5606
5626
  }, z.core.$strip>;
5607
5627
  };
5608
5628
  type GetWholeUserWorkoutPlanQuery = QueryOf<typeof getWholeUserWorkoutPlanContract>;
@@ -5612,42 +5632,60 @@ type AddWorkoutResponse = ResponseOf<typeof addWorkoutContract>;
5612
5632
 
5613
5633
  /** Exercise input stored while adding a workout plan. */
5614
5634
  declare const workoutExerciseInputQueryDtoSchema: z.ZodObject<{
5615
- id: z.ZodInt;
5635
+ exerciseId: z.ZodInt;
5616
5636
  sets: z.ZodArray<z.ZodInt>;
5617
5637
  orderIndex: z.ZodInt;
5618
5638
  }, z.core.$strip>;
5619
- /** Workout split payload accepted by the add-workout SQL workflow. */
5620
- declare const addWorkoutSplitPayloadQueryDtoSchema: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5621
- id: z.ZodInt;
5622
- sets: z.ZodArray<z.ZodInt>;
5623
- orderIndex: z.ZodInt;
5624
- }, z.core.$strip>>>;
5639
+ /** Split input used while saving a plan. An omitted ID creates a new split. */
5640
+ declare const saveWorkoutSplitInputQueryDtoSchema: z.ZodObject<{
5641
+ name: z.ZodString;
5642
+ orderIndex: z.ZodNumber;
5643
+ exercises: z.ZodArray<z.ZodObject<{
5644
+ exerciseId: z.ZodInt;
5645
+ sets: z.ZodArray<z.ZodInt>;
5646
+ orderIndex: z.ZodInt;
5647
+ }, z.core.$strip>>;
5648
+ id: z.ZodOptional<z.ZodInt>;
5649
+ }, z.core.$strip>;
5650
+ declare const saveWorkoutSplitPayloadQueryDtoSchema: z.ZodArray<z.ZodObject<{
5651
+ name: z.ZodString;
5652
+ orderIndex: z.ZodNumber;
5653
+ exercises: z.ZodArray<z.ZodObject<{
5654
+ exerciseId: z.ZodInt;
5655
+ sets: z.ZodArray<z.ZodInt>;
5656
+ orderIndex: z.ZodInt;
5657
+ }, z.core.$strip>>;
5658
+ id: z.ZodOptional<z.ZodInt>;
5659
+ }, z.core.$strip>>;
5625
5660
  /** Exercise assignment included in a complete workout-plan query. */
5626
5661
  declare const exerciseInPlanQueryDtoSchema: z.ZodObject<{
5627
- id: z.ZodInt;
5662
+ exerciseToSplitId: z.ZodInt;
5663
+ exerciseId: z.ZodInt;
5664
+ name: z.ZodString;
5628
5665
  sets: z.ZodArray<z.ZodInt>;
5666
+ orderIndex: z.ZodInt;
5629
5667
  isActive: z.ZodBoolean;
5630
5668
  targetMuscle: z.ZodString;
5631
5669
  specificTargetMuscle: z.ZodString;
5632
- exercise: z.ZodString;
5633
- workoutSplit: z.ZodString;
5634
5670
  }, z.core.$strip>;
5635
5671
  /** Workout split included in a complete workout-plan query. */
5636
5672
  declare const workoutSplitQueryDtoSchema: z.ZodObject<{
5637
5673
  id: z.ZodInt;
5638
5674
  workoutId: z.ZodInt;
5639
5675
  name: z.ZodString;
5676
+ orderIndex: z.ZodInt;
5640
5677
  createdAt: z.ZodString;
5641
5678
  muscleGroup: z.ZodNullable<z.ZodString>;
5642
5679
  isActive: z.ZodBoolean;
5643
- exerciseToWorkoutSplit: z.ZodArray<z.ZodObject<{
5644
- id: z.ZodInt;
5680
+ exercises: z.ZodArray<z.ZodObject<{
5681
+ exerciseToSplitId: z.ZodInt;
5682
+ exerciseId: z.ZodInt;
5683
+ name: z.ZodString;
5645
5684
  sets: z.ZodArray<z.ZodInt>;
5685
+ orderIndex: z.ZodInt;
5646
5686
  isActive: z.ZodBoolean;
5647
5687
  targetMuscle: z.ZodString;
5648
5688
  specificTargetMuscle: z.ZodString;
5649
- exercise: z.ZodString;
5650
- workoutSplit: z.ZodString;
5651
5689
  }, z.core.$strip>>;
5652
5690
  }, z.core.$strip>;
5653
5691
  /** Complete active workout plan returned for a user. */
@@ -5662,54 +5700,22 @@ declare const wholeUserWorkoutPlanQueryDtoSchema: z.ZodObject<{
5662
5700
  id: z.ZodInt;
5663
5701
  workoutId: z.ZodInt;
5664
5702
  name: z.ZodString;
5703
+ orderIndex: z.ZodInt;
5665
5704
  createdAt: z.ZodString;
5666
5705
  muscleGroup: z.ZodNullable<z.ZodString>;
5667
5706
  isActive: z.ZodBoolean;
5668
- exerciseToWorkoutSplit: z.ZodArray<z.ZodObject<{
5669
- id: z.ZodInt;
5707
+ exercises: z.ZodArray<z.ZodObject<{
5708
+ exerciseToSplitId: z.ZodInt;
5709
+ exerciseId: z.ZodInt;
5710
+ name: z.ZodString;
5670
5711
  sets: z.ZodArray<z.ZodInt>;
5712
+ orderIndex: z.ZodInt;
5671
5713
  isActive: z.ZodBoolean;
5672
5714
  targetMuscle: z.ZodString;
5673
5715
  specificTargetMuscle: z.ZodString;
5674
- exercise: z.ZodString;
5675
- workoutSplit: z.ZodString;
5676
5716
  }, z.core.$strip>>;
5677
5717
  }, z.core.$strip>>>;
5678
5718
  }, z.core.$strip>;
5679
- /** Exercise item included in the editable workout-split map. */
5680
- declare const workoutSplitsMapItemQueryDtoSchema: z.ZodObject<{
5681
- id: z.ZodInt;
5682
- name: z.ZodString;
5683
- sets: z.ZodArray<z.ZodInt>;
5684
- orderIndex: z.ZodInt;
5685
- targetMuscle: z.ZodString;
5686
- specificTargetMuscle: z.ZodString;
5687
- }, z.core.$strip>;
5688
- /** Target-muscle metadata selected for an editable workout exercise. */
5689
- declare const workoutExerciseMetadataQueryDtoSchema: z.ZodObject<{
5690
- targetMuscle: z.ZodString;
5691
- specificTargetMuscle: z.ZodString;
5692
- }, z.core.$strip>;
5693
- /** Editable workout-plan map grouped by split name. */
5694
- declare const workoutSplitsMapQueryDtoSchema: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5695
- id: z.ZodInt;
5696
- name: z.ZodString;
5697
- sets: z.ZodArray<z.ZodInt>;
5698
- orderIndex: z.ZodInt;
5699
- targetMuscle: z.ZodString;
5700
- specificTargetMuscle: z.ZodString;
5701
- }, z.core.$strip>>>;
5702
- /** SQL row wrapping the editable workout split map under `splits`. */
5703
- declare const workoutSplitsRowQueryDtoSchema: z.ZodObject<{
5704
- splits: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5705
- id: z.ZodInt;
5706
- name: z.ZodString;
5707
- sets: z.ZodArray<z.ZodInt>;
5708
- orderIndex: z.ZodInt;
5709
- targetMuscle: z.ZodString;
5710
- specificTargetMuscle: z.ZodString;
5711
- }, z.core.$strip>>>;
5712
- }, z.core.$strip>;
5713
5719
  /** SQL row returned when inserting or retrieving a workout plan. */
5714
5720
  declare const workoutPlanIdQueryDtoSchema: z.ZodObject<{
5715
5721
  id: z.ZodInt;
@@ -5723,14 +5729,11 @@ declare const exerciseAssignmentIdQueryDtoSchema: z.ZodObject<{
5723
5729
  id: z.ZodInt;
5724
5730
  }, z.core.$strip>;
5725
5731
  type WorkoutExerciseInputQueryDto = z.infer<typeof workoutExerciseInputQueryDtoSchema>;
5732
+ type SaveWorkoutSplitInputQueryDto = z.infer<typeof saveWorkoutSplitInputQueryDtoSchema>;
5726
5733
  type ExerciseInPlanQueryDto = z.infer<typeof exerciseInPlanQueryDtoSchema>;
5727
5734
  type WorkoutSplitQueryDto = z.infer<typeof workoutSplitQueryDtoSchema>;
5728
- type WorkoutSplitsMapItemQueryDto = z.infer<typeof workoutSplitsMapItemQueryDtoSchema>;
5729
- type WorkoutExerciseMetadataQueryDto = z.infer<typeof workoutExerciseMetadataQueryDtoSchema>;
5730
5735
  type WholeUserWorkoutPlanQueryDto = z.infer<typeof wholeUserWorkoutPlanQueryDtoSchema>;
5731
- type AddWorkoutSplitPayloadQueryDto = z.infer<typeof addWorkoutSplitPayloadQueryDtoSchema>;
5732
- type WorkoutSplitsMapQueryDto = z.infer<typeof workoutSplitsMapQueryDtoSchema>;
5733
- type WorkoutSplitsRowQueryDto = z.infer<typeof workoutSplitsRowQueryDtoSchema>;
5736
+ type SaveWorkoutSplitPayloadQueryDto = z.infer<typeof saveWorkoutSplitPayloadQueryDtoSchema>;
5734
5737
  type WorkoutPlanIdQueryDto = z.infer<typeof workoutPlanIdQueryDtoSchema>;
5735
5738
  type WorkoutSplitIdQueryDto = z.infer<typeof workoutSplitIdQueryDtoSchema>;
5736
5739
  type ExerciseAssignmentIdQueryDto = z.infer<typeof exerciseAssignmentIdQueryDtoSchema>;
@@ -5880,6 +5883,12 @@ declare const getExerciseTrackingContract: {
5880
5883
  declare const getExerciseTrackingStatsResponseSchema: z.ZodObject<{
5881
5884
  workoutCount: z.ZodCoercedNumber<unknown>;
5882
5885
  hasExerciseTracking: z.ZodBoolean;
5886
+ nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
5887
+ id: z.ZodInt;
5888
+ name: z.ZodString;
5889
+ orderIndex: z.ZodInt;
5890
+ muscleGroup: z.ZodNullable<z.ZodString>;
5891
+ }, z.core.$strip>>;
5883
5892
  workoutTargets: z.ZodObject<{
5884
5893
  workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
5885
5894
  workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
@@ -5909,6 +5918,12 @@ declare const getExerciseTrackingStatsContract: {
5909
5918
  response: z.ZodObject<{
5910
5919
  workoutCount: z.ZodCoercedNumber<unknown>;
5911
5920
  hasExerciseTracking: z.ZodBoolean;
5921
+ nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
5922
+ id: z.ZodInt;
5923
+ name: z.ZodString;
5924
+ orderIndex: z.ZodInt;
5925
+ muscleGroup: z.ZodNullable<z.ZodString>;
5926
+ }, z.core.$strip>>;
5912
5927
  workoutTargets: z.ZodObject<{
5913
5928
  workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
5914
5929
  workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
@@ -5952,6 +5967,12 @@ declare const finishUserWorkoutResponseSchema: z.ZodObject<{
5952
5967
  trackingStats: z.ZodObject<{
5953
5968
  workoutCount: z.ZodCoercedNumber<unknown>;
5954
5969
  hasExerciseTracking: z.ZodBoolean;
5970
+ nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
5971
+ id: z.ZodInt;
5972
+ name: z.ZodString;
5973
+ orderIndex: z.ZodInt;
5974
+ muscleGroup: z.ZodNullable<z.ZodString>;
5975
+ }, z.core.$strip>>;
5955
5976
  workoutTargets: z.ZodObject<{
5956
5977
  workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
5957
5978
  workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
@@ -6061,6 +6082,12 @@ declare const finishUserWorkoutContract: {
6061
6082
  trackingStats: z.ZodObject<{
6062
6083
  workoutCount: z.ZodCoercedNumber<unknown>;
6063
6084
  hasExerciseTracking: z.ZodBoolean;
6085
+ nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
6086
+ id: z.ZodInt;
6087
+ name: z.ZodString;
6088
+ orderIndex: z.ZodInt;
6089
+ muscleGroup: z.ZodNullable<z.ZodString>;
6090
+ }, z.core.$strip>>;
6064
6091
  workoutTargets: z.ZodObject<{
6065
6092
  workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
6066
6093
  workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
@@ -6257,6 +6284,12 @@ declare const trackingBySplitNameItemQueryDtoSchema: z.ZodObject<{
6257
6284
  declare const exerciseTrackingStatsQueryDtoSchema: z.ZodObject<{
6258
6285
  workoutCount: z.ZodCoercedNumber<unknown>;
6259
6286
  hasExerciseTracking: z.ZodBoolean;
6287
+ nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
6288
+ id: z.ZodInt;
6289
+ name: z.ZodString;
6290
+ orderIndex: z.ZodInt;
6291
+ muscleGroup: z.ZodNullable<z.ZodString>;
6292
+ }, z.core.$strip>>;
6260
6293
  workoutTargets: z.ZodObject<{
6261
6294
  workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
6262
6295
  workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
@@ -6346,6 +6379,12 @@ declare const exerciseTrackingAndStatsQueryDtoSchema: z.ZodObject<{
6346
6379
  trackingStats: z.ZodObject<{
6347
6380
  workoutCount: z.ZodCoercedNumber<unknown>;
6348
6381
  hasExerciseTracking: z.ZodBoolean;
6382
+ nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
6383
+ id: z.ZodInt;
6384
+ name: z.ZodString;
6385
+ orderIndex: z.ZodInt;
6386
+ muscleGroup: z.ZodNullable<z.ZodString>;
6387
+ }, z.core.$strip>>;
6349
6388
  workoutTargets: z.ZodObject<{
6350
6389
  workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
6351
6390
  workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
@@ -6438,6 +6477,12 @@ declare const exerciseTrackingAndStatsRowQueryDtoSchema: z.ZodObject<{
6438
6477
  trackingStats: z.ZodObject<{
6439
6478
  workoutCount: z.ZodCoercedNumber<unknown>;
6440
6479
  hasExerciseTracking: z.ZodBoolean;
6480
+ nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
6481
+ id: z.ZodInt;
6482
+ name: z.ZodString;
6483
+ orderIndex: z.ZodInt;
6484
+ muscleGroup: z.ZodNullable<z.ZodString>;
6485
+ }, z.core.$strip>>;
6441
6486
  workoutTargets: z.ZodObject<{
6442
6487
  workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
6443
6488
  workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
@@ -6529,6 +6574,12 @@ declare const exerciseTrackingStatsRowQueryDtoSchema: z.ZodObject<{
6529
6574
  data: z.ZodObject<{
6530
6575
  workoutCount: z.ZodCoercedNumber<unknown>;
6531
6576
  hasExerciseTracking: z.ZodBoolean;
6577
+ nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
6578
+ id: z.ZodInt;
6579
+ name: z.ZodString;
6580
+ orderIndex: z.ZodInt;
6581
+ muscleGroup: z.ZodNullable<z.ZodString>;
6582
+ }, z.core.$strip>>;
6532
6583
  workoutTargets: z.ZodObject<{
6533
6584
  workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
6534
6585
  workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
@@ -6646,4 +6697,4 @@ type WorkoutSummaryIdQueryDto = z.infer<typeof workoutSummaryIdQueryDtoSchema>;
6646
6697
  type ExerciseTrackingIdQueryDto = z.infer<typeof exerciseTrackingIdQueryDtoSchema>;
6647
6698
  type FinishedWorkoutEntryQueryDto = z.infer<typeof finishedWorkoutEntryQueryDtoSchema>;
6648
6699
 
6649
- export { type AccessTokenPayloadDto, type AddAerobicInputQueryDto, type AddUserAerobicsBody, type AddWorkoutBody, type AddWorkoutResponse, type AddWorkoutSplitPayloadQueryDto, 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 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 WorkoutExerciseMetadataQueryDto, type WorkoutPlanIdQueryDto, type WorkoutPlanRow, type WorkoutRmRecordQueryDto, type WorkoutRmsQueryDto, type WorkoutRmsRowQueryDto, type WorkoutSplitIdQueryDto, type WorkoutSplitLookupQueryDto, type WorkoutSplitQueryDto, type WorkoutSplitRow, type WorkoutSplitsMapItemQueryDto, type WorkoutSplitsMapQueryDto, type WorkoutSplitsRowQueryDto, type WorkoutSummaryIdQueryDto, type WorkoutSummaryRow, accessTokenPayloadDtoSchema, addAerobicInputQueryDtoSchema, addAerobicsRequestSchema, addUserAerobicsContract, addWorkoutContract, addWorkoutRequestSchema, addWorkoutResponseSchema, addWorkoutSplitPayloadQueryDtoSchema, 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, 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, workoutExerciseMetadataQueryDtoSchema, workoutPlanDbSchema, workoutPlanIdQueryDtoSchema, workoutRmRecordQueryDtoSchema, workoutRmsQueryDtoSchema, workoutRmsRowQueryDtoSchema, workoutSetDbSchema, workoutSplitDbSchema, workoutSplitIdQueryDtoSchema, workoutSplitLookupQueryDtoSchema, workoutSplitQueryDtoSchema, workoutSplitsMapItemQueryDtoSchema, workoutSplitsMapQueryDtoSchema, workoutSplitsRowQueryDtoSchema, workoutSummaryDbSchema, workoutSummaryIdQueryDtoSchema };
6700
+ 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 };