@strong-together/shared 2.7.0 → 2.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +403 -425
- package/dist/index.d.cts +35 -375
- package/dist/index.d.ts +35 -375
- package/dist/index.js +484 -503
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3867,7 +3867,7 @@ declare const userAerobicsResponseSchema: z.ZodObject<{
|
|
|
3867
3867
|
type: z.ZodString;
|
|
3868
3868
|
durationSec: z.ZodInt;
|
|
3869
3869
|
durationMins: z.ZodInt;
|
|
3870
|
-
|
|
3870
|
+
workoutTimeLocal: z.ZodString;
|
|
3871
3871
|
}, z.core.$strip>>;
|
|
3872
3872
|
totalDurationSec: z.ZodNumber;
|
|
3873
3873
|
totalDurationMins: z.ZodNumber;
|
|
@@ -3890,7 +3890,7 @@ declare const getUserAerobicsContract: {
|
|
|
3890
3890
|
type: z.ZodString;
|
|
3891
3891
|
durationSec: z.ZodInt;
|
|
3892
3892
|
durationMins: z.ZodInt;
|
|
3893
|
-
|
|
3893
|
+
workoutTimeLocal: z.ZodString;
|
|
3894
3894
|
}, z.core.$strip>>;
|
|
3895
3895
|
totalDurationSec: z.ZodNumber;
|
|
3896
3896
|
totalDurationMins: z.ZodNumber;
|
|
@@ -3918,7 +3918,7 @@ declare const aerobicsWeeklyRecordQueryDtoSchema: z.ZodObject<{
|
|
|
3918
3918
|
type: z.ZodString;
|
|
3919
3919
|
durationSec: z.ZodInt;
|
|
3920
3920
|
durationMins: z.ZodInt;
|
|
3921
|
-
|
|
3921
|
+
workoutTimeLocal: z.ZodString;
|
|
3922
3922
|
}, z.core.$strip>;
|
|
3923
3923
|
/** Weekly aerobic aggregation containing records and duration totals. */
|
|
3924
3924
|
declare const weeklyDataQueryDtoSchema: z.ZodObject<{
|
|
@@ -3926,7 +3926,7 @@ declare const weeklyDataQueryDtoSchema: z.ZodObject<{
|
|
|
3926
3926
|
type: z.ZodString;
|
|
3927
3927
|
durationSec: z.ZodInt;
|
|
3928
3928
|
durationMins: z.ZodInt;
|
|
3929
|
-
|
|
3929
|
+
workoutTimeLocal: z.ZodString;
|
|
3930
3930
|
}, z.core.$strip>>;
|
|
3931
3931
|
totalDurationSec: z.ZodNumber;
|
|
3932
3932
|
totalDurationMins: z.ZodNumber;
|
|
@@ -3943,7 +3943,7 @@ declare const userAerobicsQueryDtoSchema: z.ZodObject<{
|
|
|
3943
3943
|
type: z.ZodString;
|
|
3944
3944
|
durationSec: z.ZodInt;
|
|
3945
3945
|
durationMins: z.ZodInt;
|
|
3946
|
-
|
|
3946
|
+
workoutTimeLocal: z.ZodString;
|
|
3947
3947
|
}, z.core.$strip>>;
|
|
3948
3948
|
totalDurationSec: z.ZodNumber;
|
|
3949
3949
|
totalDurationMins: z.ZodNumber;
|
|
@@ -3962,7 +3962,7 @@ declare const userAerobicsRowQueryDtoSchema: z.ZodObject<{
|
|
|
3962
3962
|
type: z.ZodString;
|
|
3963
3963
|
durationSec: z.ZodInt;
|
|
3964
3964
|
durationMins: z.ZodInt;
|
|
3965
|
-
|
|
3965
|
+
workoutTimeLocal: z.ZodString;
|
|
3966
3966
|
}, z.core.$strip>>;
|
|
3967
3967
|
totalDurationSec: z.ZodNumber;
|
|
3968
3968
|
totalDurationMins: z.ZodNumber;
|
|
@@ -4337,367 +4337,6 @@ type UserByIdentifierRowQueryDto = z.infer<typeof userByIdentifierRowQueryDtoSch
|
|
|
4337
4337
|
type UserByUsernameRawQueryDto = z.infer<typeof userByUsernameRawQueryDtoSchema>;
|
|
4338
4338
|
type UserByUsernameRowQueryDto = z.infer<typeof userByUsernameRowQueryDtoSchema>;
|
|
4339
4339
|
|
|
4340
|
-
declare const bootstrapRequestSchema: z.ZodObject<{
|
|
4341
|
-
query: z.ZodObject<{
|
|
4342
|
-
tz: z.ZodOptional<z.ZodString>;
|
|
4343
|
-
}, z.core.$strip>;
|
|
4344
|
-
}, z.core.$strip>;
|
|
4345
|
-
declare const bootstrapResponseSchema: z.ZodObject<{
|
|
4346
|
-
user: z.ZodObject<{
|
|
4347
|
-
id: z.ZodUUID;
|
|
4348
|
-
username: z.ZodString;
|
|
4349
|
-
email: z.ZodString;
|
|
4350
|
-
name: z.ZodString;
|
|
4351
|
-
gender: z.ZodString;
|
|
4352
|
-
createdAt: z.ZodString;
|
|
4353
|
-
updatedAt: z.ZodString;
|
|
4354
|
-
profilePicPath: z.ZodNullable<z.ZodString>;
|
|
4355
|
-
pushToken: z.ZodNullable<z.ZodString>;
|
|
4356
|
-
role: z.ZodString;
|
|
4357
|
-
isFirstLogin: z.ZodBoolean;
|
|
4358
|
-
tokenVersion: z.ZodInt;
|
|
4359
|
-
isVerified: z.ZodBoolean;
|
|
4360
|
-
authProvider: z.ZodString;
|
|
4361
|
-
lastLogin: z.ZodNullable<z.ZodString>;
|
|
4362
|
-
}, z.core.$strip>;
|
|
4363
|
-
workout: z.ZodObject<{
|
|
4364
|
-
workoutPlan: z.ZodNullable<z.ZodObject<{
|
|
4365
|
-
id: z.ZodInt;
|
|
4366
|
-
numberOfSplits: z.ZodNumber;
|
|
4367
|
-
createdAt: z.ZodString;
|
|
4368
|
-
userId: z.ZodUUID;
|
|
4369
|
-
isActive: z.ZodBoolean;
|
|
4370
|
-
updatedAt: z.ZodString;
|
|
4371
|
-
workoutSplits: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
4372
|
-
id: z.ZodInt;
|
|
4373
|
-
workoutId: z.ZodInt;
|
|
4374
|
-
name: z.ZodString;
|
|
4375
|
-
orderIndex: z.ZodInt;
|
|
4376
|
-
createdAt: z.ZodString;
|
|
4377
|
-
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
4378
|
-
isActive: z.ZodBoolean;
|
|
4379
|
-
exercises: z.ZodArray<z.ZodObject<{
|
|
4380
|
-
exerciseToSplitId: z.ZodInt;
|
|
4381
|
-
exerciseId: z.ZodInt;
|
|
4382
|
-
name: z.ZodString;
|
|
4383
|
-
sets: z.ZodArray<z.ZodInt>;
|
|
4384
|
-
orderIndex: z.ZodInt;
|
|
4385
|
-
isActive: z.ZodBoolean;
|
|
4386
|
-
targetMuscle: z.ZodString;
|
|
4387
|
-
specificTargetMuscle: z.ZodString;
|
|
4388
|
-
}, z.core.$strip>>;
|
|
4389
|
-
}, z.core.$strip>>>;
|
|
4390
|
-
}, z.core.$strip>>;
|
|
4391
|
-
}, z.core.$strip>;
|
|
4392
|
-
tracking: z.ZodObject<{
|
|
4393
|
-
trackingStats: z.ZodObject<{
|
|
4394
|
-
workoutCount: z.ZodCoercedNumber<unknown>;
|
|
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>>;
|
|
4402
|
-
workoutTargets: z.ZodObject<{
|
|
4403
|
-
workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
|
|
4404
|
-
workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
|
|
4405
|
-
weekStreak: z.ZodCoercedNumber<unknown>;
|
|
4406
|
-
}, z.core.$strip>;
|
|
4407
|
-
lastWorkoutStats: z.ZodObject<{
|
|
4408
|
-
workoutDate: z.ZodNullable<z.ZodString>;
|
|
4409
|
-
workoutSplitName: z.ZodNullable<z.ZodString>;
|
|
4410
|
-
exerciseTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
|
|
4411
|
-
setTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
|
|
4412
|
-
}, z.core.$strip>;
|
|
4413
|
-
prs: z.ZodArray<z.ZodObject<{
|
|
4414
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
4415
|
-
exerciseId: z.ZodInt;
|
|
4416
|
-
exerciseName: z.ZodString;
|
|
4417
|
-
prWeight: z.ZodNumber;
|
|
4418
|
-
prReps: z.ZodInt;
|
|
4419
|
-
prSetIndex: z.ZodInt;
|
|
4420
|
-
estimatedOneRepMax: z.ZodNullable<z.ZodNumber>;
|
|
4421
|
-
}, z.core.$strip>>;
|
|
4422
|
-
}, z.core.$strip>;
|
|
4423
|
-
trackingMaps: z.ZodObject<{
|
|
4424
|
-
byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
4425
|
-
exerciseTracking: z.ZodObject<{
|
|
4426
|
-
exerciseTrackingId: z.ZodInt;
|
|
4427
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
4428
|
-
setIndex: z.ZodInt;
|
|
4429
|
-
weight: z.ZodNumber;
|
|
4430
|
-
reps: z.ZodInt;
|
|
4431
|
-
}, z.core.$strip>>;
|
|
4432
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
4433
|
-
exerciseAssignment: z.ZodObject<{
|
|
4434
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
4435
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
4436
|
-
exerciseId: z.ZodInt;
|
|
4437
|
-
workoutSplitId: z.ZodInt;
|
|
4438
|
-
workoutSplitName: z.ZodString;
|
|
4439
|
-
exerciseName: z.ZodString;
|
|
4440
|
-
targetMuscle: z.ZodString;
|
|
4441
|
-
specificTargetMuscle: z.ZodString;
|
|
4442
|
-
}, z.core.$strip>;
|
|
4443
|
-
}, z.core.$strip>;
|
|
4444
|
-
}, z.core.$strip>>>;
|
|
4445
|
-
byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
4446
|
-
exerciseTracking: z.ZodObject<{
|
|
4447
|
-
exerciseTrackingId: z.ZodInt;
|
|
4448
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
4449
|
-
setIndex: z.ZodInt;
|
|
4450
|
-
weight: z.ZodNumber;
|
|
4451
|
-
reps: z.ZodInt;
|
|
4452
|
-
}, z.core.$strip>>;
|
|
4453
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
4454
|
-
exerciseAssignment: z.ZodObject<{
|
|
4455
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
4456
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
4457
|
-
exerciseId: z.ZodInt;
|
|
4458
|
-
workoutSplitId: z.ZodInt;
|
|
4459
|
-
workoutSplitName: z.ZodString;
|
|
4460
|
-
exerciseName: z.ZodString;
|
|
4461
|
-
targetMuscle: z.ZodString;
|
|
4462
|
-
specificTargetMuscle: z.ZodString;
|
|
4463
|
-
}, z.core.$strip>;
|
|
4464
|
-
}, z.core.$strip>;
|
|
4465
|
-
}, z.core.$strip>>>;
|
|
4466
|
-
bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
4467
|
-
exerciseTracking: z.ZodObject<{
|
|
4468
|
-
exerciseTrackingId: z.ZodInt;
|
|
4469
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
4470
|
-
setIndex: z.ZodInt;
|
|
4471
|
-
weight: z.ZodNumber;
|
|
4472
|
-
reps: z.ZodInt;
|
|
4473
|
-
}, z.core.$strip>>;
|
|
4474
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
4475
|
-
exerciseAssignment: z.ZodObject<{
|
|
4476
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
4477
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
4478
|
-
exerciseId: z.ZodInt;
|
|
4479
|
-
workoutSplitId: z.ZodInt;
|
|
4480
|
-
workoutSplitName: z.ZodString;
|
|
4481
|
-
exerciseName: z.ZodString;
|
|
4482
|
-
targetMuscle: z.ZodString;
|
|
4483
|
-
specificTargetMuscle: z.ZodString;
|
|
4484
|
-
}, z.core.$strip>;
|
|
4485
|
-
}, z.core.$strip>;
|
|
4486
|
-
}, z.core.$strip>>>;
|
|
4487
|
-
}, z.core.$strip>;
|
|
4488
|
-
}, z.core.$strip>;
|
|
4489
|
-
messages: z.ZodObject<{
|
|
4490
|
-
messages: z.ZodArray<z.ZodObject<{
|
|
4491
|
-
id: z.ZodUUID;
|
|
4492
|
-
subject: z.ZodString;
|
|
4493
|
-
msg: z.ZodString;
|
|
4494
|
-
sentAt: z.ZodString;
|
|
4495
|
-
isRead: z.ZodBoolean;
|
|
4496
|
-
senderFullName: z.ZodString;
|
|
4497
|
-
senderProfilePicPath: z.ZodNullable<z.ZodString>;
|
|
4498
|
-
}, z.core.$strip>>;
|
|
4499
|
-
}, z.core.$strip>;
|
|
4500
|
-
aerobics: z.ZodObject<{
|
|
4501
|
-
daily: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
4502
|
-
type: z.ZodString;
|
|
4503
|
-
durationSec: z.ZodInt;
|
|
4504
|
-
durationMins: z.ZodInt;
|
|
4505
|
-
}, z.core.$strip>>>;
|
|
4506
|
-
weekly: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4507
|
-
records: z.ZodArray<z.ZodObject<{
|
|
4508
|
-
type: z.ZodString;
|
|
4509
|
-
durationSec: z.ZodInt;
|
|
4510
|
-
durationMins: z.ZodInt;
|
|
4511
|
-
workoutTimeUtc: z.ZodString;
|
|
4512
|
-
}, z.core.$strip>>;
|
|
4513
|
-
totalDurationSec: z.ZodNumber;
|
|
4514
|
-
totalDurationMins: z.ZodNumber;
|
|
4515
|
-
}, z.core.$strip>>;
|
|
4516
|
-
}, z.core.$strip>;
|
|
4517
|
-
}, z.core.$strip>;
|
|
4518
|
-
declare const bootstrapContract: {
|
|
4519
|
-
request: z.ZodObject<{
|
|
4520
|
-
query: z.ZodObject<{
|
|
4521
|
-
tz: z.ZodOptional<z.ZodString>;
|
|
4522
|
-
}, z.core.$strip>;
|
|
4523
|
-
}, z.core.$strip>;
|
|
4524
|
-
response: z.ZodObject<{
|
|
4525
|
-
user: z.ZodObject<{
|
|
4526
|
-
id: z.ZodUUID;
|
|
4527
|
-
username: z.ZodString;
|
|
4528
|
-
email: z.ZodString;
|
|
4529
|
-
name: z.ZodString;
|
|
4530
|
-
gender: z.ZodString;
|
|
4531
|
-
createdAt: z.ZodString;
|
|
4532
|
-
updatedAt: z.ZodString;
|
|
4533
|
-
profilePicPath: z.ZodNullable<z.ZodString>;
|
|
4534
|
-
pushToken: z.ZodNullable<z.ZodString>;
|
|
4535
|
-
role: z.ZodString;
|
|
4536
|
-
isFirstLogin: z.ZodBoolean;
|
|
4537
|
-
tokenVersion: z.ZodInt;
|
|
4538
|
-
isVerified: z.ZodBoolean;
|
|
4539
|
-
authProvider: z.ZodString;
|
|
4540
|
-
lastLogin: z.ZodNullable<z.ZodString>;
|
|
4541
|
-
}, z.core.$strip>;
|
|
4542
|
-
workout: z.ZodObject<{
|
|
4543
|
-
workoutPlan: z.ZodNullable<z.ZodObject<{
|
|
4544
|
-
id: z.ZodInt;
|
|
4545
|
-
numberOfSplits: z.ZodNumber;
|
|
4546
|
-
createdAt: z.ZodString;
|
|
4547
|
-
userId: z.ZodUUID;
|
|
4548
|
-
isActive: z.ZodBoolean;
|
|
4549
|
-
updatedAt: z.ZodString;
|
|
4550
|
-
workoutSplits: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
4551
|
-
id: z.ZodInt;
|
|
4552
|
-
workoutId: z.ZodInt;
|
|
4553
|
-
name: z.ZodString;
|
|
4554
|
-
orderIndex: z.ZodInt;
|
|
4555
|
-
createdAt: z.ZodString;
|
|
4556
|
-
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
4557
|
-
isActive: z.ZodBoolean;
|
|
4558
|
-
exercises: z.ZodArray<z.ZodObject<{
|
|
4559
|
-
exerciseToSplitId: z.ZodInt;
|
|
4560
|
-
exerciseId: z.ZodInt;
|
|
4561
|
-
name: z.ZodString;
|
|
4562
|
-
sets: z.ZodArray<z.ZodInt>;
|
|
4563
|
-
orderIndex: z.ZodInt;
|
|
4564
|
-
isActive: z.ZodBoolean;
|
|
4565
|
-
targetMuscle: z.ZodString;
|
|
4566
|
-
specificTargetMuscle: z.ZodString;
|
|
4567
|
-
}, z.core.$strip>>;
|
|
4568
|
-
}, z.core.$strip>>>;
|
|
4569
|
-
}, z.core.$strip>>;
|
|
4570
|
-
}, z.core.$strip>;
|
|
4571
|
-
tracking: z.ZodObject<{
|
|
4572
|
-
trackingStats: z.ZodObject<{
|
|
4573
|
-
workoutCount: z.ZodCoercedNumber<unknown>;
|
|
4574
|
-
hasExerciseTracking: z.ZodBoolean;
|
|
4575
|
-
nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
|
|
4576
|
-
id: z.ZodInt;
|
|
4577
|
-
name: z.ZodString;
|
|
4578
|
-
orderIndex: z.ZodInt;
|
|
4579
|
-
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
4580
|
-
}, z.core.$strip>>;
|
|
4581
|
-
workoutTargets: z.ZodObject<{
|
|
4582
|
-
workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
|
|
4583
|
-
workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
|
|
4584
|
-
weekStreak: z.ZodCoercedNumber<unknown>;
|
|
4585
|
-
}, z.core.$strip>;
|
|
4586
|
-
lastWorkoutStats: z.ZodObject<{
|
|
4587
|
-
workoutDate: z.ZodNullable<z.ZodString>;
|
|
4588
|
-
workoutSplitName: z.ZodNullable<z.ZodString>;
|
|
4589
|
-
exerciseTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
|
|
4590
|
-
setTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
|
|
4591
|
-
}, z.core.$strip>;
|
|
4592
|
-
prs: z.ZodArray<z.ZodObject<{
|
|
4593
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
4594
|
-
exerciseId: z.ZodInt;
|
|
4595
|
-
exerciseName: z.ZodString;
|
|
4596
|
-
prWeight: z.ZodNumber;
|
|
4597
|
-
prReps: z.ZodInt;
|
|
4598
|
-
prSetIndex: z.ZodInt;
|
|
4599
|
-
estimatedOneRepMax: z.ZodNullable<z.ZodNumber>;
|
|
4600
|
-
}, z.core.$strip>>;
|
|
4601
|
-
}, z.core.$strip>;
|
|
4602
|
-
trackingMaps: z.ZodObject<{
|
|
4603
|
-
byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
4604
|
-
exerciseTracking: z.ZodObject<{
|
|
4605
|
-
exerciseTrackingId: z.ZodInt;
|
|
4606
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
4607
|
-
setIndex: z.ZodInt;
|
|
4608
|
-
weight: z.ZodNumber;
|
|
4609
|
-
reps: z.ZodInt;
|
|
4610
|
-
}, z.core.$strip>>;
|
|
4611
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
4612
|
-
exerciseAssignment: z.ZodObject<{
|
|
4613
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
4614
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
4615
|
-
exerciseId: z.ZodInt;
|
|
4616
|
-
workoutSplitId: z.ZodInt;
|
|
4617
|
-
workoutSplitName: z.ZodString;
|
|
4618
|
-
exerciseName: z.ZodString;
|
|
4619
|
-
targetMuscle: z.ZodString;
|
|
4620
|
-
specificTargetMuscle: z.ZodString;
|
|
4621
|
-
}, z.core.$strip>;
|
|
4622
|
-
}, z.core.$strip>;
|
|
4623
|
-
}, z.core.$strip>>>;
|
|
4624
|
-
byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
4625
|
-
exerciseTracking: z.ZodObject<{
|
|
4626
|
-
exerciseTrackingId: z.ZodInt;
|
|
4627
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
4628
|
-
setIndex: z.ZodInt;
|
|
4629
|
-
weight: z.ZodNumber;
|
|
4630
|
-
reps: z.ZodInt;
|
|
4631
|
-
}, z.core.$strip>>;
|
|
4632
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
4633
|
-
exerciseAssignment: z.ZodObject<{
|
|
4634
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
4635
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
4636
|
-
exerciseId: z.ZodInt;
|
|
4637
|
-
workoutSplitId: z.ZodInt;
|
|
4638
|
-
workoutSplitName: z.ZodString;
|
|
4639
|
-
exerciseName: z.ZodString;
|
|
4640
|
-
targetMuscle: z.ZodString;
|
|
4641
|
-
specificTargetMuscle: z.ZodString;
|
|
4642
|
-
}, z.core.$strip>;
|
|
4643
|
-
}, z.core.$strip>;
|
|
4644
|
-
}, z.core.$strip>>>;
|
|
4645
|
-
bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
4646
|
-
exerciseTracking: z.ZodObject<{
|
|
4647
|
-
exerciseTrackingId: z.ZodInt;
|
|
4648
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
4649
|
-
setIndex: z.ZodInt;
|
|
4650
|
-
weight: z.ZodNumber;
|
|
4651
|
-
reps: z.ZodInt;
|
|
4652
|
-
}, z.core.$strip>>;
|
|
4653
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
4654
|
-
exerciseAssignment: z.ZodObject<{
|
|
4655
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
4656
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
4657
|
-
exerciseId: z.ZodInt;
|
|
4658
|
-
workoutSplitId: z.ZodInt;
|
|
4659
|
-
workoutSplitName: z.ZodString;
|
|
4660
|
-
exerciseName: z.ZodString;
|
|
4661
|
-
targetMuscle: z.ZodString;
|
|
4662
|
-
specificTargetMuscle: z.ZodString;
|
|
4663
|
-
}, z.core.$strip>;
|
|
4664
|
-
}, z.core.$strip>;
|
|
4665
|
-
}, z.core.$strip>>>;
|
|
4666
|
-
}, z.core.$strip>;
|
|
4667
|
-
}, z.core.$strip>;
|
|
4668
|
-
messages: z.ZodObject<{
|
|
4669
|
-
messages: z.ZodArray<z.ZodObject<{
|
|
4670
|
-
id: z.ZodUUID;
|
|
4671
|
-
subject: z.ZodString;
|
|
4672
|
-
msg: z.ZodString;
|
|
4673
|
-
sentAt: z.ZodString;
|
|
4674
|
-
isRead: z.ZodBoolean;
|
|
4675
|
-
senderFullName: z.ZodString;
|
|
4676
|
-
senderProfilePicPath: z.ZodNullable<z.ZodString>;
|
|
4677
|
-
}, z.core.$strip>>;
|
|
4678
|
-
}, z.core.$strip>;
|
|
4679
|
-
aerobics: z.ZodObject<{
|
|
4680
|
-
daily: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
4681
|
-
type: z.ZodString;
|
|
4682
|
-
durationSec: z.ZodInt;
|
|
4683
|
-
durationMins: z.ZodInt;
|
|
4684
|
-
}, z.core.$strip>>>;
|
|
4685
|
-
weekly: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4686
|
-
records: z.ZodArray<z.ZodObject<{
|
|
4687
|
-
type: z.ZodString;
|
|
4688
|
-
durationSec: z.ZodInt;
|
|
4689
|
-
durationMins: z.ZodInt;
|
|
4690
|
-
workoutTimeUtc: z.ZodString;
|
|
4691
|
-
}, z.core.$strip>>;
|
|
4692
|
-
totalDurationSec: z.ZodNumber;
|
|
4693
|
-
totalDurationMins: z.ZodNumber;
|
|
4694
|
-
}, z.core.$strip>>;
|
|
4695
|
-
}, z.core.$strip>;
|
|
4696
|
-
}, z.core.$strip>;
|
|
4697
|
-
};
|
|
4698
|
-
type BootstrapRequestQuery = QueryOf<typeof bootstrapContract>;
|
|
4699
|
-
type BootstrapResponse = ResponseOf<typeof bootstrapContract>;
|
|
4700
|
-
|
|
4701
4340
|
declare const getAllExercisesResponseSchema: zod_v4.ZodRecord<zod_v4.ZodString, zod_v4.ZodArray<zod_v4.ZodObject<{
|
|
4702
4341
|
id: zod_v4.ZodInt;
|
|
4703
4342
|
name: zod_v4.ZodString;
|
|
@@ -5488,7 +5127,10 @@ declare const getWholeUserWorkoutPlanResponseSchema: z.ZodObject<{
|
|
|
5488
5127
|
exerciseToSplitId: z.ZodInt;
|
|
5489
5128
|
exerciseId: z.ZodInt;
|
|
5490
5129
|
name: z.ZodString;
|
|
5491
|
-
sets: z.ZodArray<z.
|
|
5130
|
+
sets: z.ZodArray<z.ZodObject<{
|
|
5131
|
+
orderIndex: z.ZodInt;
|
|
5132
|
+
reps: z.ZodInt;
|
|
5133
|
+
}, z.core.$strip>>;
|
|
5492
5134
|
orderIndex: z.ZodInt;
|
|
5493
5135
|
isActive: z.ZodBoolean;
|
|
5494
5136
|
targetMuscle: z.ZodString;
|
|
@@ -5523,7 +5165,10 @@ declare const getWholeUserWorkoutPlanContract: {
|
|
|
5523
5165
|
exerciseToSplitId: z.ZodInt;
|
|
5524
5166
|
exerciseId: z.ZodInt;
|
|
5525
5167
|
name: z.ZodString;
|
|
5526
|
-
sets: z.ZodArray<z.
|
|
5168
|
+
sets: z.ZodArray<z.ZodObject<{
|
|
5169
|
+
orderIndex: z.ZodInt;
|
|
5170
|
+
reps: z.ZodInt;
|
|
5171
|
+
}, z.core.$strip>>;
|
|
5527
5172
|
orderIndex: z.ZodInt;
|
|
5528
5173
|
isActive: z.ZodBoolean;
|
|
5529
5174
|
targetMuscle: z.ZodString;
|
|
@@ -5570,7 +5215,10 @@ declare const addWorkoutResponseSchema: z.ZodObject<{
|
|
|
5570
5215
|
exerciseToSplitId: z.ZodInt;
|
|
5571
5216
|
exerciseId: z.ZodInt;
|
|
5572
5217
|
name: z.ZodString;
|
|
5573
|
-
sets: z.ZodArray<z.
|
|
5218
|
+
sets: z.ZodArray<z.ZodObject<{
|
|
5219
|
+
orderIndex: z.ZodInt;
|
|
5220
|
+
reps: z.ZodInt;
|
|
5221
|
+
}, z.core.$strip>>;
|
|
5574
5222
|
orderIndex: z.ZodInt;
|
|
5575
5223
|
isActive: z.ZodBoolean;
|
|
5576
5224
|
targetMuscle: z.ZodString;
|
|
@@ -5617,7 +5265,10 @@ declare const addWorkoutContract: {
|
|
|
5617
5265
|
exerciseToSplitId: z.ZodInt;
|
|
5618
5266
|
exerciseId: z.ZodInt;
|
|
5619
5267
|
name: z.ZodString;
|
|
5620
|
-
sets: z.ZodArray<z.
|
|
5268
|
+
sets: z.ZodArray<z.ZodObject<{
|
|
5269
|
+
orderIndex: z.ZodInt;
|
|
5270
|
+
reps: z.ZodInt;
|
|
5271
|
+
}, z.core.$strip>>;
|
|
5621
5272
|
orderIndex: z.ZodInt;
|
|
5622
5273
|
isActive: z.ZodBoolean;
|
|
5623
5274
|
targetMuscle: z.ZodString;
|
|
@@ -5664,7 +5315,10 @@ declare const exerciseInPlanQueryDtoSchema: z.ZodObject<{
|
|
|
5664
5315
|
exerciseToSplitId: z.ZodInt;
|
|
5665
5316
|
exerciseId: z.ZodInt;
|
|
5666
5317
|
name: z.ZodString;
|
|
5667
|
-
sets: z.ZodArray<z.
|
|
5318
|
+
sets: z.ZodArray<z.ZodObject<{
|
|
5319
|
+
orderIndex: z.ZodInt;
|
|
5320
|
+
reps: z.ZodInt;
|
|
5321
|
+
}, z.core.$strip>>;
|
|
5668
5322
|
orderIndex: z.ZodInt;
|
|
5669
5323
|
isActive: z.ZodBoolean;
|
|
5670
5324
|
targetMuscle: z.ZodString;
|
|
@@ -5683,7 +5337,10 @@ declare const workoutSplitQueryDtoSchema: z.ZodObject<{
|
|
|
5683
5337
|
exerciseToSplitId: z.ZodInt;
|
|
5684
5338
|
exerciseId: z.ZodInt;
|
|
5685
5339
|
name: z.ZodString;
|
|
5686
|
-
sets: z.ZodArray<z.
|
|
5340
|
+
sets: z.ZodArray<z.ZodObject<{
|
|
5341
|
+
orderIndex: z.ZodInt;
|
|
5342
|
+
reps: z.ZodInt;
|
|
5343
|
+
}, z.core.$strip>>;
|
|
5687
5344
|
orderIndex: z.ZodInt;
|
|
5688
5345
|
isActive: z.ZodBoolean;
|
|
5689
5346
|
targetMuscle: z.ZodString;
|
|
@@ -5710,7 +5367,10 @@ declare const wholeUserWorkoutPlanQueryDtoSchema: z.ZodObject<{
|
|
|
5710
5367
|
exerciseToSplitId: z.ZodInt;
|
|
5711
5368
|
exerciseId: z.ZodInt;
|
|
5712
5369
|
name: z.ZodString;
|
|
5713
|
-
sets: z.ZodArray<z.
|
|
5370
|
+
sets: z.ZodArray<z.ZodObject<{
|
|
5371
|
+
orderIndex: z.ZodInt;
|
|
5372
|
+
reps: z.ZodInt;
|
|
5373
|
+
}, z.core.$strip>>;
|
|
5714
5374
|
orderIndex: z.ZodInt;
|
|
5715
5375
|
isActive: z.ZodBoolean;
|
|
5716
5376
|
targetMuscle: z.ZodString;
|
|
@@ -6707,4 +6367,4 @@ type WorkoutSummaryIdQueryDto = z.infer<typeof workoutSummaryIdQueryDtoSchema>;
|
|
|
6707
6367
|
type ExerciseTrackingIdQueryDto = z.infer<typeof exerciseTrackingIdQueryDtoSchema>;
|
|
6708
6368
|
type FinishedWorkoutEntryQueryDto = z.infer<typeof finishedWorkoutEntryQueryDtoSchema>;
|
|
6709
6369
|
|
|
6710
|
-
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
|
|
6370
|
+
export { type AccessTokenPayloadDto, type AddAerobicInputQueryDto, type AddUserAerobicsBody, type AddWorkoutBody, type AddWorkoutResponse, type AdherenceExerciseStatsQueryDto, type AerobicTrackingRow, type AerobicsDailyRecordQueryDto, type AerobicsWeeklyRecordQueryDto, type AllUserMessageQueryDto, type AnalyzeVideoPayloadDto, type AnalyzeVideoResultPayloadDto, type AppleOAuthBody, type AppleTokenVerificationResultDto, type AuthenticatedUserForUpdateQueryDto, type BodyOf, type ChangeEmailAndVerifyBody, type ChangeEmailTokenPayloadDto, type CheckUserVerifyQuery, type Contract, type CreateUserBody, type CreateUserResponse, type CreatedUserQueryDto, type CreatedUserRawQueryDto, type CreatedUserRowQueryDto, type DeleteMessageParams, type DeleteMessageResponse, type DeleteUserProfilePicBody, type DeletedMessageQueryDto, type EmailVerifyPayloadDto, type EnqueueAnalyzeVideoParamsDto, type ExerciseAssignmentIdQueryDto, type ExerciseInPlanQueryDto, type ExerciseMapByMuscleRowQueryDto, type ExerciseMetadataQueryDto, type ExerciseRow, type ExerciseToWorkoutSplitRow, type ExerciseTrackingAnalysisQueryDto, type ExerciseTrackingAndStatsQueryDto, type ExerciseTrackingAndStatsRowQueryDto, type ExerciseTrackingIdQueryDto, type ExerciseTrackingMapsQueryDto, type ExerciseTrackingMapsRowQueryDto, type ExerciseTrackingPrMaxQueryDto, type ExerciseTrackingRow, type ExerciseTrackingStatsQueryDto, type ExerciseTrackingStatsRowQueryDto, type ExercisesMapByMuscleQueryDto, type FinishUserWorkoutBody, type FinishUserWorkoutResponse, type FinishedWorkoutEntryQueryDto, type ForgotPasswordPayloadDto, type GenerateTicketBody, type GenerateTicketResponse, type GetAllExercisesExerciseQueryDto, type GetAllExercisesResponse, type GetAllUserMessagesQuery, type GetAllUserMessagesResponse, type GetAnalyticsResponse, type GetAuthenticatedUserByIdResponse, type GetExerciseTrackingQuery, type GetExerciseTrackingResponse, type GetExerciseTrackingStatsResponse, type GetPresignedUrlFromS3Body, type GetPresignedUrlFromS3Response, type GetUserAerobicsQuery, type GetWholeUserWorkoutPlanQuery, type GetWholeUserWorkoutPlanResponse, type GoalAdherenceQueryDto, type GoalAdherenceRowQueryDto, type GoogleOAuthBody, type GoogleTokenVerificationResultDto, type LastLoginQueryDto, type LoginRequestBody, type LoginResponse, type LogoutResponse, type MarkMessageAsReadParams, type MarkMessageAsReadResponse, type MessageAfterSendQueryDto, type MessageAsReadQueryDto, type MessageRow, type OAuthCreatedUserRowQueryDto, type OAuthLinkQueryDto, type OAuthLinkRowQueryDto, type OAuthLoginResponse, type OAuthLookupQueryDto, type OAuthLookupRawQueryDto, type OAuthLookupRowQueryDto, type ParamsOf, type QueryOf, type RefreshTokenResponse, type RequestOf, type RequestSchema, type ResetPasswordBody, type ResetPasswordQuery, type ResetPasswordResponse, type ResponseOf, type SaveUserPushTokenBody, type SaveWorkoutSplitInputQueryDto, type SaveWorkoutSplitPayloadQueryDto, type SendChangePassEmailBody, type SendVerificationMailBody, type SetProfilePicAndUpdateDBResponse, type SquatRepetitionDto, type TokenVersionQueryDto, type TrackingByDateItemQueryDto, type TrackingBySplitNameItemQueryDto, type TrackingMapItemQueryDto, type UpdateAuthenticatedUserResponse, type UpdateUserBody, type UserAerobicsQueryDto, type UserAerobicsResponse, type UserAerobicsRowQueryDto, type UserAfterBumpQueryDto, type UserByIdentifierQueryDto, type UserByIdentifierRawQueryDto, type UserByIdentifierRowQueryDto, type UserByUsernameRawQueryDto, type UserByUsernameRowQueryDto, type UserConflictQueryDto, type UserDataQueryDto, type UserDataResponse, type UserDataRowQueryDto, type UserExistsQueryDto, type UserInsert, type UserMessageIdentityQueryDto, type UserProfilePicQueryDto, type UserRow, type UserToHourlyReminderQueryDto, type UserWithNotificationsEnabledQueryDto, type VerifyUserAccountQuery, type WeeklyDataQueryDto, type WholeUserWorkoutPlanQueryDto, type WorkoutExerciseInputQueryDto, type WorkoutPlanIdQueryDto, type WorkoutPlanRow, type WorkoutRmRecordQueryDto, type WorkoutRmsQueryDto, type WorkoutRmsRowQueryDto, type WorkoutSplitIdQueryDto, type WorkoutSplitLookupQueryDto, type WorkoutSplitQueryDto, type WorkoutSplitRow, type WorkoutSummaryIdQueryDto, type WorkoutSummaryRow, accessTokenPayloadDtoSchema, addAerobicInputQueryDtoSchema, addAerobicsRequestSchema, addUserAerobicsContract, addWorkoutContract, addWorkoutRequestSchema, addWorkoutResponseSchema, adherenceExerciseStatsQueryDtoSchema, aerobicTrackingDbSchema, aerobicsDailyRecordQueryDtoSchema, aerobicsWeeklyRecordQueryDtoSchema, allUserMessageQueryDtoSchema, analyzeVideoPayloadDtoSchema, analyzeVideoResultPayloadDtoSchema, appleOAuthContract, appleOAuthRequestSchema, appleTokenVerificationResultDtoSchema, authenticatedUserForUpdateQueryDtoSchema, changeEmailAndVerifyContract, changeEmailAndVerifyRequestSchema, changeEmailTokenPayloadDtoSchema, checkUserVerifyContract, checkUserVerifyRequestSchema, createUserContract, createUserRequestSchema, createUserResponseSchema, createUserUserSchema, createdUserQueryDtoSchema, createdUserRawQueryDtoSchema, createdUserRowQueryDtoSchema, deleteMessageContract, deleteMessageRequestSchema, deleteMessageResponseSchema, deleteProfilePicRequestSchema, deleteUserProfilePicContract, deletedMessageQueryDtoSchema, emailVerifyPayloadDtoSchema, enqueueAnalyzeVideoParamsDtoSchema, exerciseAssignmentIdQueryDtoSchema, exerciseDbSchema, exerciseInPlanQueryDtoSchema, exerciseMapByMuscleRowQueryDtoSchema, exerciseMetadataQueryDtoSchema, exerciseToWorkoutSplitDbSchema, exerciseToWorkoutSplitSetExpandedViewDbSchema, exerciseTrackingAnalysisQueryDtoSchema, exerciseTrackingAndStatsQueryDtoSchema, exerciseTrackingAndStatsRowQueryDtoSchema, exerciseTrackingDbSchema, exerciseTrackingIdQueryDtoSchema, exerciseTrackingMapsQueryDtoSchema, exerciseTrackingMapsRowQueryDtoSchema, exerciseTrackingPrMaxQueryDtoSchema, exerciseTrackingSetExpandedViewDbSchema, exerciseTrackingStatsQueryDtoSchema, exerciseTrackingStatsRowQueryDtoSchema, exercisesMapByMuscleQueryDtoSchema, finishUserWorkoutContract, finishUserWorkoutResponseSchema, finishWorkoutRequestSchema, finishedWorkoutEntryQueryDtoSchema, forgotPasswordPayloadDtoSchema, generateTicketContract, generateTicketRequestSchema, generateTicketResponseSchema, getAerobicsRequestSchema, getAllExercisesContract, getAllExercisesExerciseQueryDtoSchema, getAllExercisesResponseSchema, getAllMessagesRequestSchema, getAllUserMessagesContract, getAllUserMessagesResponseSchema, getAnalyticsContract, getAnalyticsResponseSchema, getAuthenticatedUserByIdContract, getAuthenticatedUserByIdResponseSchema, getExerciseTrackingContract, getExerciseTrackingRequestSchema, getExerciseTrackingResponseSchema, getExerciseTrackingStatsContract, getExerciseTrackingStatsResponseSchema, getPresignedUrlFromS3Contract, getPresignedUrlFromS3RequestSchema, getPresignedUrlFromS3ResponseSchema, getUserAerobicsContract, getWholeUserWorkoutPlanContract, getWholeUserWorkoutPlanResponseSchema, getWholeWorkoutPlanRequestSchema, goalAdherenceQueryDtoSchema, goalAdherenceRowQueryDtoSchema, googleOAuthContract, googleOAuthRequestSchema, googleTokenVerificationResultDtoSchema, lastLoginQueryDtoSchema, loginContract, loginRequestSchema, loginResponseSchema, logoutContract, logoutResponseSchema, markMessageAsReadContract, markMessageAsReadRequestSchema, markMessageAsReadResponseSchema, messageAfterSendQueryDtoSchema, messageAsReadQueryDtoSchema, messageDbSchema, oAuthCreatedUserRowQueryDtoSchema, oAuthLinkQueryDtoSchema, oAuthLinkRowQueryDtoSchema, oAuthLoginContract, oAuthLoginResponseSchema, oAuthLookupQueryDtoSchema, oAuthLookupRawQueryDtoSchema, oAuthLookupRowQueryDtoSchema, oauthAccountDbSchema, proceedLoginResponseSchema, prsViewDbSchema, refreshTokenContract, refreshTokenResponseSchema, resetPasswordContract, resetPasswordRequestSchema, resetPasswordResponseSchema, saveUserPushTokenContract, saveUserPushTokenRequestSchema, saveWorkoutSplitInputQueryDtoSchema, saveWorkoutSplitPayloadQueryDtoSchema, sendChangePassEmailContract, sendChangePassEmailRequestSchema, sendVerificationMailContract, sendVerificationMailRequestSchema, serializedDateSchema, setProfilePicAndUpdateDBContract, setProfilePicAndUpdateDBResponseSchema, squatRepetitionDtoSchema, timezoneSchema, tokenVersionQueryDtoSchema, trackingByDateItemQueryDtoSchema, trackingBySplitNameItemQueryDtoSchema, trackingMapItemQueryDtoSchema, trackingSetDbSchema, updateAuthenticatedUserContract, updateAuthenticatedUserResponseSchema, updateUserRequestSchema, userAerobicsQueryDtoSchema, userAerobicsResponseSchema, userAerobicsRowQueryDtoSchema, userAfterBumpQueryDtoSchema, userByIdentifierQueryDtoSchema, userByIdentifierRawQueryDtoSchema, userByIdentifierRowQueryDtoSchema, userByUsernameRawQueryDtoSchema, userByUsernameRowQueryDtoSchema, userConflictQueryDtoSchema, userDataContract, userDataQueryDtoSchema, userDataResponseSchema, userDataRowQueryDtoSchema, userDbSchema, userExistsQueryDtoSchema, userInsertDbSchema, userMessageIdentityQueryDtoSchema, userProfilePicQueryDtoSchema, userReminderSettingDbSchema, userSplitInformationDbSchema, userToHourlyReminderQueryDtoSchema, userUpdateDbSchema, userWithNotificationsEnabledQueryDtoSchema, verifyAccountRequestSchema, verifyUserAccountContract, weeklyDataQueryDtoSchema, wholeUserWorkoutPlanQueryDtoSchema, workoutExerciseInputQueryDtoSchema, workoutPlanDbSchema, workoutPlanIdQueryDtoSchema, workoutRmRecordQueryDtoSchema, workoutRmsQueryDtoSchema, workoutRmsRowQueryDtoSchema, workoutSetDbSchema, workoutSplitDbSchema, workoutSplitIdQueryDtoSchema, workoutSplitLookupQueryDtoSchema, workoutSplitQueryDtoSchema, workoutSummaryDbSchema, workoutSummaryIdQueryDtoSchema };
|