@strong-together/shared 2.3.0 → 2.5.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
@@ -3390,6 +3390,23 @@ declare const exerciseTrackingSetExpandedViewDbSchema: drizzle_zod.BuildSchema<"
3390
3390
  identity: undefined;
3391
3391
  generated: undefined;
3392
3392
  }, {}, {}>;
3393
+ orderIndex: drizzle_orm_pg_core.PgColumn<{
3394
+ name: "order_index";
3395
+ tableName: "v_exercise_tracking_set_expanded";
3396
+ dataType: "number";
3397
+ columnType: "PgInteger";
3398
+ data: number;
3399
+ driverParam: string | number;
3400
+ notNull: false;
3401
+ hasDefault: false;
3402
+ isPrimaryKey: false;
3403
+ isAutoincrement: false;
3404
+ hasRuntimeDefault: false;
3405
+ enumValues: undefined;
3406
+ baseColumn: never;
3407
+ identity: undefined;
3408
+ generated: undefined;
3409
+ }, {}, {}>;
3393
3410
  setIndex: drizzle_orm_pg_core.PgColumn<{
3394
3411
  name: "set_index";
3395
3412
  tableName: "v_exercise_tracking_set_expanded";
@@ -3475,6 +3492,40 @@ declare const exerciseTrackingSetExpandedViewDbSchema: drizzle_zod.BuildSchema<"
3475
3492
  identity: undefined;
3476
3493
  generated: undefined;
3477
3494
  }, {}, {}>;
3495
+ targetMuscle: drizzle_orm_pg_core.PgColumn<{
3496
+ name: "target_muscle";
3497
+ tableName: "v_exercise_tracking_set_expanded";
3498
+ dataType: "string";
3499
+ columnType: "PgText";
3500
+ data: string;
3501
+ driverParam: string;
3502
+ notNull: false;
3503
+ hasDefault: false;
3504
+ isPrimaryKey: false;
3505
+ isAutoincrement: false;
3506
+ hasRuntimeDefault: false;
3507
+ enumValues: [string, ...string[]];
3508
+ baseColumn: never;
3509
+ identity: undefined;
3510
+ generated: undefined;
3511
+ }, {}, {}>;
3512
+ specificTargetMuscle: drizzle_orm_pg_core.PgColumn<{
3513
+ name: "specific_target_muscle";
3514
+ tableName: "v_exercise_tracking_set_expanded";
3515
+ dataType: "string";
3516
+ columnType: "PgText";
3517
+ data: string;
3518
+ driverParam: string;
3519
+ notNull: false;
3520
+ hasDefault: false;
3521
+ isPrimaryKey: false;
3522
+ isAutoincrement: false;
3523
+ hasRuntimeDefault: false;
3524
+ enumValues: [string, ...string[]];
3525
+ baseColumn: never;
3526
+ identity: undefined;
3527
+ generated: undefined;
3528
+ }, {}, {}>;
3478
3529
  notes: drizzle_orm_pg_core.PgColumn<{
3479
3530
  name: "notes";
3480
3531
  tableName: "v_exercise_tracking_set_expanded";
@@ -3630,6 +3681,23 @@ declare const prsViewDbSchema: drizzle_zod.BuildSchema<"select", {
3630
3681
  identity: undefined;
3631
3682
  generated: undefined;
3632
3683
  }, {}, {}>;
3684
+ setIndex: drizzle_orm_pg_core.PgColumn<{
3685
+ name: "set_index";
3686
+ tableName: "v_prs";
3687
+ dataType: "number";
3688
+ columnType: "PgInteger";
3689
+ data: number;
3690
+ driverParam: string | number;
3691
+ notNull: false;
3692
+ hasDefault: false;
3693
+ isPrimaryKey: false;
3694
+ isAutoincrement: false;
3695
+ hasRuntimeDefault: false;
3696
+ enumValues: undefined;
3697
+ baseColumn: never;
3698
+ identity: undefined;
3699
+ generated: undefined;
3700
+ }, {}, {}>;
3633
3701
  weight: drizzle_orm_pg_core.PgColumn<{
3634
3702
  name: "weight";
3635
3703
  tableName: "v_prs";
@@ -4176,7 +4244,7 @@ declare const userByIdentifierQueryDtoSchema: z.ZodObject<{
4176
4244
  name: z.ZodString;
4177
4245
  username: z.ZodString;
4178
4246
  email: z.ZodOptional<z.ZodString>;
4179
- password: z.ZodNullable<z.ZodString>;
4247
+ passwordHash: z.ZodNullable<z.ZodString>;
4180
4248
  role: z.ZodString;
4181
4249
  isVerified: z.ZodBoolean;
4182
4250
  lastLogin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4188,7 +4256,7 @@ declare const userByIdentifierRawQueryDtoSchema: z.ZodObject<{
4188
4256
  username: z.ZodString;
4189
4257
  email: z.ZodOptional<z.ZodString>;
4190
4258
  role: z.ZodString;
4191
- password: z.ZodNullable<z.ZodString>;
4259
+ password_hash: z.ZodNullable<z.ZodString>;
4192
4260
  is_verified: z.ZodBoolean;
4193
4261
  last_login: z.ZodNullable<z.ZodString>;
4194
4262
  }, z.core.$strip>;
@@ -4200,7 +4268,7 @@ declare const userByIdentifierRowQueryDtoSchema: z.ZodObject<{
4200
4268
  username: z.ZodString;
4201
4269
  email: z.ZodOptional<z.ZodString>;
4202
4270
  role: z.ZodString;
4203
- password: z.ZodNullable<z.ZodString>;
4271
+ password_hash: z.ZodNullable<z.ZodString>;
4204
4272
  is_verified: z.ZodBoolean;
4205
4273
  last_login: z.ZodNullable<z.ZodString>;
4206
4274
  }, z.core.$strip>>;
@@ -4213,7 +4281,7 @@ declare const userByUsernameRawQueryDtoSchema: z.ZodObject<{
4213
4281
  email: z.ZodOptional<z.ZodString>;
4214
4282
  role: z.ZodString;
4215
4283
  lastLogin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4216
- password: z.ZodNullable<z.ZodString>;
4284
+ password_hash: z.ZodNullable<z.ZodString>;
4217
4285
  is_verified: z.ZodBoolean;
4218
4286
  }, z.core.$strip>;
4219
4287
  /** SQL row wrapping a username lookup result under `userData`. */
@@ -4225,7 +4293,7 @@ declare const userByUsernameRowQueryDtoSchema: z.ZodObject<{
4225
4293
  email: z.ZodOptional<z.ZodString>;
4226
4294
  role: z.ZodString;
4227
4295
  lastLogin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4228
- password: z.ZodNullable<z.ZodString>;
4296
+ password_hash: z.ZodNullable<z.ZodString>;
4229
4297
  is_verified: z.ZodBoolean;
4230
4298
  }, z.core.$strip>>;
4231
4299
  }, z.core.$strip>;
@@ -4294,79 +4362,92 @@ declare const bootstrapResponseSchema: z.ZodObject<{
4294
4362
  }, z.core.$strip>>>>;
4295
4363
  }, z.core.$strip>;
4296
4364
  tracking: z.ZodObject<{
4297
- exerciseTrackingAnalysis: z.ZodObject<{
4298
- uniqueDays: z.ZodNumber;
4299
- mostFrequentSplit: z.ZodNullable<z.ZodString>;
4300
- mostFrequentSplitDays: z.ZodNullable<z.ZodNumber>;
4301
- lastWorkoutDate: z.ZodNullable<z.ZodString>;
4302
- splitDaysByName: z.ZodRecord<z.ZodString, z.ZodNumber>;
4303
- prs: z.ZodObject<{
4304
- prMax: z.ZodNullable<z.ZodObject<{
4305
- exercise: z.ZodString;
4306
- weight: z.ZodNumber;
4307
- reps: z.ZodInt;
4308
- workoutTimeUtc: z.ZodString;
4309
- }, z.core.$strip>>;
4365
+ trackingStats: z.ZodObject<{
4366
+ workoutCount: z.ZodCoercedNumber<unknown>;
4367
+ hasExerciseTracking: z.ZodBoolean;
4368
+ workoutTargets: z.ZodObject<{
4369
+ workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
4370
+ workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
4371
+ weekStreak: z.ZodCoercedNumber<unknown>;
4372
+ }, z.core.$strip>;
4373
+ lastWorkoutStats: z.ZodObject<{
4374
+ workoutDate: z.ZodNullable<z.ZodString>;
4375
+ workoutSplitName: z.ZodNullable<z.ZodString>;
4376
+ exerciseTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
4377
+ setTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
4310
4378
  }, z.core.$strip>;
4379
+ prs: z.ZodArray<z.ZodObject<{
4380
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
4381
+ exerciseId: z.ZodInt;
4382
+ exerciseName: z.ZodString;
4383
+ prWeight: z.ZodNumber;
4384
+ prReps: z.ZodInt;
4385
+ prSetIndex: z.ZodInt;
4386
+ }, z.core.$strip>>;
4311
4387
  }, z.core.$strip>;
4312
- exerciseTrackingMaps: z.ZodObject<{
4388
+ trackingMaps: z.ZodObject<{
4313
4389
  byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
4314
- id: z.ZodInt;
4315
- exerciseToSplitId: z.ZodInt;
4316
- orderIndex: z.ZodInt;
4317
- reps: z.ZodArray<z.ZodInt>;
4318
- workoutSplitId: z.ZodInt;
4319
- exerciseId: z.ZodInt;
4320
- exercise: z.ZodString;
4321
- exerciseToWorkoutSplit: z.ZodObject<{
4322
- sets: z.ZodArray<z.ZodInt>;
4323
- exercises: z.ZodObject<{
4390
+ exerciseTracking: z.ZodObject<{
4391
+ exerciseTrackingId: z.ZodInt;
4392
+ sets: z.ZodArray<z.ZodObject<{
4393
+ setIndex: z.ZodInt;
4394
+ weight: z.ZodNumber;
4395
+ reps: z.ZodInt;
4396
+ }, z.core.$strip>>;
4397
+ notes: z.ZodNullable<z.ZodString>;
4398
+ exerciseAssignment: z.ZodObject<{
4399
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
4400
+ orderIndex: z.ZodNullable<z.ZodInt>;
4401
+ exerciseId: z.ZodInt;
4402
+ workoutSplitId: z.ZodInt;
4403
+ workoutSplitName: z.ZodString;
4404
+ exerciseName: z.ZodString;
4324
4405
  targetMuscle: z.ZodString;
4325
4406
  specificTargetMuscle: z.ZodString;
4326
4407
  }, z.core.$strip>;
4327
4408
  }, z.core.$strip>;
4328
- notes: z.ZodNullable<z.ZodString>;
4329
- weight: z.ZodArray<z.ZodNumber>;
4330
- splitName: z.ZodString;
4331
4409
  }, z.core.$strip>>>;
4332
4410
  byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
4333
- id: z.ZodInt;
4334
- exerciseToSplitId: z.ZodInt;
4335
- weight: z.ZodArray<z.ZodNumber>;
4336
- reps: z.ZodArray<z.ZodInt>;
4337
- notes: z.ZodNullable<z.ZodString>;
4338
- exerciseId: z.ZodInt;
4339
- workoutSplitId: z.ZodInt;
4340
- splitName: z.ZodString;
4341
- exercise: z.ZodString;
4342
- workoutDate: z.ZodString;
4343
- orderIndex: z.ZodInt;
4344
- exerciseToWorkoutSplit: z.ZodObject<{
4345
- sets: z.ZodArray<z.ZodInt>;
4346
- exercises: z.ZodObject<{
4411
+ exerciseTracking: z.ZodObject<{
4412
+ exerciseTrackingId: z.ZodInt;
4413
+ sets: z.ZodArray<z.ZodObject<{
4414
+ setIndex: z.ZodInt;
4415
+ weight: z.ZodNumber;
4416
+ reps: z.ZodInt;
4417
+ }, z.core.$strip>>;
4418
+ notes: z.ZodNullable<z.ZodString>;
4419
+ exerciseAssignment: z.ZodObject<{
4420
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
4421
+ orderIndex: z.ZodNullable<z.ZodInt>;
4422
+ exerciseId: z.ZodInt;
4423
+ workoutSplitId: z.ZodInt;
4424
+ workoutSplitName: z.ZodString;
4425
+ exerciseName: z.ZodString;
4347
4426
  targetMuscle: z.ZodString;
4348
4427
  specificTargetMuscle: z.ZodString;
4349
4428
  }, z.core.$strip>;
4350
4429
  }, z.core.$strip>;
4351
4430
  }, z.core.$strip>>>;
4352
4431
  bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
4353
- id: z.ZodInt;
4354
- exerciseToSplitId: z.ZodInt;
4355
- orderIndex: z.ZodInt;
4356
- reps: z.ZodArray<z.ZodInt>;
4357
- workoutSplitId: z.ZodInt;
4358
- exerciseId: z.ZodInt;
4359
- exercise: z.ZodString;
4360
- exerciseToWorkoutSplit: z.ZodObject<{
4361
- sets: z.ZodArray<z.ZodInt>;
4362
- exercises: z.ZodObject<{
4432
+ exerciseTracking: z.ZodObject<{
4433
+ exerciseTrackingId: z.ZodInt;
4434
+ sets: z.ZodArray<z.ZodObject<{
4435
+ setIndex: z.ZodInt;
4436
+ weight: z.ZodNumber;
4437
+ reps: z.ZodInt;
4438
+ }, z.core.$strip>>;
4439
+ notes: z.ZodNullable<z.ZodString>;
4440
+ exerciseAssignment: z.ZodObject<{
4441
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
4442
+ orderIndex: z.ZodNullable<z.ZodInt>;
4443
+ exerciseId: z.ZodInt;
4444
+ workoutSplitId: z.ZodInt;
4445
+ workoutSplitName: z.ZodString;
4446
+ exerciseName: z.ZodString;
4363
4447
  targetMuscle: z.ZodString;
4364
4448
  specificTargetMuscle: z.ZodString;
4365
4449
  }, z.core.$strip>;
4366
4450
  }, z.core.$strip>;
4367
- notes: z.ZodNullable<z.ZodString>;
4368
- weight: z.ZodArray<z.ZodNumber>;
4369
- workoutDate: z.ZodString;
4370
4451
  }, z.core.$strip>>>;
4371
4452
  }, z.core.$strip>;
4372
4453
  }, z.core.$strip>;
@@ -4459,79 +4540,92 @@ declare const bootstrapContract: {
4459
4540
  }, z.core.$strip>>>>;
4460
4541
  }, z.core.$strip>;
4461
4542
  tracking: z.ZodObject<{
4462
- exerciseTrackingAnalysis: z.ZodObject<{
4463
- uniqueDays: z.ZodNumber;
4464
- mostFrequentSplit: z.ZodNullable<z.ZodString>;
4465
- mostFrequentSplitDays: z.ZodNullable<z.ZodNumber>;
4466
- lastWorkoutDate: z.ZodNullable<z.ZodString>;
4467
- splitDaysByName: z.ZodRecord<z.ZodString, z.ZodNumber>;
4468
- prs: z.ZodObject<{
4469
- prMax: z.ZodNullable<z.ZodObject<{
4470
- exercise: z.ZodString;
4471
- weight: z.ZodNumber;
4472
- reps: z.ZodInt;
4473
- workoutTimeUtc: z.ZodString;
4474
- }, z.core.$strip>>;
4543
+ trackingStats: z.ZodObject<{
4544
+ workoutCount: z.ZodCoercedNumber<unknown>;
4545
+ hasExerciseTracking: z.ZodBoolean;
4546
+ workoutTargets: z.ZodObject<{
4547
+ workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
4548
+ workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
4549
+ weekStreak: z.ZodCoercedNumber<unknown>;
4475
4550
  }, z.core.$strip>;
4551
+ lastWorkoutStats: z.ZodObject<{
4552
+ workoutDate: z.ZodNullable<z.ZodString>;
4553
+ workoutSplitName: z.ZodNullable<z.ZodString>;
4554
+ exerciseTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
4555
+ setTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
4556
+ }, z.core.$strip>;
4557
+ prs: z.ZodArray<z.ZodObject<{
4558
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
4559
+ exerciseId: z.ZodInt;
4560
+ exerciseName: z.ZodString;
4561
+ prWeight: z.ZodNumber;
4562
+ prReps: z.ZodInt;
4563
+ prSetIndex: z.ZodInt;
4564
+ }, z.core.$strip>>;
4476
4565
  }, z.core.$strip>;
4477
- exerciseTrackingMaps: z.ZodObject<{
4566
+ trackingMaps: z.ZodObject<{
4478
4567
  byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
4479
- id: z.ZodInt;
4480
- exerciseToSplitId: z.ZodInt;
4481
- orderIndex: z.ZodInt;
4482
- reps: z.ZodArray<z.ZodInt>;
4483
- workoutSplitId: z.ZodInt;
4484
- exerciseId: z.ZodInt;
4485
- exercise: z.ZodString;
4486
- exerciseToWorkoutSplit: z.ZodObject<{
4487
- sets: z.ZodArray<z.ZodInt>;
4488
- exercises: z.ZodObject<{
4568
+ exerciseTracking: z.ZodObject<{
4569
+ exerciseTrackingId: z.ZodInt;
4570
+ sets: z.ZodArray<z.ZodObject<{
4571
+ setIndex: z.ZodInt;
4572
+ weight: z.ZodNumber;
4573
+ reps: z.ZodInt;
4574
+ }, z.core.$strip>>;
4575
+ notes: z.ZodNullable<z.ZodString>;
4576
+ exerciseAssignment: z.ZodObject<{
4577
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
4578
+ orderIndex: z.ZodNullable<z.ZodInt>;
4579
+ exerciseId: z.ZodInt;
4580
+ workoutSplitId: z.ZodInt;
4581
+ workoutSplitName: z.ZodString;
4582
+ exerciseName: z.ZodString;
4489
4583
  targetMuscle: z.ZodString;
4490
4584
  specificTargetMuscle: z.ZodString;
4491
4585
  }, z.core.$strip>;
4492
4586
  }, z.core.$strip>;
4493
- notes: z.ZodNullable<z.ZodString>;
4494
- weight: z.ZodArray<z.ZodNumber>;
4495
- splitName: z.ZodString;
4496
4587
  }, z.core.$strip>>>;
4497
4588
  byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
4498
- id: z.ZodInt;
4499
- exerciseToSplitId: z.ZodInt;
4500
- weight: z.ZodArray<z.ZodNumber>;
4501
- reps: z.ZodArray<z.ZodInt>;
4502
- notes: z.ZodNullable<z.ZodString>;
4503
- exerciseId: z.ZodInt;
4504
- workoutSplitId: z.ZodInt;
4505
- splitName: z.ZodString;
4506
- exercise: z.ZodString;
4507
- workoutDate: z.ZodString;
4508
- orderIndex: z.ZodInt;
4509
- exerciseToWorkoutSplit: z.ZodObject<{
4510
- sets: z.ZodArray<z.ZodInt>;
4511
- exercises: z.ZodObject<{
4589
+ exerciseTracking: z.ZodObject<{
4590
+ exerciseTrackingId: z.ZodInt;
4591
+ sets: z.ZodArray<z.ZodObject<{
4592
+ setIndex: z.ZodInt;
4593
+ weight: z.ZodNumber;
4594
+ reps: z.ZodInt;
4595
+ }, z.core.$strip>>;
4596
+ notes: z.ZodNullable<z.ZodString>;
4597
+ exerciseAssignment: z.ZodObject<{
4598
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
4599
+ orderIndex: z.ZodNullable<z.ZodInt>;
4600
+ exerciseId: z.ZodInt;
4601
+ workoutSplitId: z.ZodInt;
4602
+ workoutSplitName: z.ZodString;
4603
+ exerciseName: z.ZodString;
4512
4604
  targetMuscle: z.ZodString;
4513
4605
  specificTargetMuscle: z.ZodString;
4514
4606
  }, z.core.$strip>;
4515
4607
  }, z.core.$strip>;
4516
4608
  }, z.core.$strip>>>;
4517
4609
  bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
4518
- id: z.ZodInt;
4519
- exerciseToSplitId: z.ZodInt;
4520
- orderIndex: z.ZodInt;
4521
- reps: z.ZodArray<z.ZodInt>;
4522
- workoutSplitId: z.ZodInt;
4523
- exerciseId: z.ZodInt;
4524
- exercise: z.ZodString;
4525
- exerciseToWorkoutSplit: z.ZodObject<{
4526
- sets: z.ZodArray<z.ZodInt>;
4527
- exercises: 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;
4528
4625
  targetMuscle: z.ZodString;
4529
4626
  specificTargetMuscle: z.ZodString;
4530
4627
  }, z.core.$strip>;
4531
4628
  }, z.core.$strip>;
4532
- notes: z.ZodNullable<z.ZodString>;
4533
- weight: z.ZodArray<z.ZodNumber>;
4534
- workoutDate: z.ZodString;
4535
4629
  }, z.core.$strip>>>;
4536
4630
  }, z.core.$strip>;
4537
4631
  }, z.core.$strip>;
@@ -5647,164 +5741,193 @@ declare const getExerciseTrackingRequestSchema: z.ZodObject<{
5647
5741
  }, z.core.$strip>;
5648
5742
  }, z.core.$strip>;
5649
5743
  declare const getExerciseTrackingResponseSchema: z.ZodObject<{
5650
- exerciseTrackingAnalysis: z.ZodObject<{
5651
- uniqueDays: z.ZodNumber;
5652
- mostFrequentSplit: z.ZodNullable<z.ZodString>;
5653
- mostFrequentSplitDays: z.ZodNullable<z.ZodNumber>;
5654
- lastWorkoutDate: z.ZodNullable<z.ZodString>;
5655
- splitDaysByName: z.ZodRecord<z.ZodString, z.ZodNumber>;
5656
- prs: z.ZodObject<{
5657
- prMax: z.ZodNullable<z.ZodObject<{
5658
- exercise: z.ZodString;
5744
+ byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5745
+ exerciseTracking: z.ZodObject<{
5746
+ exerciseTrackingId: z.ZodInt;
5747
+ sets: z.ZodArray<z.ZodObject<{
5748
+ setIndex: z.ZodInt;
5749
+ weight: z.ZodNumber;
5750
+ reps: z.ZodInt;
5751
+ }, z.core.$strip>>;
5752
+ notes: z.ZodNullable<z.ZodString>;
5753
+ exerciseAssignment: z.ZodObject<{
5754
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
5755
+ orderIndex: z.ZodNullable<z.ZodInt>;
5756
+ exerciseId: z.ZodInt;
5757
+ workoutSplitId: z.ZodInt;
5758
+ workoutSplitName: z.ZodString;
5759
+ exerciseName: z.ZodString;
5760
+ targetMuscle: z.ZodString;
5761
+ specificTargetMuscle: z.ZodString;
5762
+ }, z.core.$strip>;
5763
+ }, z.core.$strip>;
5764
+ }, z.core.$strip>>>;
5765
+ byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5766
+ exerciseTracking: z.ZodObject<{
5767
+ exerciseTrackingId: z.ZodInt;
5768
+ sets: z.ZodArray<z.ZodObject<{
5769
+ setIndex: z.ZodInt;
5770
+ weight: z.ZodNumber;
5771
+ reps: z.ZodInt;
5772
+ }, z.core.$strip>>;
5773
+ notes: z.ZodNullable<z.ZodString>;
5774
+ exerciseAssignment: z.ZodObject<{
5775
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
5776
+ orderIndex: z.ZodNullable<z.ZodInt>;
5777
+ exerciseId: z.ZodInt;
5778
+ workoutSplitId: z.ZodInt;
5779
+ workoutSplitName: z.ZodString;
5780
+ exerciseName: z.ZodString;
5781
+ targetMuscle: z.ZodString;
5782
+ specificTargetMuscle: z.ZodString;
5783
+ }, z.core.$strip>;
5784
+ }, z.core.$strip>;
5785
+ }, z.core.$strip>>>;
5786
+ bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5787
+ exerciseTracking: z.ZodObject<{
5788
+ exerciseTrackingId: z.ZodInt;
5789
+ sets: z.ZodArray<z.ZodObject<{
5790
+ setIndex: z.ZodInt;
5659
5791
  weight: z.ZodNumber;
5660
5792
  reps: z.ZodInt;
5661
- workoutTimeUtc: z.ZodString;
5662
5793
  }, z.core.$strip>>;
5794
+ notes: z.ZodNullable<z.ZodString>;
5795
+ exerciseAssignment: z.ZodObject<{
5796
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
5797
+ orderIndex: z.ZodNullable<z.ZodInt>;
5798
+ exerciseId: z.ZodInt;
5799
+ workoutSplitId: z.ZodInt;
5800
+ workoutSplitName: z.ZodString;
5801
+ exerciseName: z.ZodString;
5802
+ targetMuscle: z.ZodString;
5803
+ specificTargetMuscle: z.ZodString;
5804
+ }, z.core.$strip>;
5805
+ }, z.core.$strip>;
5806
+ }, z.core.$strip>>>;
5807
+ }, z.core.$strip>;
5808
+ declare const getExerciseTrackingContract: {
5809
+ request: z.ZodObject<{
5810
+ query: z.ZodObject<{
5811
+ tz: z.ZodOptional<z.ZodString>;
5663
5812
  }, z.core.$strip>;
5664
5813
  }, z.core.$strip>;
5665
- exerciseTrackingMaps: z.ZodObject<{
5814
+ response: z.ZodObject<{
5666
5815
  byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5667
- id: z.ZodInt;
5668
- exerciseToSplitId: z.ZodInt;
5669
- orderIndex: z.ZodInt;
5670
- reps: z.ZodArray<z.ZodInt>;
5671
- workoutSplitId: z.ZodInt;
5672
- exerciseId: z.ZodInt;
5673
- exercise: z.ZodString;
5674
- exerciseToWorkoutSplit: z.ZodObject<{
5675
- sets: z.ZodArray<z.ZodInt>;
5676
- exercises: z.ZodObject<{
5816
+ exerciseTracking: z.ZodObject<{
5817
+ exerciseTrackingId: z.ZodInt;
5818
+ sets: z.ZodArray<z.ZodObject<{
5819
+ setIndex: z.ZodInt;
5820
+ weight: z.ZodNumber;
5821
+ reps: z.ZodInt;
5822
+ }, z.core.$strip>>;
5823
+ notes: z.ZodNullable<z.ZodString>;
5824
+ exerciseAssignment: z.ZodObject<{
5825
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
5826
+ orderIndex: z.ZodNullable<z.ZodInt>;
5827
+ exerciseId: z.ZodInt;
5828
+ workoutSplitId: z.ZodInt;
5829
+ workoutSplitName: z.ZodString;
5830
+ exerciseName: z.ZodString;
5677
5831
  targetMuscle: z.ZodString;
5678
5832
  specificTargetMuscle: z.ZodString;
5679
5833
  }, z.core.$strip>;
5680
5834
  }, z.core.$strip>;
5681
- notes: z.ZodNullable<z.ZodString>;
5682
- weight: z.ZodArray<z.ZodNumber>;
5683
- splitName: z.ZodString;
5684
5835
  }, z.core.$strip>>>;
5685
5836
  byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5686
- id: z.ZodInt;
5687
- exerciseToSplitId: z.ZodInt;
5688
- weight: z.ZodArray<z.ZodNumber>;
5689
- reps: z.ZodArray<z.ZodInt>;
5690
- notes: z.ZodNullable<z.ZodString>;
5691
- exerciseId: z.ZodInt;
5692
- workoutSplitId: z.ZodInt;
5693
- splitName: z.ZodString;
5694
- exercise: z.ZodString;
5695
- workoutDate: z.ZodString;
5696
- orderIndex: z.ZodInt;
5697
- exerciseToWorkoutSplit: z.ZodObject<{
5698
- sets: z.ZodArray<z.ZodInt>;
5699
- exercises: z.ZodObject<{
5837
+ exerciseTracking: z.ZodObject<{
5838
+ exerciseTrackingId: z.ZodInt;
5839
+ sets: z.ZodArray<z.ZodObject<{
5840
+ setIndex: z.ZodInt;
5841
+ weight: z.ZodNumber;
5842
+ reps: z.ZodInt;
5843
+ }, z.core.$strip>>;
5844
+ notes: z.ZodNullable<z.ZodString>;
5845
+ exerciseAssignment: z.ZodObject<{
5846
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
5847
+ orderIndex: z.ZodNullable<z.ZodInt>;
5848
+ exerciseId: z.ZodInt;
5849
+ workoutSplitId: z.ZodInt;
5850
+ workoutSplitName: z.ZodString;
5851
+ exerciseName: z.ZodString;
5700
5852
  targetMuscle: z.ZodString;
5701
5853
  specificTargetMuscle: z.ZodString;
5702
5854
  }, z.core.$strip>;
5703
5855
  }, z.core.$strip>;
5704
5856
  }, z.core.$strip>>>;
5705
5857
  bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5706
- id: z.ZodInt;
5707
- exerciseToSplitId: z.ZodInt;
5708
- orderIndex: z.ZodInt;
5709
- reps: z.ZodArray<z.ZodInt>;
5710
- workoutSplitId: z.ZodInt;
5711
- exerciseId: z.ZodInt;
5712
- exercise: z.ZodString;
5713
- exerciseToWorkoutSplit: z.ZodObject<{
5714
- sets: z.ZodArray<z.ZodInt>;
5715
- exercises: z.ZodObject<{
5858
+ exerciseTracking: z.ZodObject<{
5859
+ exerciseTrackingId: z.ZodInt;
5860
+ sets: z.ZodArray<z.ZodObject<{
5861
+ setIndex: z.ZodInt;
5862
+ weight: z.ZodNumber;
5863
+ reps: z.ZodInt;
5864
+ }, z.core.$strip>>;
5865
+ notes: z.ZodNullable<z.ZodString>;
5866
+ exerciseAssignment: z.ZodObject<{
5867
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
5868
+ orderIndex: z.ZodNullable<z.ZodInt>;
5869
+ exerciseId: z.ZodInt;
5870
+ workoutSplitId: z.ZodInt;
5871
+ workoutSplitName: z.ZodString;
5872
+ exerciseName: z.ZodString;
5716
5873
  targetMuscle: z.ZodString;
5717
5874
  specificTargetMuscle: z.ZodString;
5718
5875
  }, z.core.$strip>;
5719
5876
  }, z.core.$strip>;
5720
- notes: z.ZodNullable<z.ZodString>;
5721
- weight: z.ZodArray<z.ZodNumber>;
5722
- workoutDate: z.ZodString;
5723
5877
  }, z.core.$strip>>>;
5724
5878
  }, z.core.$strip>;
5879
+ };
5880
+ declare const getExerciseTrackingStatsResponseSchema: z.ZodObject<{
5881
+ workoutCount: z.ZodCoercedNumber<unknown>;
5882
+ hasExerciseTracking: z.ZodBoolean;
5883
+ workoutTargets: z.ZodObject<{
5884
+ workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
5885
+ workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
5886
+ weekStreak: z.ZodCoercedNumber<unknown>;
5887
+ }, z.core.$strip>;
5888
+ lastWorkoutStats: z.ZodObject<{
5889
+ workoutDate: z.ZodNullable<z.ZodString>;
5890
+ workoutSplitName: z.ZodNullable<z.ZodString>;
5891
+ exerciseTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
5892
+ setTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
5893
+ }, z.core.$strip>;
5894
+ prs: z.ZodArray<z.ZodObject<{
5895
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
5896
+ exerciseId: z.ZodInt;
5897
+ exerciseName: z.ZodString;
5898
+ prWeight: z.ZodNumber;
5899
+ prReps: z.ZodInt;
5900
+ prSetIndex: z.ZodInt;
5901
+ }, z.core.$strip>>;
5725
5902
  }, z.core.$strip>;
5726
- declare const getExerciseTrackingContract: {
5903
+ declare const getExerciseTrackingStatsContract: {
5727
5904
  request: z.ZodObject<{
5728
5905
  query: z.ZodObject<{
5729
5906
  tz: z.ZodOptional<z.ZodString>;
5730
5907
  }, z.core.$strip>;
5731
5908
  }, z.core.$strip>;
5732
5909
  response: z.ZodObject<{
5733
- exerciseTrackingAnalysis: z.ZodObject<{
5734
- uniqueDays: z.ZodNumber;
5735
- mostFrequentSplit: z.ZodNullable<z.ZodString>;
5736
- mostFrequentSplitDays: z.ZodNullable<z.ZodNumber>;
5737
- lastWorkoutDate: z.ZodNullable<z.ZodString>;
5738
- splitDaysByName: z.ZodRecord<z.ZodString, z.ZodNumber>;
5739
- prs: z.ZodObject<{
5740
- prMax: z.ZodNullable<z.ZodObject<{
5741
- exercise: z.ZodString;
5742
- weight: z.ZodNumber;
5743
- reps: z.ZodInt;
5744
- workoutTimeUtc: z.ZodString;
5745
- }, z.core.$strip>>;
5746
- }, z.core.$strip>;
5910
+ workoutCount: z.ZodCoercedNumber<unknown>;
5911
+ hasExerciseTracking: z.ZodBoolean;
5912
+ workoutTargets: z.ZodObject<{
5913
+ workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
5914
+ workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
5915
+ weekStreak: z.ZodCoercedNumber<unknown>;
5747
5916
  }, z.core.$strip>;
5748
- exerciseTrackingMaps: z.ZodObject<{
5749
- byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5750
- id: z.ZodInt;
5751
- exerciseToSplitId: z.ZodInt;
5752
- orderIndex: z.ZodInt;
5753
- reps: z.ZodArray<z.ZodInt>;
5754
- workoutSplitId: z.ZodInt;
5755
- exerciseId: z.ZodInt;
5756
- exercise: z.ZodString;
5757
- exerciseToWorkoutSplit: z.ZodObject<{
5758
- sets: z.ZodArray<z.ZodInt>;
5759
- exercises: z.ZodObject<{
5760
- targetMuscle: z.ZodString;
5761
- specificTargetMuscle: z.ZodString;
5762
- }, z.core.$strip>;
5763
- }, z.core.$strip>;
5764
- notes: z.ZodNullable<z.ZodString>;
5765
- weight: z.ZodArray<z.ZodNumber>;
5766
- splitName: z.ZodString;
5767
- }, z.core.$strip>>>;
5768
- byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5769
- id: z.ZodInt;
5770
- exerciseToSplitId: z.ZodInt;
5771
- weight: z.ZodArray<z.ZodNumber>;
5772
- reps: z.ZodArray<z.ZodInt>;
5773
- notes: z.ZodNullable<z.ZodString>;
5774
- exerciseId: z.ZodInt;
5775
- workoutSplitId: z.ZodInt;
5776
- splitName: z.ZodString;
5777
- exercise: z.ZodString;
5778
- workoutDate: z.ZodString;
5779
- orderIndex: z.ZodInt;
5780
- exerciseToWorkoutSplit: z.ZodObject<{
5781
- sets: z.ZodArray<z.ZodInt>;
5782
- exercises: z.ZodObject<{
5783
- targetMuscle: z.ZodString;
5784
- specificTargetMuscle: z.ZodString;
5785
- }, z.core.$strip>;
5786
- }, z.core.$strip>;
5787
- }, z.core.$strip>>>;
5788
- bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5789
- id: z.ZodInt;
5790
- exerciseToSplitId: z.ZodInt;
5791
- orderIndex: z.ZodInt;
5792
- reps: z.ZodArray<z.ZodInt>;
5793
- workoutSplitId: z.ZodInt;
5794
- exerciseId: z.ZodInt;
5795
- exercise: z.ZodString;
5796
- exerciseToWorkoutSplit: z.ZodObject<{
5797
- sets: z.ZodArray<z.ZodInt>;
5798
- exercises: z.ZodObject<{
5799
- targetMuscle: z.ZodString;
5800
- specificTargetMuscle: z.ZodString;
5801
- }, z.core.$strip>;
5802
- }, z.core.$strip>;
5803
- notes: z.ZodNullable<z.ZodString>;
5804
- weight: z.ZodArray<z.ZodNumber>;
5805
- workoutDate: z.ZodString;
5806
- }, z.core.$strip>>>;
5917
+ lastWorkoutStats: z.ZodObject<{
5918
+ workoutDate: z.ZodNullable<z.ZodString>;
5919
+ workoutSplitName: z.ZodNullable<z.ZodString>;
5920
+ exerciseTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
5921
+ setTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
5807
5922
  }, z.core.$strip>;
5923
+ prs: z.ZodArray<z.ZodObject<{
5924
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
5925
+ exerciseId: z.ZodInt;
5926
+ exerciseName: z.ZodString;
5927
+ prWeight: z.ZodNumber;
5928
+ prReps: z.ZodInt;
5929
+ prSetIndex: z.ZodInt;
5930
+ }, z.core.$strip>>;
5808
5931
  }, z.core.$strip>;
5809
5932
  };
5810
5933
  declare const finishWorkoutRequestSchema: z.ZodObject<{
@@ -5826,79 +5949,92 @@ declare const finishWorkoutRequestSchema: z.ZodObject<{
5826
5949
  }, z.core.$strip>;
5827
5950
  }, z.core.$strip>;
5828
5951
  declare const finishUserWorkoutResponseSchema: z.ZodObject<{
5829
- exerciseTrackingAnalysis: z.ZodObject<{
5830
- uniqueDays: z.ZodNumber;
5831
- mostFrequentSplit: z.ZodNullable<z.ZodString>;
5832
- mostFrequentSplitDays: z.ZodNullable<z.ZodNumber>;
5833
- lastWorkoutDate: z.ZodNullable<z.ZodString>;
5834
- splitDaysByName: z.ZodRecord<z.ZodString, z.ZodNumber>;
5835
- prs: z.ZodObject<{
5836
- prMax: z.ZodNullable<z.ZodObject<{
5837
- exercise: z.ZodString;
5838
- weight: z.ZodNumber;
5839
- reps: z.ZodInt;
5840
- workoutTimeUtc: z.ZodString;
5841
- }, z.core.$strip>>;
5952
+ trackingStats: z.ZodObject<{
5953
+ workoutCount: z.ZodCoercedNumber<unknown>;
5954
+ hasExerciseTracking: z.ZodBoolean;
5955
+ workoutTargets: z.ZodObject<{
5956
+ workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
5957
+ workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
5958
+ weekStreak: z.ZodCoercedNumber<unknown>;
5959
+ }, z.core.$strip>;
5960
+ lastWorkoutStats: z.ZodObject<{
5961
+ workoutDate: z.ZodNullable<z.ZodString>;
5962
+ workoutSplitName: z.ZodNullable<z.ZodString>;
5963
+ exerciseTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
5964
+ setTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
5842
5965
  }, z.core.$strip>;
5966
+ prs: z.ZodArray<z.ZodObject<{
5967
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
5968
+ exerciseId: z.ZodInt;
5969
+ exerciseName: z.ZodString;
5970
+ prWeight: z.ZodNumber;
5971
+ prReps: z.ZodInt;
5972
+ prSetIndex: z.ZodInt;
5973
+ }, z.core.$strip>>;
5843
5974
  }, z.core.$strip>;
5844
- exerciseTrackingMaps: z.ZodObject<{
5975
+ trackingMaps: z.ZodObject<{
5845
5976
  byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5846
- id: z.ZodInt;
5847
- exerciseToSplitId: z.ZodInt;
5848
- orderIndex: z.ZodInt;
5849
- reps: z.ZodArray<z.ZodInt>;
5850
- workoutSplitId: z.ZodInt;
5851
- exerciseId: z.ZodInt;
5852
- exercise: z.ZodString;
5853
- exerciseToWorkoutSplit: z.ZodObject<{
5854
- sets: z.ZodArray<z.ZodInt>;
5855
- exercises: z.ZodObject<{
5977
+ exerciseTracking: z.ZodObject<{
5978
+ exerciseTrackingId: z.ZodInt;
5979
+ sets: z.ZodArray<z.ZodObject<{
5980
+ setIndex: z.ZodInt;
5981
+ weight: z.ZodNumber;
5982
+ reps: z.ZodInt;
5983
+ }, z.core.$strip>>;
5984
+ notes: z.ZodNullable<z.ZodString>;
5985
+ exerciseAssignment: z.ZodObject<{
5986
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
5987
+ orderIndex: z.ZodNullable<z.ZodInt>;
5988
+ exerciseId: z.ZodInt;
5989
+ workoutSplitId: z.ZodInt;
5990
+ workoutSplitName: z.ZodString;
5991
+ exerciseName: z.ZodString;
5856
5992
  targetMuscle: z.ZodString;
5857
5993
  specificTargetMuscle: z.ZodString;
5858
5994
  }, z.core.$strip>;
5859
5995
  }, z.core.$strip>;
5860
- notes: z.ZodNullable<z.ZodString>;
5861
- weight: z.ZodArray<z.ZodNumber>;
5862
- splitName: z.ZodString;
5863
5996
  }, z.core.$strip>>>;
5864
5997
  byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5865
- id: z.ZodInt;
5866
- exerciseToSplitId: z.ZodInt;
5867
- weight: z.ZodArray<z.ZodNumber>;
5868
- reps: z.ZodArray<z.ZodInt>;
5869
- notes: z.ZodNullable<z.ZodString>;
5870
- exerciseId: z.ZodInt;
5871
- workoutSplitId: z.ZodInt;
5872
- splitName: z.ZodString;
5873
- exercise: z.ZodString;
5874
- workoutDate: z.ZodString;
5875
- orderIndex: z.ZodInt;
5876
- exerciseToWorkoutSplit: z.ZodObject<{
5877
- sets: z.ZodArray<z.ZodInt>;
5878
- exercises: z.ZodObject<{
5998
+ exerciseTracking: z.ZodObject<{
5999
+ exerciseTrackingId: z.ZodInt;
6000
+ sets: z.ZodArray<z.ZodObject<{
6001
+ setIndex: z.ZodInt;
6002
+ weight: z.ZodNumber;
6003
+ reps: z.ZodInt;
6004
+ }, z.core.$strip>>;
6005
+ notes: z.ZodNullable<z.ZodString>;
6006
+ exerciseAssignment: z.ZodObject<{
6007
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6008
+ orderIndex: z.ZodNullable<z.ZodInt>;
6009
+ exerciseId: z.ZodInt;
6010
+ workoutSplitId: z.ZodInt;
6011
+ workoutSplitName: z.ZodString;
6012
+ exerciseName: z.ZodString;
5879
6013
  targetMuscle: z.ZodString;
5880
6014
  specificTargetMuscle: z.ZodString;
5881
6015
  }, z.core.$strip>;
5882
6016
  }, z.core.$strip>;
5883
6017
  }, z.core.$strip>>>;
5884
6018
  bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5885
- id: z.ZodInt;
5886
- exerciseToSplitId: z.ZodInt;
5887
- orderIndex: z.ZodInt;
5888
- reps: z.ZodArray<z.ZodInt>;
5889
- workoutSplitId: z.ZodInt;
5890
- exerciseId: z.ZodInt;
5891
- exercise: z.ZodString;
5892
- exerciseToWorkoutSplit: z.ZodObject<{
5893
- sets: z.ZodArray<z.ZodInt>;
5894
- exercises: z.ZodObject<{
6019
+ exerciseTracking: z.ZodObject<{
6020
+ exerciseTrackingId: z.ZodInt;
6021
+ sets: z.ZodArray<z.ZodObject<{
6022
+ setIndex: z.ZodInt;
6023
+ weight: z.ZodNumber;
6024
+ reps: z.ZodInt;
6025
+ }, z.core.$strip>>;
6026
+ notes: z.ZodNullable<z.ZodString>;
6027
+ exerciseAssignment: z.ZodObject<{
6028
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6029
+ orderIndex: z.ZodNullable<z.ZodInt>;
6030
+ exerciseId: z.ZodInt;
6031
+ workoutSplitId: z.ZodInt;
6032
+ workoutSplitName: z.ZodString;
6033
+ exerciseName: z.ZodString;
5895
6034
  targetMuscle: z.ZodString;
5896
6035
  specificTargetMuscle: z.ZodString;
5897
6036
  }, z.core.$strip>;
5898
6037
  }, z.core.$strip>;
5899
- notes: z.ZodNullable<z.ZodString>;
5900
- weight: z.ZodArray<z.ZodNumber>;
5901
- workoutDate: z.ZodString;
5902
6038
  }, z.core.$strip>>>;
5903
6039
  }, z.core.$strip>;
5904
6040
  }, z.core.$strip>;
@@ -5922,85 +6058,99 @@ declare const finishUserWorkoutContract: {
5922
6058
  }, z.core.$strip>;
5923
6059
  }, z.core.$strip>;
5924
6060
  response: z.ZodObject<{
5925
- exerciseTrackingAnalysis: z.ZodObject<{
5926
- uniqueDays: z.ZodNumber;
5927
- mostFrequentSplit: z.ZodNullable<z.ZodString>;
5928
- mostFrequentSplitDays: z.ZodNullable<z.ZodNumber>;
5929
- lastWorkoutDate: z.ZodNullable<z.ZodString>;
5930
- splitDaysByName: z.ZodRecord<z.ZodString, z.ZodNumber>;
5931
- prs: z.ZodObject<{
5932
- prMax: z.ZodNullable<z.ZodObject<{
5933
- exercise: z.ZodString;
5934
- weight: z.ZodNumber;
5935
- reps: z.ZodInt;
5936
- workoutTimeUtc: z.ZodString;
5937
- }, z.core.$strip>>;
6061
+ trackingStats: z.ZodObject<{
6062
+ workoutCount: z.ZodCoercedNumber<unknown>;
6063
+ hasExerciseTracking: z.ZodBoolean;
6064
+ workoutTargets: z.ZodObject<{
6065
+ workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
6066
+ workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
6067
+ weekStreak: z.ZodCoercedNumber<unknown>;
5938
6068
  }, z.core.$strip>;
6069
+ lastWorkoutStats: z.ZodObject<{
6070
+ workoutDate: z.ZodNullable<z.ZodString>;
6071
+ workoutSplitName: z.ZodNullable<z.ZodString>;
6072
+ exerciseTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
6073
+ setTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
6074
+ }, z.core.$strip>;
6075
+ prs: z.ZodArray<z.ZodObject<{
6076
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6077
+ exerciseId: z.ZodInt;
6078
+ exerciseName: z.ZodString;
6079
+ prWeight: z.ZodNumber;
6080
+ prReps: z.ZodInt;
6081
+ prSetIndex: z.ZodInt;
6082
+ }, z.core.$strip>>;
5939
6083
  }, z.core.$strip>;
5940
- exerciseTrackingMaps: z.ZodObject<{
6084
+ trackingMaps: z.ZodObject<{
5941
6085
  byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5942
- id: z.ZodInt;
5943
- exerciseToSplitId: z.ZodInt;
5944
- orderIndex: z.ZodInt;
5945
- reps: z.ZodArray<z.ZodInt>;
5946
- workoutSplitId: z.ZodInt;
5947
- exerciseId: z.ZodInt;
5948
- exercise: z.ZodString;
5949
- exerciseToWorkoutSplit: z.ZodObject<{
5950
- sets: z.ZodArray<z.ZodInt>;
5951
- exercises: z.ZodObject<{
6086
+ exerciseTracking: z.ZodObject<{
6087
+ exerciseTrackingId: z.ZodInt;
6088
+ sets: z.ZodArray<z.ZodObject<{
6089
+ setIndex: z.ZodInt;
6090
+ weight: z.ZodNumber;
6091
+ reps: z.ZodInt;
6092
+ }, z.core.$strip>>;
6093
+ notes: z.ZodNullable<z.ZodString>;
6094
+ exerciseAssignment: z.ZodObject<{
6095
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6096
+ orderIndex: z.ZodNullable<z.ZodInt>;
6097
+ exerciseId: z.ZodInt;
6098
+ workoutSplitId: z.ZodInt;
6099
+ workoutSplitName: z.ZodString;
6100
+ exerciseName: z.ZodString;
5952
6101
  targetMuscle: z.ZodString;
5953
6102
  specificTargetMuscle: z.ZodString;
5954
6103
  }, z.core.$strip>;
5955
6104
  }, z.core.$strip>;
5956
- notes: z.ZodNullable<z.ZodString>;
5957
- weight: z.ZodArray<z.ZodNumber>;
5958
- splitName: z.ZodString;
5959
6105
  }, z.core.$strip>>>;
5960
6106
  byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5961
- id: z.ZodInt;
5962
- exerciseToSplitId: z.ZodInt;
5963
- weight: z.ZodArray<z.ZodNumber>;
5964
- reps: z.ZodArray<z.ZodInt>;
5965
- notes: z.ZodNullable<z.ZodString>;
5966
- exerciseId: z.ZodInt;
5967
- workoutSplitId: z.ZodInt;
5968
- splitName: z.ZodString;
5969
- exercise: z.ZodString;
5970
- workoutDate: z.ZodString;
5971
- orderIndex: z.ZodInt;
5972
- exerciseToWorkoutSplit: z.ZodObject<{
5973
- sets: z.ZodArray<z.ZodInt>;
5974
- exercises: z.ZodObject<{
6107
+ exerciseTracking: z.ZodObject<{
6108
+ exerciseTrackingId: z.ZodInt;
6109
+ sets: z.ZodArray<z.ZodObject<{
6110
+ setIndex: z.ZodInt;
6111
+ weight: z.ZodNumber;
6112
+ reps: z.ZodInt;
6113
+ }, z.core.$strip>>;
6114
+ notes: z.ZodNullable<z.ZodString>;
6115
+ exerciseAssignment: z.ZodObject<{
6116
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6117
+ orderIndex: z.ZodNullable<z.ZodInt>;
6118
+ exerciseId: z.ZodInt;
6119
+ workoutSplitId: z.ZodInt;
6120
+ workoutSplitName: z.ZodString;
6121
+ exerciseName: z.ZodString;
5975
6122
  targetMuscle: z.ZodString;
5976
6123
  specificTargetMuscle: z.ZodString;
5977
6124
  }, z.core.$strip>;
5978
6125
  }, z.core.$strip>;
5979
6126
  }, z.core.$strip>>>;
5980
6127
  bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
5981
- id: z.ZodInt;
5982
- exerciseToSplitId: z.ZodInt;
5983
- orderIndex: z.ZodInt;
5984
- reps: z.ZodArray<z.ZodInt>;
5985
- workoutSplitId: z.ZodInt;
5986
- exerciseId: z.ZodInt;
5987
- exercise: z.ZodString;
5988
- exerciseToWorkoutSplit: z.ZodObject<{
5989
- sets: z.ZodArray<z.ZodInt>;
5990
- exercises: z.ZodObject<{
6128
+ exerciseTracking: z.ZodObject<{
6129
+ exerciseTrackingId: z.ZodInt;
6130
+ sets: z.ZodArray<z.ZodObject<{
6131
+ setIndex: z.ZodInt;
6132
+ weight: z.ZodNumber;
6133
+ reps: z.ZodInt;
6134
+ }, z.core.$strip>>;
6135
+ notes: z.ZodNullable<z.ZodString>;
6136
+ exerciseAssignment: z.ZodObject<{
6137
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6138
+ orderIndex: z.ZodNullable<z.ZodInt>;
6139
+ exerciseId: z.ZodInt;
6140
+ workoutSplitId: z.ZodInt;
6141
+ workoutSplitName: z.ZodString;
6142
+ exerciseName: z.ZodString;
5991
6143
  targetMuscle: z.ZodString;
5992
6144
  specificTargetMuscle: z.ZodString;
5993
6145
  }, z.core.$strip>;
5994
6146
  }, z.core.$strip>;
5995
- notes: z.ZodNullable<z.ZodString>;
5996
- weight: z.ZodArray<z.ZodNumber>;
5997
- workoutDate: z.ZodString;
5998
6147
  }, z.core.$strip>>>;
5999
6148
  }, z.core.$strip>;
6000
6149
  }, z.core.$strip>;
6001
6150
  };
6002
6151
  type GetExerciseTrackingQuery = QueryOf<typeof getExerciseTrackingContract>;
6003
6152
  type GetExerciseTrackingResponse = ResponseOf<typeof getExerciseTrackingContract>;
6153
+ type GetExerciseTrackingStatsResponse = ResponseOf<typeof getExerciseTrackingStatsContract>;
6004
6154
  type FinishUserWorkoutBody = BodyOf<typeof finishUserWorkoutContract>;
6005
6155
  type FinishUserWorkoutResponse = ResponseOf<typeof finishUserWorkoutContract>;
6006
6156
 
@@ -6104,164 +6254,369 @@ declare const trackingBySplitNameItemQueryDtoSchema: z.ZodObject<{
6104
6254
  weight: z.ZodArray<z.ZodNumber>;
6105
6255
  workoutDate: z.ZodString;
6106
6256
  }, z.core.$strip>;
6107
- /** Complete tracking and statistics aggregate returned by the tracking query. */
6108
- declare const exerciseTrackingAndStatsQueryDtoSchema: z.ZodObject<{
6109
- exerciseTrackingAnalysis: z.ZodObject<{
6110
- uniqueDays: z.ZodNumber;
6111
- mostFrequentSplit: z.ZodNullable<z.ZodString>;
6112
- mostFrequentSplitDays: z.ZodNullable<z.ZodNumber>;
6113
- lastWorkoutDate: z.ZodNullable<z.ZodString>;
6114
- splitDaysByName: z.ZodRecord<z.ZodString, z.ZodNumber>;
6115
- prs: z.ZodObject<{
6116
- prMax: z.ZodNullable<z.ZodObject<{
6117
- exercise: z.ZodString;
6257
+ declare const exerciseTrackingStatsQueryDtoSchema: z.ZodObject<{
6258
+ workoutCount: z.ZodCoercedNumber<unknown>;
6259
+ hasExerciseTracking: z.ZodBoolean;
6260
+ workoutTargets: z.ZodObject<{
6261
+ workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
6262
+ workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
6263
+ weekStreak: z.ZodCoercedNumber<unknown>;
6264
+ }, z.core.$strip>;
6265
+ lastWorkoutStats: z.ZodObject<{
6266
+ workoutDate: z.ZodNullable<z.ZodString>;
6267
+ workoutSplitName: z.ZodNullable<z.ZodString>;
6268
+ exerciseTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
6269
+ setTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
6270
+ }, z.core.$strip>;
6271
+ prs: z.ZodArray<z.ZodObject<{
6272
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6273
+ exerciseId: z.ZodInt;
6274
+ exerciseName: z.ZodString;
6275
+ prWeight: z.ZodNumber;
6276
+ prReps: z.ZodInt;
6277
+ prSetIndex: z.ZodInt;
6278
+ }, z.core.$strip>>;
6279
+ }, z.core.$strip>;
6280
+ declare const exerciseTrackingMapsQueryDtoSchema: z.ZodObject<{
6281
+ byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6282
+ exerciseTracking: z.ZodObject<{
6283
+ exerciseTrackingId: z.ZodInt;
6284
+ sets: z.ZodArray<z.ZodObject<{
6285
+ setIndex: z.ZodInt;
6118
6286
  weight: z.ZodNumber;
6119
6287
  reps: z.ZodInt;
6120
- workoutTimeUtc: z.ZodString;
6121
6288
  }, z.core.$strip>>;
6289
+ notes: z.ZodNullable<z.ZodString>;
6290
+ exerciseAssignment: z.ZodObject<{
6291
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6292
+ orderIndex: z.ZodNullable<z.ZodInt>;
6293
+ exerciseId: z.ZodInt;
6294
+ workoutSplitId: z.ZodInt;
6295
+ workoutSplitName: z.ZodString;
6296
+ exerciseName: z.ZodString;
6297
+ targetMuscle: z.ZodString;
6298
+ specificTargetMuscle: z.ZodString;
6299
+ }, z.core.$strip>;
6122
6300
  }, z.core.$strip>;
6301
+ }, z.core.$strip>>>;
6302
+ byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6303
+ exerciseTracking: z.ZodObject<{
6304
+ exerciseTrackingId: z.ZodInt;
6305
+ sets: z.ZodArray<z.ZodObject<{
6306
+ setIndex: z.ZodInt;
6307
+ weight: z.ZodNumber;
6308
+ reps: z.ZodInt;
6309
+ }, z.core.$strip>>;
6310
+ notes: z.ZodNullable<z.ZodString>;
6311
+ exerciseAssignment: z.ZodObject<{
6312
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6313
+ orderIndex: z.ZodNullable<z.ZodInt>;
6314
+ exerciseId: z.ZodInt;
6315
+ workoutSplitId: z.ZodInt;
6316
+ workoutSplitName: z.ZodString;
6317
+ exerciseName: z.ZodString;
6318
+ targetMuscle: z.ZodString;
6319
+ specificTargetMuscle: z.ZodString;
6320
+ }, z.core.$strip>;
6321
+ }, z.core.$strip>;
6322
+ }, z.core.$strip>>>;
6323
+ bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6324
+ exerciseTracking: z.ZodObject<{
6325
+ exerciseTrackingId: z.ZodInt;
6326
+ sets: z.ZodArray<z.ZodObject<{
6327
+ setIndex: z.ZodInt;
6328
+ weight: z.ZodNumber;
6329
+ reps: z.ZodInt;
6330
+ }, z.core.$strip>>;
6331
+ notes: z.ZodNullable<z.ZodString>;
6332
+ exerciseAssignment: z.ZodObject<{
6333
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6334
+ orderIndex: z.ZodNullable<z.ZodInt>;
6335
+ exerciseId: z.ZodInt;
6336
+ workoutSplitId: z.ZodInt;
6337
+ workoutSplitName: z.ZodString;
6338
+ exerciseName: z.ZodString;
6339
+ targetMuscle: z.ZodString;
6340
+ specificTargetMuscle: z.ZodString;
6341
+ }, z.core.$strip>;
6342
+ }, z.core.$strip>;
6343
+ }, z.core.$strip>>>;
6344
+ }, z.core.$strip>;
6345
+ declare const exerciseTrackingAndStatsQueryDtoSchema: z.ZodObject<{
6346
+ trackingStats: z.ZodObject<{
6347
+ workoutCount: z.ZodCoercedNumber<unknown>;
6348
+ hasExerciseTracking: z.ZodBoolean;
6349
+ workoutTargets: z.ZodObject<{
6350
+ workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
6351
+ workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
6352
+ weekStreak: z.ZodCoercedNumber<unknown>;
6353
+ }, z.core.$strip>;
6354
+ lastWorkoutStats: z.ZodObject<{
6355
+ workoutDate: z.ZodNullable<z.ZodString>;
6356
+ workoutSplitName: z.ZodNullable<z.ZodString>;
6357
+ exerciseTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
6358
+ setTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
6359
+ }, z.core.$strip>;
6360
+ prs: z.ZodArray<z.ZodObject<{
6361
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6362
+ exerciseId: z.ZodInt;
6363
+ exerciseName: z.ZodString;
6364
+ prWeight: z.ZodNumber;
6365
+ prReps: z.ZodInt;
6366
+ prSetIndex: z.ZodInt;
6367
+ }, z.core.$strip>>;
6123
6368
  }, z.core.$strip>;
6124
- exerciseTrackingMaps: z.ZodObject<{
6369
+ trackingMaps: z.ZodObject<{
6125
6370
  byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6126
- id: z.ZodInt;
6127
- exerciseToSplitId: z.ZodInt;
6128
- orderIndex: z.ZodInt;
6129
- reps: z.ZodArray<z.ZodInt>;
6130
- workoutSplitId: z.ZodInt;
6131
- exerciseId: z.ZodInt;
6132
- exercise: z.ZodString;
6133
- exerciseToWorkoutSplit: z.ZodObject<{
6134
- sets: z.ZodArray<z.ZodInt>;
6135
- exercises: z.ZodObject<{
6371
+ exerciseTracking: z.ZodObject<{
6372
+ exerciseTrackingId: z.ZodInt;
6373
+ sets: z.ZodArray<z.ZodObject<{
6374
+ setIndex: z.ZodInt;
6375
+ weight: z.ZodNumber;
6376
+ reps: z.ZodInt;
6377
+ }, z.core.$strip>>;
6378
+ notes: z.ZodNullable<z.ZodString>;
6379
+ exerciseAssignment: z.ZodObject<{
6380
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6381
+ orderIndex: z.ZodNullable<z.ZodInt>;
6382
+ exerciseId: z.ZodInt;
6383
+ workoutSplitId: z.ZodInt;
6384
+ workoutSplitName: z.ZodString;
6385
+ exerciseName: z.ZodString;
6136
6386
  targetMuscle: z.ZodString;
6137
6387
  specificTargetMuscle: z.ZodString;
6138
6388
  }, z.core.$strip>;
6139
6389
  }, z.core.$strip>;
6140
- notes: z.ZodNullable<z.ZodString>;
6141
- weight: z.ZodArray<z.ZodNumber>;
6142
- splitName: z.ZodString;
6143
6390
  }, z.core.$strip>>>;
6144
6391
  byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6145
- id: z.ZodInt;
6146
- exerciseToSplitId: z.ZodInt;
6147
- weight: z.ZodArray<z.ZodNumber>;
6148
- reps: z.ZodArray<z.ZodInt>;
6149
- notes: z.ZodNullable<z.ZodString>;
6150
- exerciseId: z.ZodInt;
6151
- workoutSplitId: z.ZodInt;
6152
- splitName: z.ZodString;
6153
- exercise: z.ZodString;
6154
- workoutDate: z.ZodString;
6155
- orderIndex: z.ZodInt;
6156
- exerciseToWorkoutSplit: z.ZodObject<{
6157
- sets: z.ZodArray<z.ZodInt>;
6158
- exercises: z.ZodObject<{
6392
+ exerciseTracking: z.ZodObject<{
6393
+ exerciseTrackingId: z.ZodInt;
6394
+ sets: z.ZodArray<z.ZodObject<{
6395
+ setIndex: z.ZodInt;
6396
+ weight: z.ZodNumber;
6397
+ reps: z.ZodInt;
6398
+ }, z.core.$strip>>;
6399
+ notes: z.ZodNullable<z.ZodString>;
6400
+ exerciseAssignment: z.ZodObject<{
6401
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6402
+ orderIndex: z.ZodNullable<z.ZodInt>;
6403
+ exerciseId: z.ZodInt;
6404
+ workoutSplitId: z.ZodInt;
6405
+ workoutSplitName: z.ZodString;
6406
+ exerciseName: z.ZodString;
6159
6407
  targetMuscle: z.ZodString;
6160
6408
  specificTargetMuscle: z.ZodString;
6161
6409
  }, z.core.$strip>;
6162
6410
  }, z.core.$strip>;
6163
6411
  }, z.core.$strip>>>;
6164
6412
  bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6165
- id: z.ZodInt;
6166
- exerciseToSplitId: z.ZodInt;
6167
- orderIndex: z.ZodInt;
6168
- reps: z.ZodArray<z.ZodInt>;
6169
- workoutSplitId: z.ZodInt;
6170
- exerciseId: z.ZodInt;
6171
- exercise: z.ZodString;
6172
- exerciseToWorkoutSplit: z.ZodObject<{
6173
- sets: z.ZodArray<z.ZodInt>;
6174
- exercises: z.ZodObject<{
6413
+ exerciseTracking: z.ZodObject<{
6414
+ exerciseTrackingId: z.ZodInt;
6415
+ sets: z.ZodArray<z.ZodObject<{
6416
+ setIndex: z.ZodInt;
6417
+ weight: z.ZodNumber;
6418
+ reps: z.ZodInt;
6419
+ }, z.core.$strip>>;
6420
+ notes: z.ZodNullable<z.ZodString>;
6421
+ exerciseAssignment: z.ZodObject<{
6422
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6423
+ orderIndex: z.ZodNullable<z.ZodInt>;
6424
+ exerciseId: z.ZodInt;
6425
+ workoutSplitId: z.ZodInt;
6426
+ workoutSplitName: z.ZodString;
6427
+ exerciseName: z.ZodString;
6175
6428
  targetMuscle: z.ZodString;
6176
6429
  specificTargetMuscle: z.ZodString;
6177
6430
  }, z.core.$strip>;
6178
6431
  }, z.core.$strip>;
6179
- notes: z.ZodNullable<z.ZodString>;
6180
- weight: z.ZodArray<z.ZodNumber>;
6181
- workoutDate: z.ZodString;
6182
6432
  }, z.core.$strip>>>;
6183
6433
  }, z.core.$strip>;
6184
6434
  }, z.core.$strip>;
6185
6435
  /** SQL row wrapping the complete tracking aggregate under `data`. */
6186
6436
  declare const exerciseTrackingAndStatsRowQueryDtoSchema: z.ZodObject<{
6187
6437
  data: z.ZodObject<{
6188
- exerciseTrackingAnalysis: z.ZodObject<{
6189
- uniqueDays: z.ZodNumber;
6190
- mostFrequentSplit: z.ZodNullable<z.ZodString>;
6191
- mostFrequentSplitDays: z.ZodNullable<z.ZodNumber>;
6192
- lastWorkoutDate: z.ZodNullable<z.ZodString>;
6193
- splitDaysByName: z.ZodRecord<z.ZodString, z.ZodNumber>;
6194
- prs: z.ZodObject<{
6195
- prMax: z.ZodNullable<z.ZodObject<{
6196
- exercise: z.ZodString;
6197
- weight: z.ZodNumber;
6198
- reps: z.ZodInt;
6199
- workoutTimeUtc: z.ZodString;
6200
- }, z.core.$strip>>;
6438
+ trackingStats: z.ZodObject<{
6439
+ workoutCount: z.ZodCoercedNumber<unknown>;
6440
+ hasExerciseTracking: z.ZodBoolean;
6441
+ workoutTargets: z.ZodObject<{
6442
+ workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
6443
+ workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
6444
+ weekStreak: z.ZodCoercedNumber<unknown>;
6445
+ }, z.core.$strip>;
6446
+ lastWorkoutStats: z.ZodObject<{
6447
+ workoutDate: z.ZodNullable<z.ZodString>;
6448
+ workoutSplitName: z.ZodNullable<z.ZodString>;
6449
+ exerciseTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
6450
+ setTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
6201
6451
  }, z.core.$strip>;
6452
+ prs: z.ZodArray<z.ZodObject<{
6453
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6454
+ exerciseId: z.ZodInt;
6455
+ exerciseName: z.ZodString;
6456
+ prWeight: z.ZodNumber;
6457
+ prReps: z.ZodInt;
6458
+ prSetIndex: z.ZodInt;
6459
+ }, z.core.$strip>>;
6202
6460
  }, z.core.$strip>;
6203
- exerciseTrackingMaps: z.ZodObject<{
6461
+ trackingMaps: z.ZodObject<{
6204
6462
  byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6205
- id: z.ZodInt;
6206
- exerciseToSplitId: z.ZodInt;
6207
- orderIndex: z.ZodInt;
6208
- reps: z.ZodArray<z.ZodInt>;
6209
- workoutSplitId: z.ZodInt;
6210
- exerciseId: z.ZodInt;
6211
- exercise: z.ZodString;
6212
- exerciseToWorkoutSplit: z.ZodObject<{
6213
- sets: z.ZodArray<z.ZodInt>;
6214
- exercises: z.ZodObject<{
6463
+ exerciseTracking: z.ZodObject<{
6464
+ exerciseTrackingId: z.ZodInt;
6465
+ sets: z.ZodArray<z.ZodObject<{
6466
+ setIndex: z.ZodInt;
6467
+ weight: z.ZodNumber;
6468
+ reps: z.ZodInt;
6469
+ }, z.core.$strip>>;
6470
+ notes: z.ZodNullable<z.ZodString>;
6471
+ exerciseAssignment: z.ZodObject<{
6472
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6473
+ orderIndex: z.ZodNullable<z.ZodInt>;
6474
+ exerciseId: z.ZodInt;
6475
+ workoutSplitId: z.ZodInt;
6476
+ workoutSplitName: z.ZodString;
6477
+ exerciseName: z.ZodString;
6215
6478
  targetMuscle: z.ZodString;
6216
6479
  specificTargetMuscle: z.ZodString;
6217
6480
  }, z.core.$strip>;
6218
6481
  }, z.core.$strip>;
6219
- notes: z.ZodNullable<z.ZodString>;
6220
- weight: z.ZodArray<z.ZodNumber>;
6221
- splitName: z.ZodString;
6222
6482
  }, z.core.$strip>>>;
6223
6483
  byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6224
- id: z.ZodInt;
6225
- exerciseToSplitId: z.ZodInt;
6226
- weight: z.ZodArray<z.ZodNumber>;
6227
- reps: z.ZodArray<z.ZodInt>;
6228
- notes: z.ZodNullable<z.ZodString>;
6229
- exerciseId: z.ZodInt;
6230
- workoutSplitId: z.ZodInt;
6231
- splitName: z.ZodString;
6232
- exercise: z.ZodString;
6233
- workoutDate: z.ZodString;
6234
- orderIndex: z.ZodInt;
6235
- exerciseToWorkoutSplit: z.ZodObject<{
6236
- sets: z.ZodArray<z.ZodInt>;
6237
- exercises: z.ZodObject<{
6484
+ exerciseTracking: z.ZodObject<{
6485
+ exerciseTrackingId: z.ZodInt;
6486
+ sets: z.ZodArray<z.ZodObject<{
6487
+ setIndex: z.ZodInt;
6488
+ weight: z.ZodNumber;
6489
+ reps: z.ZodInt;
6490
+ }, z.core.$strip>>;
6491
+ notes: z.ZodNullable<z.ZodString>;
6492
+ exerciseAssignment: z.ZodObject<{
6493
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6494
+ orderIndex: z.ZodNullable<z.ZodInt>;
6495
+ exerciseId: z.ZodInt;
6496
+ workoutSplitId: z.ZodInt;
6497
+ workoutSplitName: z.ZodString;
6498
+ exerciseName: z.ZodString;
6238
6499
  targetMuscle: z.ZodString;
6239
6500
  specificTargetMuscle: z.ZodString;
6240
6501
  }, z.core.$strip>;
6241
6502
  }, z.core.$strip>;
6242
6503
  }, z.core.$strip>>>;
6243
6504
  bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6244
- id: z.ZodInt;
6245
- exerciseToSplitId: z.ZodInt;
6246
- orderIndex: z.ZodInt;
6247
- reps: z.ZodArray<z.ZodInt>;
6248
- workoutSplitId: z.ZodInt;
6249
- exerciseId: z.ZodInt;
6250
- exercise: z.ZodString;
6251
- exerciseToWorkoutSplit: z.ZodObject<{
6252
- sets: z.ZodArray<z.ZodInt>;
6253
- exercises: z.ZodObject<{
6505
+ exerciseTracking: z.ZodObject<{
6506
+ exerciseTrackingId: z.ZodInt;
6507
+ sets: z.ZodArray<z.ZodObject<{
6508
+ setIndex: z.ZodInt;
6509
+ weight: z.ZodNumber;
6510
+ reps: z.ZodInt;
6511
+ }, z.core.$strip>>;
6512
+ notes: z.ZodNullable<z.ZodString>;
6513
+ exerciseAssignment: z.ZodObject<{
6514
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6515
+ orderIndex: z.ZodNullable<z.ZodInt>;
6516
+ exerciseId: z.ZodInt;
6517
+ workoutSplitId: z.ZodInt;
6518
+ workoutSplitName: z.ZodString;
6519
+ exerciseName: z.ZodString;
6254
6520
  targetMuscle: z.ZodString;
6255
6521
  specificTargetMuscle: z.ZodString;
6256
6522
  }, z.core.$strip>;
6257
6523
  }, z.core.$strip>;
6258
- notes: z.ZodNullable<z.ZodString>;
6259
- weight: z.ZodArray<z.ZodNumber>;
6260
- workoutDate: z.ZodString;
6261
6524
  }, z.core.$strip>>>;
6262
6525
  }, z.core.$strip>;
6263
6526
  }, z.core.$strip>;
6264
6527
  }, z.core.$strip>;
6528
+ declare const exerciseTrackingStatsRowQueryDtoSchema: z.ZodObject<{
6529
+ data: z.ZodObject<{
6530
+ workoutCount: z.ZodCoercedNumber<unknown>;
6531
+ hasExerciseTracking: z.ZodBoolean;
6532
+ workoutTargets: z.ZodObject<{
6533
+ workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
6534
+ workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
6535
+ weekStreak: z.ZodCoercedNumber<unknown>;
6536
+ }, z.core.$strip>;
6537
+ lastWorkoutStats: z.ZodObject<{
6538
+ workoutDate: z.ZodNullable<z.ZodString>;
6539
+ workoutSplitName: z.ZodNullable<z.ZodString>;
6540
+ exerciseTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
6541
+ setTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
6542
+ }, z.core.$strip>;
6543
+ prs: z.ZodArray<z.ZodObject<{
6544
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6545
+ exerciseId: z.ZodInt;
6546
+ exerciseName: z.ZodString;
6547
+ prWeight: z.ZodNumber;
6548
+ prReps: z.ZodInt;
6549
+ prSetIndex: z.ZodInt;
6550
+ }, z.core.$strip>>;
6551
+ }, z.core.$strip>;
6552
+ }, z.core.$strip>;
6553
+ declare const exerciseTrackingMapsRowQueryDtoSchema: z.ZodObject<{
6554
+ data: z.ZodObject<{
6555
+ byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6556
+ exerciseTracking: z.ZodObject<{
6557
+ exerciseTrackingId: z.ZodInt;
6558
+ sets: z.ZodArray<z.ZodObject<{
6559
+ setIndex: z.ZodInt;
6560
+ weight: z.ZodNumber;
6561
+ reps: z.ZodInt;
6562
+ }, z.core.$strip>>;
6563
+ notes: z.ZodNullable<z.ZodString>;
6564
+ exerciseAssignment: z.ZodObject<{
6565
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6566
+ orderIndex: z.ZodNullable<z.ZodInt>;
6567
+ exerciseId: z.ZodInt;
6568
+ workoutSplitId: z.ZodInt;
6569
+ workoutSplitName: z.ZodString;
6570
+ exerciseName: z.ZodString;
6571
+ targetMuscle: z.ZodString;
6572
+ specificTargetMuscle: z.ZodString;
6573
+ }, z.core.$strip>;
6574
+ }, z.core.$strip>;
6575
+ }, z.core.$strip>>>;
6576
+ byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6577
+ exerciseTracking: z.ZodObject<{
6578
+ exerciseTrackingId: z.ZodInt;
6579
+ sets: z.ZodArray<z.ZodObject<{
6580
+ setIndex: z.ZodInt;
6581
+ weight: z.ZodNumber;
6582
+ reps: z.ZodInt;
6583
+ }, z.core.$strip>>;
6584
+ notes: z.ZodNullable<z.ZodString>;
6585
+ exerciseAssignment: z.ZodObject<{
6586
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6587
+ orderIndex: z.ZodNullable<z.ZodInt>;
6588
+ exerciseId: z.ZodInt;
6589
+ workoutSplitId: z.ZodInt;
6590
+ workoutSplitName: z.ZodString;
6591
+ exerciseName: z.ZodString;
6592
+ targetMuscle: z.ZodString;
6593
+ specificTargetMuscle: z.ZodString;
6594
+ }, z.core.$strip>;
6595
+ }, z.core.$strip>;
6596
+ }, z.core.$strip>>>;
6597
+ bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
6598
+ exerciseTracking: z.ZodObject<{
6599
+ exerciseTrackingId: z.ZodInt;
6600
+ sets: z.ZodArray<z.ZodObject<{
6601
+ setIndex: z.ZodInt;
6602
+ weight: z.ZodNumber;
6603
+ reps: z.ZodInt;
6604
+ }, z.core.$strip>>;
6605
+ notes: z.ZodNullable<z.ZodString>;
6606
+ exerciseAssignment: z.ZodObject<{
6607
+ exerciseToSplitId: z.ZodNullable<z.ZodInt>;
6608
+ orderIndex: z.ZodNullable<z.ZodInt>;
6609
+ exerciseId: z.ZodInt;
6610
+ workoutSplitId: z.ZodInt;
6611
+ workoutSplitName: z.ZodString;
6612
+ exerciseName: z.ZodString;
6613
+ targetMuscle: z.ZodString;
6614
+ specificTargetMuscle: z.ZodString;
6615
+ }, z.core.$strip>;
6616
+ }, z.core.$strip>;
6617
+ }, z.core.$strip>>>;
6618
+ }, z.core.$strip>;
6619
+ }, z.core.$strip>;
6265
6620
  /** SQL row resolving the workout split for an exercise assignment. */
6266
6621
  declare const workoutSplitLookupQueryDtoSchema: z.ZodObject<{
6267
6622
  workoutSplitId: z.ZodInt;
@@ -6282,9 +6637,13 @@ type TrackingByDateItemQueryDto = z.infer<typeof trackingByDateItemQueryDtoSchem
6282
6637
  type TrackingBySplitNameItemQueryDto = z.infer<typeof trackingBySplitNameItemQueryDtoSchema>;
6283
6638
  type ExerciseTrackingAndStatsQueryDto = z.infer<typeof exerciseTrackingAndStatsQueryDtoSchema>;
6284
6639
  type ExerciseTrackingAndStatsRowQueryDto = z.infer<typeof exerciseTrackingAndStatsRowQueryDtoSchema>;
6640
+ type ExerciseTrackingStatsQueryDto = z.infer<typeof exerciseTrackingStatsQueryDtoSchema>;
6641
+ type ExerciseTrackingStatsRowQueryDto = z.infer<typeof exerciseTrackingStatsRowQueryDtoSchema>;
6642
+ type ExerciseTrackingMapsQueryDto = z.infer<typeof exerciseTrackingMapsQueryDtoSchema>;
6643
+ type ExerciseTrackingMapsRowQueryDto = z.infer<typeof exerciseTrackingMapsRowQueryDtoSchema>;
6285
6644
  type WorkoutSplitLookupQueryDto = z.infer<typeof workoutSplitLookupQueryDtoSchema>;
6286
6645
  type WorkoutSummaryIdQueryDto = z.infer<typeof workoutSummaryIdQueryDtoSchema>;
6287
6646
  type ExerciseTrackingIdQueryDto = z.infer<typeof exerciseTrackingIdQueryDtoSchema>;
6288
6647
  type FinishedWorkoutEntryQueryDto = z.infer<typeof finishedWorkoutEntryQueryDtoSchema>;
6289
6648
 
6290
- 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 ExerciseTrackingPrMaxQueryDto, type ExerciseTrackingRow, 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 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, exerciseTrackingPrMaxQueryDtoSchema, exerciseTrackingSetExpandedViewDbSchema, exercisesMapByMuscleQueryDtoSchema, finishUserWorkoutContract, finishUserWorkoutResponseSchema, finishWorkoutRequestSchema, finishedWorkoutEntryQueryDtoSchema, forgotPasswordPayloadDtoSchema, generateTicketContract, generateTicketRequestSchema, generateTicketResponseSchema, getAerobicsRequestSchema, getAllExercisesContract, getAllExercisesExerciseQueryDtoSchema, getAllExercisesResponseSchema, getAllMessagesRequestSchema, getAllUserMessagesContract, getAllUserMessagesResponseSchema, getAnalyticsContract, getAnalyticsResponseSchema, getAuthenticatedUserByIdContract, getAuthenticatedUserByIdResponseSchema, getExerciseTrackingContract, getExerciseTrackingRequestSchema, getExerciseTrackingResponseSchema, 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 };
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 };