@strong-together/shared 2.8.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 -428
- package/dist/index.d.cts +7 -374
- package/dist/index.d.ts +7 -374
- package/dist/index.js +484 -506
- 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,373 +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.ZodObject<{
|
|
4384
|
-
orderIndex: z.ZodInt;
|
|
4385
|
-
reps: z.ZodInt;
|
|
4386
|
-
}, z.core.$strip>>;
|
|
4387
|
-
orderIndex: z.ZodInt;
|
|
4388
|
-
isActive: z.ZodBoolean;
|
|
4389
|
-
targetMuscle: z.ZodString;
|
|
4390
|
-
specificTargetMuscle: z.ZodString;
|
|
4391
|
-
}, z.core.$strip>>;
|
|
4392
|
-
}, z.core.$strip>>>;
|
|
4393
|
-
}, z.core.$strip>>;
|
|
4394
|
-
}, z.core.$strip>;
|
|
4395
|
-
tracking: z.ZodObject<{
|
|
4396
|
-
trackingStats: z.ZodObject<{
|
|
4397
|
-
workoutCount: z.ZodCoercedNumber<unknown>;
|
|
4398
|
-
hasExerciseTracking: z.ZodBoolean;
|
|
4399
|
-
nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
|
|
4400
|
-
id: z.ZodInt;
|
|
4401
|
-
name: z.ZodString;
|
|
4402
|
-
orderIndex: z.ZodInt;
|
|
4403
|
-
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
4404
|
-
}, z.core.$strip>>;
|
|
4405
|
-
workoutTargets: z.ZodObject<{
|
|
4406
|
-
workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
|
|
4407
|
-
workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
|
|
4408
|
-
weekStreak: z.ZodCoercedNumber<unknown>;
|
|
4409
|
-
}, z.core.$strip>;
|
|
4410
|
-
lastWorkoutStats: z.ZodObject<{
|
|
4411
|
-
workoutDate: z.ZodNullable<z.ZodString>;
|
|
4412
|
-
workoutSplitName: z.ZodNullable<z.ZodString>;
|
|
4413
|
-
exerciseTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
|
|
4414
|
-
setTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
|
|
4415
|
-
}, z.core.$strip>;
|
|
4416
|
-
prs: z.ZodArray<z.ZodObject<{
|
|
4417
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
4418
|
-
exerciseId: z.ZodInt;
|
|
4419
|
-
exerciseName: z.ZodString;
|
|
4420
|
-
prWeight: z.ZodNumber;
|
|
4421
|
-
prReps: z.ZodInt;
|
|
4422
|
-
prSetIndex: z.ZodInt;
|
|
4423
|
-
estimatedOneRepMax: z.ZodNullable<z.ZodNumber>;
|
|
4424
|
-
}, z.core.$strip>>;
|
|
4425
|
-
}, z.core.$strip>;
|
|
4426
|
-
trackingMaps: z.ZodObject<{
|
|
4427
|
-
byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
4428
|
-
exerciseTracking: z.ZodObject<{
|
|
4429
|
-
exerciseTrackingId: z.ZodInt;
|
|
4430
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
4431
|
-
setIndex: z.ZodInt;
|
|
4432
|
-
weight: z.ZodNumber;
|
|
4433
|
-
reps: z.ZodInt;
|
|
4434
|
-
}, z.core.$strip>>;
|
|
4435
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
4436
|
-
exerciseAssignment: z.ZodObject<{
|
|
4437
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
4438
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
4439
|
-
exerciseId: z.ZodInt;
|
|
4440
|
-
workoutSplitId: z.ZodInt;
|
|
4441
|
-
workoutSplitName: z.ZodString;
|
|
4442
|
-
exerciseName: z.ZodString;
|
|
4443
|
-
targetMuscle: z.ZodString;
|
|
4444
|
-
specificTargetMuscle: z.ZodString;
|
|
4445
|
-
}, z.core.$strip>;
|
|
4446
|
-
}, z.core.$strip>;
|
|
4447
|
-
}, z.core.$strip>>>;
|
|
4448
|
-
byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
4449
|
-
exerciseTracking: z.ZodObject<{
|
|
4450
|
-
exerciseTrackingId: z.ZodInt;
|
|
4451
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
4452
|
-
setIndex: z.ZodInt;
|
|
4453
|
-
weight: z.ZodNumber;
|
|
4454
|
-
reps: z.ZodInt;
|
|
4455
|
-
}, z.core.$strip>>;
|
|
4456
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
4457
|
-
exerciseAssignment: z.ZodObject<{
|
|
4458
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
4459
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
4460
|
-
exerciseId: z.ZodInt;
|
|
4461
|
-
workoutSplitId: z.ZodInt;
|
|
4462
|
-
workoutSplitName: z.ZodString;
|
|
4463
|
-
exerciseName: z.ZodString;
|
|
4464
|
-
targetMuscle: z.ZodString;
|
|
4465
|
-
specificTargetMuscle: z.ZodString;
|
|
4466
|
-
}, z.core.$strip>;
|
|
4467
|
-
}, z.core.$strip>;
|
|
4468
|
-
}, z.core.$strip>>>;
|
|
4469
|
-
bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
4470
|
-
exerciseTracking: z.ZodObject<{
|
|
4471
|
-
exerciseTrackingId: z.ZodInt;
|
|
4472
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
4473
|
-
setIndex: z.ZodInt;
|
|
4474
|
-
weight: z.ZodNumber;
|
|
4475
|
-
reps: z.ZodInt;
|
|
4476
|
-
}, z.core.$strip>>;
|
|
4477
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
4478
|
-
exerciseAssignment: z.ZodObject<{
|
|
4479
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
4480
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
4481
|
-
exerciseId: z.ZodInt;
|
|
4482
|
-
workoutSplitId: z.ZodInt;
|
|
4483
|
-
workoutSplitName: z.ZodString;
|
|
4484
|
-
exerciseName: z.ZodString;
|
|
4485
|
-
targetMuscle: z.ZodString;
|
|
4486
|
-
specificTargetMuscle: z.ZodString;
|
|
4487
|
-
}, z.core.$strip>;
|
|
4488
|
-
}, z.core.$strip>;
|
|
4489
|
-
}, z.core.$strip>>>;
|
|
4490
|
-
}, z.core.$strip>;
|
|
4491
|
-
}, z.core.$strip>;
|
|
4492
|
-
messages: z.ZodObject<{
|
|
4493
|
-
messages: z.ZodArray<z.ZodObject<{
|
|
4494
|
-
id: z.ZodUUID;
|
|
4495
|
-
subject: z.ZodString;
|
|
4496
|
-
msg: z.ZodString;
|
|
4497
|
-
sentAt: z.ZodString;
|
|
4498
|
-
isRead: z.ZodBoolean;
|
|
4499
|
-
senderFullName: z.ZodString;
|
|
4500
|
-
senderProfilePicPath: z.ZodNullable<z.ZodString>;
|
|
4501
|
-
}, z.core.$strip>>;
|
|
4502
|
-
}, z.core.$strip>;
|
|
4503
|
-
aerobics: z.ZodObject<{
|
|
4504
|
-
daily: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
4505
|
-
type: z.ZodString;
|
|
4506
|
-
durationSec: z.ZodInt;
|
|
4507
|
-
durationMins: z.ZodInt;
|
|
4508
|
-
}, z.core.$strip>>>;
|
|
4509
|
-
weekly: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4510
|
-
records: z.ZodArray<z.ZodObject<{
|
|
4511
|
-
type: z.ZodString;
|
|
4512
|
-
durationSec: z.ZodInt;
|
|
4513
|
-
durationMins: z.ZodInt;
|
|
4514
|
-
workoutTimeUtc: z.ZodString;
|
|
4515
|
-
}, z.core.$strip>>;
|
|
4516
|
-
totalDurationSec: z.ZodNumber;
|
|
4517
|
-
totalDurationMins: z.ZodNumber;
|
|
4518
|
-
}, z.core.$strip>>;
|
|
4519
|
-
}, z.core.$strip>;
|
|
4520
|
-
}, z.core.$strip>;
|
|
4521
|
-
declare const bootstrapContract: {
|
|
4522
|
-
request: z.ZodObject<{
|
|
4523
|
-
query: z.ZodObject<{
|
|
4524
|
-
tz: z.ZodOptional<z.ZodString>;
|
|
4525
|
-
}, z.core.$strip>;
|
|
4526
|
-
}, z.core.$strip>;
|
|
4527
|
-
response: z.ZodObject<{
|
|
4528
|
-
user: z.ZodObject<{
|
|
4529
|
-
id: z.ZodUUID;
|
|
4530
|
-
username: z.ZodString;
|
|
4531
|
-
email: z.ZodString;
|
|
4532
|
-
name: z.ZodString;
|
|
4533
|
-
gender: z.ZodString;
|
|
4534
|
-
createdAt: z.ZodString;
|
|
4535
|
-
updatedAt: z.ZodString;
|
|
4536
|
-
profilePicPath: z.ZodNullable<z.ZodString>;
|
|
4537
|
-
pushToken: z.ZodNullable<z.ZodString>;
|
|
4538
|
-
role: z.ZodString;
|
|
4539
|
-
isFirstLogin: z.ZodBoolean;
|
|
4540
|
-
tokenVersion: z.ZodInt;
|
|
4541
|
-
isVerified: z.ZodBoolean;
|
|
4542
|
-
authProvider: z.ZodString;
|
|
4543
|
-
lastLogin: z.ZodNullable<z.ZodString>;
|
|
4544
|
-
}, z.core.$strip>;
|
|
4545
|
-
workout: z.ZodObject<{
|
|
4546
|
-
workoutPlan: z.ZodNullable<z.ZodObject<{
|
|
4547
|
-
id: z.ZodInt;
|
|
4548
|
-
numberOfSplits: z.ZodNumber;
|
|
4549
|
-
createdAt: z.ZodString;
|
|
4550
|
-
userId: z.ZodUUID;
|
|
4551
|
-
isActive: z.ZodBoolean;
|
|
4552
|
-
updatedAt: z.ZodString;
|
|
4553
|
-
workoutSplits: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
4554
|
-
id: z.ZodInt;
|
|
4555
|
-
workoutId: z.ZodInt;
|
|
4556
|
-
name: z.ZodString;
|
|
4557
|
-
orderIndex: z.ZodInt;
|
|
4558
|
-
createdAt: z.ZodString;
|
|
4559
|
-
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
4560
|
-
isActive: z.ZodBoolean;
|
|
4561
|
-
exercises: z.ZodArray<z.ZodObject<{
|
|
4562
|
-
exerciseToSplitId: z.ZodInt;
|
|
4563
|
-
exerciseId: z.ZodInt;
|
|
4564
|
-
name: z.ZodString;
|
|
4565
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
4566
|
-
orderIndex: z.ZodInt;
|
|
4567
|
-
reps: z.ZodInt;
|
|
4568
|
-
}, z.core.$strip>>;
|
|
4569
|
-
orderIndex: z.ZodInt;
|
|
4570
|
-
isActive: z.ZodBoolean;
|
|
4571
|
-
targetMuscle: z.ZodString;
|
|
4572
|
-
specificTargetMuscle: z.ZodString;
|
|
4573
|
-
}, z.core.$strip>>;
|
|
4574
|
-
}, z.core.$strip>>>;
|
|
4575
|
-
}, z.core.$strip>>;
|
|
4576
|
-
}, z.core.$strip>;
|
|
4577
|
-
tracking: z.ZodObject<{
|
|
4578
|
-
trackingStats: z.ZodObject<{
|
|
4579
|
-
workoutCount: z.ZodCoercedNumber<unknown>;
|
|
4580
|
-
hasExerciseTracking: z.ZodBoolean;
|
|
4581
|
-
nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
|
|
4582
|
-
id: z.ZodInt;
|
|
4583
|
-
name: z.ZodString;
|
|
4584
|
-
orderIndex: z.ZodInt;
|
|
4585
|
-
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
4586
|
-
}, z.core.$strip>>;
|
|
4587
|
-
workoutTargets: z.ZodObject<{
|
|
4588
|
-
workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
|
|
4589
|
-
workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
|
|
4590
|
-
weekStreak: z.ZodCoercedNumber<unknown>;
|
|
4591
|
-
}, z.core.$strip>;
|
|
4592
|
-
lastWorkoutStats: z.ZodObject<{
|
|
4593
|
-
workoutDate: z.ZodNullable<z.ZodString>;
|
|
4594
|
-
workoutSplitName: z.ZodNullable<z.ZodString>;
|
|
4595
|
-
exerciseTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
|
|
4596
|
-
setTrackedCount: z.ZodNullable<z.ZodCoercedNumber<unknown>>;
|
|
4597
|
-
}, z.core.$strip>;
|
|
4598
|
-
prs: z.ZodArray<z.ZodObject<{
|
|
4599
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
4600
|
-
exerciseId: z.ZodInt;
|
|
4601
|
-
exerciseName: z.ZodString;
|
|
4602
|
-
prWeight: z.ZodNumber;
|
|
4603
|
-
prReps: z.ZodInt;
|
|
4604
|
-
prSetIndex: z.ZodInt;
|
|
4605
|
-
estimatedOneRepMax: z.ZodNullable<z.ZodNumber>;
|
|
4606
|
-
}, z.core.$strip>>;
|
|
4607
|
-
}, z.core.$strip>;
|
|
4608
|
-
trackingMaps: z.ZodObject<{
|
|
4609
|
-
byDate: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
4610
|
-
exerciseTracking: z.ZodObject<{
|
|
4611
|
-
exerciseTrackingId: z.ZodInt;
|
|
4612
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
4613
|
-
setIndex: z.ZodInt;
|
|
4614
|
-
weight: z.ZodNumber;
|
|
4615
|
-
reps: z.ZodInt;
|
|
4616
|
-
}, z.core.$strip>>;
|
|
4617
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
4618
|
-
exerciseAssignment: z.ZodObject<{
|
|
4619
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
4620
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
4621
|
-
exerciseId: z.ZodInt;
|
|
4622
|
-
workoutSplitId: z.ZodInt;
|
|
4623
|
-
workoutSplitName: z.ZodString;
|
|
4624
|
-
exerciseName: z.ZodString;
|
|
4625
|
-
targetMuscle: z.ZodString;
|
|
4626
|
-
specificTargetMuscle: z.ZodString;
|
|
4627
|
-
}, z.core.$strip>;
|
|
4628
|
-
}, z.core.$strip>;
|
|
4629
|
-
}, z.core.$strip>>>;
|
|
4630
|
-
byExerciseToSplitId: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
4631
|
-
exerciseTracking: z.ZodObject<{
|
|
4632
|
-
exerciseTrackingId: z.ZodInt;
|
|
4633
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
4634
|
-
setIndex: z.ZodInt;
|
|
4635
|
-
weight: z.ZodNumber;
|
|
4636
|
-
reps: z.ZodInt;
|
|
4637
|
-
}, z.core.$strip>>;
|
|
4638
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
4639
|
-
exerciseAssignment: z.ZodObject<{
|
|
4640
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
4641
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
4642
|
-
exerciseId: z.ZodInt;
|
|
4643
|
-
workoutSplitId: z.ZodInt;
|
|
4644
|
-
workoutSplitName: z.ZodString;
|
|
4645
|
-
exerciseName: z.ZodString;
|
|
4646
|
-
targetMuscle: z.ZodString;
|
|
4647
|
-
specificTargetMuscle: z.ZodString;
|
|
4648
|
-
}, z.core.$strip>;
|
|
4649
|
-
}, z.core.$strip>;
|
|
4650
|
-
}, z.core.$strip>>>;
|
|
4651
|
-
bySplitName: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
4652
|
-
exerciseTracking: z.ZodObject<{
|
|
4653
|
-
exerciseTrackingId: z.ZodInt;
|
|
4654
|
-
sets: z.ZodArray<z.ZodObject<{
|
|
4655
|
-
setIndex: z.ZodInt;
|
|
4656
|
-
weight: z.ZodNumber;
|
|
4657
|
-
reps: z.ZodInt;
|
|
4658
|
-
}, z.core.$strip>>;
|
|
4659
|
-
notes: z.ZodNullable<z.ZodString>;
|
|
4660
|
-
exerciseAssignment: z.ZodObject<{
|
|
4661
|
-
exerciseToSplitId: z.ZodNullable<z.ZodInt>;
|
|
4662
|
-
orderIndex: z.ZodNullable<z.ZodInt>;
|
|
4663
|
-
exerciseId: z.ZodInt;
|
|
4664
|
-
workoutSplitId: z.ZodInt;
|
|
4665
|
-
workoutSplitName: z.ZodString;
|
|
4666
|
-
exerciseName: z.ZodString;
|
|
4667
|
-
targetMuscle: z.ZodString;
|
|
4668
|
-
specificTargetMuscle: z.ZodString;
|
|
4669
|
-
}, z.core.$strip>;
|
|
4670
|
-
}, z.core.$strip>;
|
|
4671
|
-
}, z.core.$strip>>>;
|
|
4672
|
-
}, z.core.$strip>;
|
|
4673
|
-
}, z.core.$strip>;
|
|
4674
|
-
messages: z.ZodObject<{
|
|
4675
|
-
messages: z.ZodArray<z.ZodObject<{
|
|
4676
|
-
id: z.ZodUUID;
|
|
4677
|
-
subject: z.ZodString;
|
|
4678
|
-
msg: z.ZodString;
|
|
4679
|
-
sentAt: z.ZodString;
|
|
4680
|
-
isRead: z.ZodBoolean;
|
|
4681
|
-
senderFullName: z.ZodString;
|
|
4682
|
-
senderProfilePicPath: z.ZodNullable<z.ZodString>;
|
|
4683
|
-
}, z.core.$strip>>;
|
|
4684
|
-
}, z.core.$strip>;
|
|
4685
|
-
aerobics: z.ZodObject<{
|
|
4686
|
-
daily: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
4687
|
-
type: z.ZodString;
|
|
4688
|
-
durationSec: z.ZodInt;
|
|
4689
|
-
durationMins: z.ZodInt;
|
|
4690
|
-
}, z.core.$strip>>>;
|
|
4691
|
-
weekly: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4692
|
-
records: z.ZodArray<z.ZodObject<{
|
|
4693
|
-
type: z.ZodString;
|
|
4694
|
-
durationSec: z.ZodInt;
|
|
4695
|
-
durationMins: z.ZodInt;
|
|
4696
|
-
workoutTimeUtc: z.ZodString;
|
|
4697
|
-
}, z.core.$strip>>;
|
|
4698
|
-
totalDurationSec: z.ZodNumber;
|
|
4699
|
-
totalDurationMins: z.ZodNumber;
|
|
4700
|
-
}, z.core.$strip>>;
|
|
4701
|
-
}, z.core.$strip>;
|
|
4702
|
-
}, z.core.$strip>;
|
|
4703
|
-
};
|
|
4704
|
-
type BootstrapRequestQuery = QueryOf<typeof bootstrapContract>;
|
|
4705
|
-
type BootstrapResponse = ResponseOf<typeof bootstrapContract>;
|
|
4706
|
-
|
|
4707
4340
|
declare const getAllExercisesResponseSchema: zod_v4.ZodRecord<zod_v4.ZodString, zod_v4.ZodArray<zod_v4.ZodObject<{
|
|
4708
4341
|
id: zod_v4.ZodInt;
|
|
4709
4342
|
name: zod_v4.ZodString;
|
|
@@ -6734,4 +6367,4 @@ type WorkoutSummaryIdQueryDto = z.infer<typeof workoutSummaryIdQueryDtoSchema>;
|
|
|
6734
6367
|
type ExerciseTrackingIdQueryDto = z.infer<typeof exerciseTrackingIdQueryDtoSchema>;
|
|
6735
6368
|
type FinishedWorkoutEntryQueryDto = z.infer<typeof finishedWorkoutEntryQueryDtoSchema>;
|
|
6736
6369
|
|
|
6737
|
-
export { type AccessTokenPayloadDto, type AddAerobicInputQueryDto, type AddUserAerobicsBody, type AddWorkoutBody, type AddWorkoutResponse, type AdherenceExerciseStatsQueryDto, type AerobicTrackingRow, type AerobicsDailyRecordQueryDto, type AerobicsWeeklyRecordQueryDto, type AllUserMessageQueryDto, type AnalyzeVideoPayloadDto, type AnalyzeVideoResultPayloadDto, type AppleOAuthBody, type AppleTokenVerificationResultDto, type AuthenticatedUserForUpdateQueryDto, type BodyOf, type
|
|
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 };
|