@strong-together/shared 2.5.0 → 2.7.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 +39 -44
- package/dist/index.d.cts +201 -140
- package/dist/index.d.ts +201 -140
- package/dist/index.js +55 -57
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -540,6 +540,23 @@ declare const workoutSplit: drizzle_orm_pg_core.PgTableWithColumns<{
|
|
|
540
540
|
identity: undefined;
|
|
541
541
|
generated: undefined;
|
|
542
542
|
}, {}, {}>;
|
|
543
|
+
orderIndex: drizzle_orm_pg_core.PgColumn<{
|
|
544
|
+
name: "order_index";
|
|
545
|
+
tableName: "workout_split";
|
|
546
|
+
dataType: "number";
|
|
547
|
+
columnType: "PgInteger";
|
|
548
|
+
data: number;
|
|
549
|
+
driverParam: string | number;
|
|
550
|
+
notNull: true;
|
|
551
|
+
hasDefault: false;
|
|
552
|
+
isPrimaryKey: false;
|
|
553
|
+
isAutoincrement: false;
|
|
554
|
+
hasRuntimeDefault: false;
|
|
555
|
+
enumValues: undefined;
|
|
556
|
+
baseColumn: never;
|
|
557
|
+
identity: undefined;
|
|
558
|
+
generated: undefined;
|
|
559
|
+
}, {}, {}>;
|
|
543
560
|
createdAt: drizzle_orm_pg_core.PgColumn<{
|
|
544
561
|
name: "created_at";
|
|
545
562
|
tableName: "workout_split";
|
|
@@ -2229,6 +2246,23 @@ declare const workoutSplitDbSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
2229
2246
|
identity: undefined;
|
|
2230
2247
|
generated: undefined;
|
|
2231
2248
|
}, {}, {}>;
|
|
2249
|
+
orderIndex: drizzle_orm_pg_core.PgColumn<{
|
|
2250
|
+
name: "order_index";
|
|
2251
|
+
tableName: "workout_split";
|
|
2252
|
+
dataType: "number";
|
|
2253
|
+
columnType: "PgInteger";
|
|
2254
|
+
data: number;
|
|
2255
|
+
driverParam: string | number;
|
|
2256
|
+
notNull: true;
|
|
2257
|
+
hasDefault: false;
|
|
2258
|
+
isPrimaryKey: false;
|
|
2259
|
+
isAutoincrement: false;
|
|
2260
|
+
hasRuntimeDefault: false;
|
|
2261
|
+
enumValues: undefined;
|
|
2262
|
+
baseColumn: never;
|
|
2263
|
+
identity: undefined;
|
|
2264
|
+
generated: undefined;
|
|
2265
|
+
}, {}, {}>;
|
|
2232
2266
|
createdAt: drizzle_orm_pg_core.PgColumn<{
|
|
2233
2267
|
name: "created_at";
|
|
2234
2268
|
tableName: "workout_split";
|
|
@@ -4338,33 +4372,33 @@ declare const bootstrapResponseSchema: z.ZodObject<{
|
|
|
4338
4372
|
id: z.ZodInt;
|
|
4339
4373
|
workoutId: z.ZodInt;
|
|
4340
4374
|
name: z.ZodString;
|
|
4375
|
+
orderIndex: z.ZodInt;
|
|
4341
4376
|
createdAt: z.ZodString;
|
|
4342
4377
|
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
4343
4378
|
isActive: z.ZodBoolean;
|
|
4344
|
-
|
|
4345
|
-
|
|
4379
|
+
exercises: z.ZodArray<z.ZodObject<{
|
|
4380
|
+
exerciseToSplitId: z.ZodInt;
|
|
4381
|
+
exerciseId: z.ZodInt;
|
|
4382
|
+
name: z.ZodString;
|
|
4346
4383
|
sets: z.ZodArray<z.ZodInt>;
|
|
4384
|
+
orderIndex: z.ZodInt;
|
|
4347
4385
|
isActive: z.ZodBoolean;
|
|
4348
4386
|
targetMuscle: z.ZodString;
|
|
4349
4387
|
specificTargetMuscle: z.ZodString;
|
|
4350
|
-
exercise: z.ZodString;
|
|
4351
|
-
workoutSplit: z.ZodString;
|
|
4352
4388
|
}, z.core.$strip>>;
|
|
4353
4389
|
}, z.core.$strip>>>;
|
|
4354
4390
|
}, z.core.$strip>>;
|
|
4355
|
-
workoutPlanForEditWorkout: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
4356
|
-
id: z.ZodInt;
|
|
4357
|
-
name: z.ZodString;
|
|
4358
|
-
sets: z.ZodArray<z.ZodInt>;
|
|
4359
|
-
orderIndex: z.ZodInt;
|
|
4360
|
-
targetMuscle: z.ZodString;
|
|
4361
|
-
specificTargetMuscle: z.ZodString;
|
|
4362
|
-
}, z.core.$strip>>>>;
|
|
4363
4391
|
}, z.core.$strip>;
|
|
4364
4392
|
tracking: z.ZodObject<{
|
|
4365
4393
|
trackingStats: z.ZodObject<{
|
|
4366
4394
|
workoutCount: z.ZodCoercedNumber<unknown>;
|
|
4367
4395
|
hasExerciseTracking: z.ZodBoolean;
|
|
4396
|
+
nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
|
|
4397
|
+
id: z.ZodInt;
|
|
4398
|
+
name: z.ZodString;
|
|
4399
|
+
orderIndex: z.ZodInt;
|
|
4400
|
+
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
4401
|
+
}, z.core.$strip>>;
|
|
4368
4402
|
workoutTargets: z.ZodObject<{
|
|
4369
4403
|
workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
|
|
4370
4404
|
workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
|
|
@@ -4383,6 +4417,7 @@ declare const bootstrapResponseSchema: z.ZodObject<{
|
|
|
4383
4417
|
prWeight: z.ZodNumber;
|
|
4384
4418
|
prReps: z.ZodInt;
|
|
4385
4419
|
prSetIndex: z.ZodInt;
|
|
4420
|
+
estimatedOneRepMax: z.ZodNullable<z.ZodNumber>;
|
|
4386
4421
|
}, z.core.$strip>>;
|
|
4387
4422
|
}, z.core.$strip>;
|
|
4388
4423
|
trackingMaps: z.ZodObject<{
|
|
@@ -4516,33 +4551,33 @@ declare const bootstrapContract: {
|
|
|
4516
4551
|
id: z.ZodInt;
|
|
4517
4552
|
workoutId: z.ZodInt;
|
|
4518
4553
|
name: z.ZodString;
|
|
4554
|
+
orderIndex: z.ZodInt;
|
|
4519
4555
|
createdAt: z.ZodString;
|
|
4520
4556
|
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
4521
4557
|
isActive: z.ZodBoolean;
|
|
4522
|
-
|
|
4523
|
-
|
|
4558
|
+
exercises: z.ZodArray<z.ZodObject<{
|
|
4559
|
+
exerciseToSplitId: z.ZodInt;
|
|
4560
|
+
exerciseId: z.ZodInt;
|
|
4561
|
+
name: z.ZodString;
|
|
4524
4562
|
sets: z.ZodArray<z.ZodInt>;
|
|
4563
|
+
orderIndex: z.ZodInt;
|
|
4525
4564
|
isActive: z.ZodBoolean;
|
|
4526
4565
|
targetMuscle: z.ZodString;
|
|
4527
4566
|
specificTargetMuscle: z.ZodString;
|
|
4528
|
-
exercise: z.ZodString;
|
|
4529
|
-
workoutSplit: z.ZodString;
|
|
4530
4567
|
}, z.core.$strip>>;
|
|
4531
4568
|
}, z.core.$strip>>>;
|
|
4532
4569
|
}, z.core.$strip>>;
|
|
4533
|
-
workoutPlanForEditWorkout: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
4534
|
-
id: z.ZodInt;
|
|
4535
|
-
name: z.ZodString;
|
|
4536
|
-
sets: z.ZodArray<z.ZodInt>;
|
|
4537
|
-
orderIndex: z.ZodInt;
|
|
4538
|
-
targetMuscle: z.ZodString;
|
|
4539
|
-
specificTargetMuscle: z.ZodString;
|
|
4540
|
-
}, z.core.$strip>>>>;
|
|
4541
4570
|
}, z.core.$strip>;
|
|
4542
4571
|
tracking: z.ZodObject<{
|
|
4543
4572
|
trackingStats: z.ZodObject<{
|
|
4544
4573
|
workoutCount: z.ZodCoercedNumber<unknown>;
|
|
4545
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>>;
|
|
4546
4581
|
workoutTargets: z.ZodObject<{
|
|
4547
4582
|
workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
|
|
4548
4583
|
workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
|
|
@@ -4561,6 +4596,7 @@ declare const bootstrapContract: {
|
|
|
4561
4596
|
prWeight: z.ZodNumber;
|
|
4562
4597
|
prReps: z.ZodInt;
|
|
4563
4598
|
prSetIndex: z.ZodInt;
|
|
4599
|
+
estimatedOneRepMax: z.ZodNullable<z.ZodNumber>;
|
|
4564
4600
|
}, z.core.$strip>>;
|
|
4565
4601
|
}, z.core.$strip>;
|
|
4566
4602
|
trackingMaps: z.ZodObject<{
|
|
@@ -5444,28 +5480,22 @@ declare const getWholeUserWorkoutPlanResponseSchema: z.ZodObject<{
|
|
|
5444
5480
|
id: z.ZodInt;
|
|
5445
5481
|
workoutId: z.ZodInt;
|
|
5446
5482
|
name: z.ZodString;
|
|
5483
|
+
orderIndex: z.ZodInt;
|
|
5447
5484
|
createdAt: z.ZodString;
|
|
5448
5485
|
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
5449
5486
|
isActive: z.ZodBoolean;
|
|
5450
|
-
|
|
5451
|
-
|
|
5487
|
+
exercises: z.ZodArray<z.ZodObject<{
|
|
5488
|
+
exerciseToSplitId: z.ZodInt;
|
|
5489
|
+
exerciseId: z.ZodInt;
|
|
5490
|
+
name: z.ZodString;
|
|
5452
5491
|
sets: z.ZodArray<z.ZodInt>;
|
|
5492
|
+
orderIndex: z.ZodInt;
|
|
5453
5493
|
isActive: z.ZodBoolean;
|
|
5454
5494
|
targetMuscle: z.ZodString;
|
|
5455
5495
|
specificTargetMuscle: z.ZodString;
|
|
5456
|
-
exercise: z.ZodString;
|
|
5457
|
-
workoutSplit: z.ZodString;
|
|
5458
5496
|
}, z.core.$strip>>;
|
|
5459
5497
|
}, z.core.$strip>>>;
|
|
5460
5498
|
}, z.core.$strip>>;
|
|
5461
|
-
workoutPlanForEditWorkout: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
5462
|
-
id: z.ZodInt;
|
|
5463
|
-
name: z.ZodString;
|
|
5464
|
-
sets: z.ZodArray<z.ZodInt>;
|
|
5465
|
-
orderIndex: z.ZodInt;
|
|
5466
|
-
targetMuscle: z.ZodString;
|
|
5467
|
-
specificTargetMuscle: z.ZodString;
|
|
5468
|
-
}, z.core.$strip>>>>;
|
|
5469
5499
|
}, z.core.$strip>;
|
|
5470
5500
|
declare const getWholeUserWorkoutPlanContract: {
|
|
5471
5501
|
request: z.ZodObject<{
|
|
@@ -5485,37 +5515,36 @@ declare const getWholeUserWorkoutPlanContract: {
|
|
|
5485
5515
|
id: z.ZodInt;
|
|
5486
5516
|
workoutId: z.ZodInt;
|
|
5487
5517
|
name: z.ZodString;
|
|
5518
|
+
orderIndex: z.ZodInt;
|
|
5488
5519
|
createdAt: z.ZodString;
|
|
5489
5520
|
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
5490
5521
|
isActive: z.ZodBoolean;
|
|
5491
|
-
|
|
5492
|
-
|
|
5522
|
+
exercises: z.ZodArray<z.ZodObject<{
|
|
5523
|
+
exerciseToSplitId: z.ZodInt;
|
|
5524
|
+
exerciseId: z.ZodInt;
|
|
5525
|
+
name: z.ZodString;
|
|
5493
5526
|
sets: z.ZodArray<z.ZodInt>;
|
|
5527
|
+
orderIndex: z.ZodInt;
|
|
5494
5528
|
isActive: z.ZodBoolean;
|
|
5495
5529
|
targetMuscle: z.ZodString;
|
|
5496
5530
|
specificTargetMuscle: z.ZodString;
|
|
5497
|
-
exercise: z.ZodString;
|
|
5498
|
-
workoutSplit: z.ZodString;
|
|
5499
5531
|
}, z.core.$strip>>;
|
|
5500
5532
|
}, z.core.$strip>>>;
|
|
5501
5533
|
}, z.core.$strip>>;
|
|
5502
|
-
workoutPlanForEditWorkout: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
5503
|
-
id: z.ZodInt;
|
|
5504
|
-
name: z.ZodString;
|
|
5505
|
-
sets: z.ZodArray<z.ZodInt>;
|
|
5506
|
-
orderIndex: z.ZodInt;
|
|
5507
|
-
targetMuscle: z.ZodString;
|
|
5508
|
-
specificTargetMuscle: z.ZodString;
|
|
5509
|
-
}, z.core.$strip>>>>;
|
|
5510
5534
|
}, z.core.$strip>;
|
|
5511
5535
|
};
|
|
5512
5536
|
declare const addWorkoutRequestSchema: z.ZodObject<{
|
|
5513
5537
|
body: z.ZodObject<{
|
|
5514
|
-
workoutData: z.
|
|
5515
|
-
|
|
5516
|
-
|
|
5517
|
-
|
|
5518
|
-
|
|
5538
|
+
workoutData: z.ZodArray<z.ZodObject<{
|
|
5539
|
+
name: z.ZodString;
|
|
5540
|
+
orderIndex: z.ZodNumber;
|
|
5541
|
+
exercises: z.ZodArray<z.ZodObject<{
|
|
5542
|
+
exerciseId: z.ZodInt;
|
|
5543
|
+
sets: z.ZodArray<z.ZodInt>;
|
|
5544
|
+
orderIndex: z.ZodInt;
|
|
5545
|
+
}, z.core.$strip>>;
|
|
5546
|
+
id: z.ZodOptional<z.ZodInt>;
|
|
5547
|
+
}, z.core.$strip>>;
|
|
5519
5548
|
workoutName: z.ZodOptional<z.ZodString>;
|
|
5520
5549
|
tz: z.ZodString;
|
|
5521
5550
|
}, z.core.$strip>;
|
|
@@ -5533,37 +5562,36 @@ declare const addWorkoutResponseSchema: z.ZodObject<{
|
|
|
5533
5562
|
id: z.ZodInt;
|
|
5534
5563
|
workoutId: z.ZodInt;
|
|
5535
5564
|
name: z.ZodString;
|
|
5565
|
+
orderIndex: z.ZodInt;
|
|
5536
5566
|
createdAt: z.ZodString;
|
|
5537
5567
|
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
5538
5568
|
isActive: z.ZodBoolean;
|
|
5539
|
-
|
|
5540
|
-
|
|
5569
|
+
exercises: z.ZodArray<z.ZodObject<{
|
|
5570
|
+
exerciseToSplitId: z.ZodInt;
|
|
5571
|
+
exerciseId: z.ZodInt;
|
|
5572
|
+
name: z.ZodString;
|
|
5541
5573
|
sets: z.ZodArray<z.ZodInt>;
|
|
5574
|
+
orderIndex: z.ZodInt;
|
|
5542
5575
|
isActive: z.ZodBoolean;
|
|
5543
5576
|
targetMuscle: z.ZodString;
|
|
5544
5577
|
specificTargetMuscle: z.ZodString;
|
|
5545
|
-
exercise: z.ZodString;
|
|
5546
|
-
workoutSplit: z.ZodString;
|
|
5547
5578
|
}, z.core.$strip>>;
|
|
5548
5579
|
}, z.core.$strip>>>;
|
|
5549
5580
|
}, z.core.$strip>;
|
|
5550
|
-
workoutPlanForEditWorkout: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
5551
|
-
id: z.ZodInt;
|
|
5552
|
-
name: z.ZodString;
|
|
5553
|
-
sets: z.ZodArray<z.ZodInt>;
|
|
5554
|
-
orderIndex: z.ZodInt;
|
|
5555
|
-
targetMuscle: z.ZodString;
|
|
5556
|
-
specificTargetMuscle: z.ZodString;
|
|
5557
|
-
}, z.core.$strip>>>;
|
|
5558
5581
|
}, z.core.$strip>;
|
|
5559
5582
|
declare const addWorkoutContract: {
|
|
5560
5583
|
request: z.ZodObject<{
|
|
5561
5584
|
body: z.ZodObject<{
|
|
5562
|
-
workoutData: z.
|
|
5563
|
-
|
|
5564
|
-
|
|
5565
|
-
|
|
5566
|
-
|
|
5585
|
+
workoutData: z.ZodArray<z.ZodObject<{
|
|
5586
|
+
name: z.ZodString;
|
|
5587
|
+
orderIndex: z.ZodNumber;
|
|
5588
|
+
exercises: z.ZodArray<z.ZodObject<{
|
|
5589
|
+
exerciseId: z.ZodInt;
|
|
5590
|
+
sets: z.ZodArray<z.ZodInt>;
|
|
5591
|
+
orderIndex: z.ZodInt;
|
|
5592
|
+
}, z.core.$strip>>;
|
|
5593
|
+
id: z.ZodOptional<z.ZodInt>;
|
|
5594
|
+
}, z.core.$strip>>;
|
|
5567
5595
|
workoutName: z.ZodOptional<z.ZodString>;
|
|
5568
5596
|
tz: z.ZodString;
|
|
5569
5597
|
}, z.core.$strip>;
|
|
@@ -5581,28 +5609,22 @@ declare const addWorkoutContract: {
|
|
|
5581
5609
|
id: z.ZodInt;
|
|
5582
5610
|
workoutId: z.ZodInt;
|
|
5583
5611
|
name: z.ZodString;
|
|
5612
|
+
orderIndex: z.ZodInt;
|
|
5584
5613
|
createdAt: z.ZodString;
|
|
5585
5614
|
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
5586
5615
|
isActive: z.ZodBoolean;
|
|
5587
|
-
|
|
5588
|
-
|
|
5616
|
+
exercises: z.ZodArray<z.ZodObject<{
|
|
5617
|
+
exerciseToSplitId: z.ZodInt;
|
|
5618
|
+
exerciseId: z.ZodInt;
|
|
5619
|
+
name: z.ZodString;
|
|
5589
5620
|
sets: z.ZodArray<z.ZodInt>;
|
|
5621
|
+
orderIndex: z.ZodInt;
|
|
5590
5622
|
isActive: z.ZodBoolean;
|
|
5591
5623
|
targetMuscle: z.ZodString;
|
|
5592
5624
|
specificTargetMuscle: z.ZodString;
|
|
5593
|
-
exercise: z.ZodString;
|
|
5594
|
-
workoutSplit: z.ZodString;
|
|
5595
5625
|
}, z.core.$strip>>;
|
|
5596
5626
|
}, z.core.$strip>>>;
|
|
5597
5627
|
}, z.core.$strip>;
|
|
5598
|
-
workoutPlanForEditWorkout: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
5599
|
-
id: z.ZodInt;
|
|
5600
|
-
name: z.ZodString;
|
|
5601
|
-
sets: z.ZodArray<z.ZodInt>;
|
|
5602
|
-
orderIndex: z.ZodInt;
|
|
5603
|
-
targetMuscle: z.ZodString;
|
|
5604
|
-
specificTargetMuscle: z.ZodString;
|
|
5605
|
-
}, z.core.$strip>>>;
|
|
5606
5628
|
}, z.core.$strip>;
|
|
5607
5629
|
};
|
|
5608
5630
|
type GetWholeUserWorkoutPlanQuery = QueryOf<typeof getWholeUserWorkoutPlanContract>;
|
|
@@ -5612,42 +5634,60 @@ type AddWorkoutResponse = ResponseOf<typeof addWorkoutContract>;
|
|
|
5612
5634
|
|
|
5613
5635
|
/** Exercise input stored while adding a workout plan. */
|
|
5614
5636
|
declare const workoutExerciseInputQueryDtoSchema: z.ZodObject<{
|
|
5615
|
-
|
|
5637
|
+
exerciseId: z.ZodInt;
|
|
5616
5638
|
sets: z.ZodArray<z.ZodInt>;
|
|
5617
5639
|
orderIndex: z.ZodInt;
|
|
5618
5640
|
}, z.core.$strip>;
|
|
5619
|
-
/**
|
|
5620
|
-
declare const
|
|
5621
|
-
|
|
5622
|
-
|
|
5623
|
-
|
|
5624
|
-
|
|
5641
|
+
/** Split input used while saving a plan. An omitted ID creates a new split. */
|
|
5642
|
+
declare const saveWorkoutSplitInputQueryDtoSchema: z.ZodObject<{
|
|
5643
|
+
name: z.ZodString;
|
|
5644
|
+
orderIndex: z.ZodNumber;
|
|
5645
|
+
exercises: z.ZodArray<z.ZodObject<{
|
|
5646
|
+
exerciseId: z.ZodInt;
|
|
5647
|
+
sets: z.ZodArray<z.ZodInt>;
|
|
5648
|
+
orderIndex: z.ZodInt;
|
|
5649
|
+
}, z.core.$strip>>;
|
|
5650
|
+
id: z.ZodOptional<z.ZodInt>;
|
|
5651
|
+
}, z.core.$strip>;
|
|
5652
|
+
declare const saveWorkoutSplitPayloadQueryDtoSchema: z.ZodArray<z.ZodObject<{
|
|
5653
|
+
name: z.ZodString;
|
|
5654
|
+
orderIndex: z.ZodNumber;
|
|
5655
|
+
exercises: z.ZodArray<z.ZodObject<{
|
|
5656
|
+
exerciseId: z.ZodInt;
|
|
5657
|
+
sets: z.ZodArray<z.ZodInt>;
|
|
5658
|
+
orderIndex: z.ZodInt;
|
|
5659
|
+
}, z.core.$strip>>;
|
|
5660
|
+
id: z.ZodOptional<z.ZodInt>;
|
|
5661
|
+
}, z.core.$strip>>;
|
|
5625
5662
|
/** Exercise assignment included in a complete workout-plan query. */
|
|
5626
5663
|
declare const exerciseInPlanQueryDtoSchema: z.ZodObject<{
|
|
5627
|
-
|
|
5664
|
+
exerciseToSplitId: z.ZodInt;
|
|
5665
|
+
exerciseId: z.ZodInt;
|
|
5666
|
+
name: z.ZodString;
|
|
5628
5667
|
sets: z.ZodArray<z.ZodInt>;
|
|
5668
|
+
orderIndex: z.ZodInt;
|
|
5629
5669
|
isActive: z.ZodBoolean;
|
|
5630
5670
|
targetMuscle: z.ZodString;
|
|
5631
5671
|
specificTargetMuscle: z.ZodString;
|
|
5632
|
-
exercise: z.ZodString;
|
|
5633
|
-
workoutSplit: z.ZodString;
|
|
5634
5672
|
}, z.core.$strip>;
|
|
5635
5673
|
/** Workout split included in a complete workout-plan query. */
|
|
5636
5674
|
declare const workoutSplitQueryDtoSchema: z.ZodObject<{
|
|
5637
5675
|
id: z.ZodInt;
|
|
5638
5676
|
workoutId: z.ZodInt;
|
|
5639
5677
|
name: z.ZodString;
|
|
5678
|
+
orderIndex: z.ZodInt;
|
|
5640
5679
|
createdAt: z.ZodString;
|
|
5641
5680
|
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
5642
5681
|
isActive: z.ZodBoolean;
|
|
5643
|
-
|
|
5644
|
-
|
|
5682
|
+
exercises: z.ZodArray<z.ZodObject<{
|
|
5683
|
+
exerciseToSplitId: z.ZodInt;
|
|
5684
|
+
exerciseId: z.ZodInt;
|
|
5685
|
+
name: z.ZodString;
|
|
5645
5686
|
sets: z.ZodArray<z.ZodInt>;
|
|
5687
|
+
orderIndex: z.ZodInt;
|
|
5646
5688
|
isActive: z.ZodBoolean;
|
|
5647
5689
|
targetMuscle: z.ZodString;
|
|
5648
5690
|
specificTargetMuscle: z.ZodString;
|
|
5649
|
-
exercise: z.ZodString;
|
|
5650
|
-
workoutSplit: z.ZodString;
|
|
5651
5691
|
}, z.core.$strip>>;
|
|
5652
5692
|
}, z.core.$strip>;
|
|
5653
5693
|
/** Complete active workout plan returned for a user. */
|
|
@@ -5662,54 +5702,22 @@ declare const wholeUserWorkoutPlanQueryDtoSchema: z.ZodObject<{
|
|
|
5662
5702
|
id: z.ZodInt;
|
|
5663
5703
|
workoutId: z.ZodInt;
|
|
5664
5704
|
name: z.ZodString;
|
|
5705
|
+
orderIndex: z.ZodInt;
|
|
5665
5706
|
createdAt: z.ZodString;
|
|
5666
5707
|
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
5667
5708
|
isActive: z.ZodBoolean;
|
|
5668
|
-
|
|
5669
|
-
|
|
5709
|
+
exercises: z.ZodArray<z.ZodObject<{
|
|
5710
|
+
exerciseToSplitId: z.ZodInt;
|
|
5711
|
+
exerciseId: z.ZodInt;
|
|
5712
|
+
name: z.ZodString;
|
|
5670
5713
|
sets: z.ZodArray<z.ZodInt>;
|
|
5714
|
+
orderIndex: z.ZodInt;
|
|
5671
5715
|
isActive: z.ZodBoolean;
|
|
5672
5716
|
targetMuscle: z.ZodString;
|
|
5673
5717
|
specificTargetMuscle: z.ZodString;
|
|
5674
|
-
exercise: z.ZodString;
|
|
5675
|
-
workoutSplit: z.ZodString;
|
|
5676
5718
|
}, z.core.$strip>>;
|
|
5677
5719
|
}, z.core.$strip>>>;
|
|
5678
5720
|
}, z.core.$strip>;
|
|
5679
|
-
/** Exercise item included in the editable workout-split map. */
|
|
5680
|
-
declare const workoutSplitsMapItemQueryDtoSchema: z.ZodObject<{
|
|
5681
|
-
id: z.ZodInt;
|
|
5682
|
-
name: z.ZodString;
|
|
5683
|
-
sets: z.ZodArray<z.ZodInt>;
|
|
5684
|
-
orderIndex: z.ZodInt;
|
|
5685
|
-
targetMuscle: z.ZodString;
|
|
5686
|
-
specificTargetMuscle: z.ZodString;
|
|
5687
|
-
}, z.core.$strip>;
|
|
5688
|
-
/** Target-muscle metadata selected for an editable workout exercise. */
|
|
5689
|
-
declare const workoutExerciseMetadataQueryDtoSchema: z.ZodObject<{
|
|
5690
|
-
targetMuscle: z.ZodString;
|
|
5691
|
-
specificTargetMuscle: z.ZodString;
|
|
5692
|
-
}, z.core.$strip>;
|
|
5693
|
-
/** Editable workout-plan map grouped by split name. */
|
|
5694
|
-
declare const workoutSplitsMapQueryDtoSchema: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
5695
|
-
id: z.ZodInt;
|
|
5696
|
-
name: z.ZodString;
|
|
5697
|
-
sets: z.ZodArray<z.ZodInt>;
|
|
5698
|
-
orderIndex: z.ZodInt;
|
|
5699
|
-
targetMuscle: z.ZodString;
|
|
5700
|
-
specificTargetMuscle: z.ZodString;
|
|
5701
|
-
}, z.core.$strip>>>;
|
|
5702
|
-
/** SQL row wrapping the editable workout split map under `splits`. */
|
|
5703
|
-
declare const workoutSplitsRowQueryDtoSchema: z.ZodObject<{
|
|
5704
|
-
splits: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
5705
|
-
id: z.ZodInt;
|
|
5706
|
-
name: z.ZodString;
|
|
5707
|
-
sets: z.ZodArray<z.ZodInt>;
|
|
5708
|
-
orderIndex: z.ZodInt;
|
|
5709
|
-
targetMuscle: z.ZodString;
|
|
5710
|
-
specificTargetMuscle: z.ZodString;
|
|
5711
|
-
}, z.core.$strip>>>;
|
|
5712
|
-
}, z.core.$strip>;
|
|
5713
5721
|
/** SQL row returned when inserting or retrieving a workout plan. */
|
|
5714
5722
|
declare const workoutPlanIdQueryDtoSchema: z.ZodObject<{
|
|
5715
5723
|
id: z.ZodInt;
|
|
@@ -5723,14 +5731,11 @@ declare const exerciseAssignmentIdQueryDtoSchema: z.ZodObject<{
|
|
|
5723
5731
|
id: z.ZodInt;
|
|
5724
5732
|
}, z.core.$strip>;
|
|
5725
5733
|
type WorkoutExerciseInputQueryDto = z.infer<typeof workoutExerciseInputQueryDtoSchema>;
|
|
5734
|
+
type SaveWorkoutSplitInputQueryDto = z.infer<typeof saveWorkoutSplitInputQueryDtoSchema>;
|
|
5726
5735
|
type ExerciseInPlanQueryDto = z.infer<typeof exerciseInPlanQueryDtoSchema>;
|
|
5727
5736
|
type WorkoutSplitQueryDto = z.infer<typeof workoutSplitQueryDtoSchema>;
|
|
5728
|
-
type WorkoutSplitsMapItemQueryDto = z.infer<typeof workoutSplitsMapItemQueryDtoSchema>;
|
|
5729
|
-
type WorkoutExerciseMetadataQueryDto = z.infer<typeof workoutExerciseMetadataQueryDtoSchema>;
|
|
5730
5737
|
type WholeUserWorkoutPlanQueryDto = z.infer<typeof wholeUserWorkoutPlanQueryDtoSchema>;
|
|
5731
|
-
type
|
|
5732
|
-
type WorkoutSplitsMapQueryDto = z.infer<typeof workoutSplitsMapQueryDtoSchema>;
|
|
5733
|
-
type WorkoutSplitsRowQueryDto = z.infer<typeof workoutSplitsRowQueryDtoSchema>;
|
|
5738
|
+
type SaveWorkoutSplitPayloadQueryDto = z.infer<typeof saveWorkoutSplitPayloadQueryDtoSchema>;
|
|
5734
5739
|
type WorkoutPlanIdQueryDto = z.infer<typeof workoutPlanIdQueryDtoSchema>;
|
|
5735
5740
|
type WorkoutSplitIdQueryDto = z.infer<typeof workoutSplitIdQueryDtoSchema>;
|
|
5736
5741
|
type ExerciseAssignmentIdQueryDto = z.infer<typeof exerciseAssignmentIdQueryDtoSchema>;
|
|
@@ -5880,6 +5885,12 @@ declare const getExerciseTrackingContract: {
|
|
|
5880
5885
|
declare const getExerciseTrackingStatsResponseSchema: z.ZodObject<{
|
|
5881
5886
|
workoutCount: z.ZodCoercedNumber<unknown>;
|
|
5882
5887
|
hasExerciseTracking: z.ZodBoolean;
|
|
5888
|
+
nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
|
|
5889
|
+
id: z.ZodInt;
|
|
5890
|
+
name: z.ZodString;
|
|
5891
|
+
orderIndex: z.ZodInt;
|
|
5892
|
+
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
5893
|
+
}, z.core.$strip>>;
|
|
5883
5894
|
workoutTargets: z.ZodObject<{
|
|
5884
5895
|
workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
|
|
5885
5896
|
workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
|
|
@@ -5898,6 +5909,7 @@ declare const getExerciseTrackingStatsResponseSchema: z.ZodObject<{
|
|
|
5898
5909
|
prWeight: z.ZodNumber;
|
|
5899
5910
|
prReps: z.ZodInt;
|
|
5900
5911
|
prSetIndex: z.ZodInt;
|
|
5912
|
+
estimatedOneRepMax: z.ZodNullable<z.ZodNumber>;
|
|
5901
5913
|
}, z.core.$strip>>;
|
|
5902
5914
|
}, z.core.$strip>;
|
|
5903
5915
|
declare const getExerciseTrackingStatsContract: {
|
|
@@ -5909,6 +5921,12 @@ declare const getExerciseTrackingStatsContract: {
|
|
|
5909
5921
|
response: z.ZodObject<{
|
|
5910
5922
|
workoutCount: z.ZodCoercedNumber<unknown>;
|
|
5911
5923
|
hasExerciseTracking: z.ZodBoolean;
|
|
5924
|
+
nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
|
|
5925
|
+
id: z.ZodInt;
|
|
5926
|
+
name: z.ZodString;
|
|
5927
|
+
orderIndex: z.ZodInt;
|
|
5928
|
+
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
5929
|
+
}, z.core.$strip>>;
|
|
5912
5930
|
workoutTargets: z.ZodObject<{
|
|
5913
5931
|
workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
|
|
5914
5932
|
workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
|
|
@@ -5927,6 +5945,7 @@ declare const getExerciseTrackingStatsContract: {
|
|
|
5927
5945
|
prWeight: z.ZodNumber;
|
|
5928
5946
|
prReps: z.ZodInt;
|
|
5929
5947
|
prSetIndex: z.ZodInt;
|
|
5948
|
+
estimatedOneRepMax: z.ZodNullable<z.ZodNumber>;
|
|
5930
5949
|
}, z.core.$strip>>;
|
|
5931
5950
|
}, z.core.$strip>;
|
|
5932
5951
|
};
|
|
@@ -5952,6 +5971,12 @@ declare const finishUserWorkoutResponseSchema: z.ZodObject<{
|
|
|
5952
5971
|
trackingStats: z.ZodObject<{
|
|
5953
5972
|
workoutCount: z.ZodCoercedNumber<unknown>;
|
|
5954
5973
|
hasExerciseTracking: z.ZodBoolean;
|
|
5974
|
+
nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
|
|
5975
|
+
id: z.ZodInt;
|
|
5976
|
+
name: z.ZodString;
|
|
5977
|
+
orderIndex: z.ZodInt;
|
|
5978
|
+
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
5979
|
+
}, z.core.$strip>>;
|
|
5955
5980
|
workoutTargets: z.ZodObject<{
|
|
5956
5981
|
workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
|
|
5957
5982
|
workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
|
|
@@ -5970,6 +5995,7 @@ declare const finishUserWorkoutResponseSchema: z.ZodObject<{
|
|
|
5970
5995
|
prWeight: z.ZodNumber;
|
|
5971
5996
|
prReps: z.ZodInt;
|
|
5972
5997
|
prSetIndex: z.ZodInt;
|
|
5998
|
+
estimatedOneRepMax: z.ZodNullable<z.ZodNumber>;
|
|
5973
5999
|
}, z.core.$strip>>;
|
|
5974
6000
|
}, z.core.$strip>;
|
|
5975
6001
|
trackingMaps: z.ZodObject<{
|
|
@@ -6061,6 +6087,12 @@ declare const finishUserWorkoutContract: {
|
|
|
6061
6087
|
trackingStats: z.ZodObject<{
|
|
6062
6088
|
workoutCount: z.ZodCoercedNumber<unknown>;
|
|
6063
6089
|
hasExerciseTracking: z.ZodBoolean;
|
|
6090
|
+
nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
|
|
6091
|
+
id: z.ZodInt;
|
|
6092
|
+
name: z.ZodString;
|
|
6093
|
+
orderIndex: z.ZodInt;
|
|
6094
|
+
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
6095
|
+
}, z.core.$strip>>;
|
|
6064
6096
|
workoutTargets: z.ZodObject<{
|
|
6065
6097
|
workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
|
|
6066
6098
|
workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
|
|
@@ -6079,6 +6111,7 @@ declare const finishUserWorkoutContract: {
|
|
|
6079
6111
|
prWeight: z.ZodNumber;
|
|
6080
6112
|
prReps: z.ZodInt;
|
|
6081
6113
|
prSetIndex: z.ZodInt;
|
|
6114
|
+
estimatedOneRepMax: z.ZodNullable<z.ZodNumber>;
|
|
6082
6115
|
}, z.core.$strip>>;
|
|
6083
6116
|
}, z.core.$strip>;
|
|
6084
6117
|
trackingMaps: z.ZodObject<{
|
|
@@ -6257,6 +6290,12 @@ declare const trackingBySplitNameItemQueryDtoSchema: z.ZodObject<{
|
|
|
6257
6290
|
declare const exerciseTrackingStatsQueryDtoSchema: z.ZodObject<{
|
|
6258
6291
|
workoutCount: z.ZodCoercedNumber<unknown>;
|
|
6259
6292
|
hasExerciseTracking: z.ZodBoolean;
|
|
6293
|
+
nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
|
|
6294
|
+
id: z.ZodInt;
|
|
6295
|
+
name: z.ZodString;
|
|
6296
|
+
orderIndex: z.ZodInt;
|
|
6297
|
+
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
6298
|
+
}, z.core.$strip>>;
|
|
6260
6299
|
workoutTargets: z.ZodObject<{
|
|
6261
6300
|
workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
|
|
6262
6301
|
workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
|
|
@@ -6275,6 +6314,7 @@ declare const exerciseTrackingStatsQueryDtoSchema: z.ZodObject<{
|
|
|
6275
6314
|
prWeight: z.ZodNumber;
|
|
6276
6315
|
prReps: z.ZodInt;
|
|
6277
6316
|
prSetIndex: z.ZodInt;
|
|
6317
|
+
estimatedOneRepMax: z.ZodNullable<z.ZodNumber>;
|
|
6278
6318
|
}, z.core.$strip>>;
|
|
6279
6319
|
}, z.core.$strip>;
|
|
6280
6320
|
declare const exerciseTrackingMapsQueryDtoSchema: z.ZodObject<{
|
|
@@ -6346,6 +6386,12 @@ declare const exerciseTrackingAndStatsQueryDtoSchema: z.ZodObject<{
|
|
|
6346
6386
|
trackingStats: z.ZodObject<{
|
|
6347
6387
|
workoutCount: z.ZodCoercedNumber<unknown>;
|
|
6348
6388
|
hasExerciseTracking: z.ZodBoolean;
|
|
6389
|
+
nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
|
|
6390
|
+
id: z.ZodInt;
|
|
6391
|
+
name: z.ZodString;
|
|
6392
|
+
orderIndex: z.ZodInt;
|
|
6393
|
+
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
6394
|
+
}, z.core.$strip>>;
|
|
6349
6395
|
workoutTargets: z.ZodObject<{
|
|
6350
6396
|
workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
|
|
6351
6397
|
workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
|
|
@@ -6364,6 +6410,7 @@ declare const exerciseTrackingAndStatsQueryDtoSchema: z.ZodObject<{
|
|
|
6364
6410
|
prWeight: z.ZodNumber;
|
|
6365
6411
|
prReps: z.ZodInt;
|
|
6366
6412
|
prSetIndex: z.ZodInt;
|
|
6413
|
+
estimatedOneRepMax: z.ZodNullable<z.ZodNumber>;
|
|
6367
6414
|
}, z.core.$strip>>;
|
|
6368
6415
|
}, z.core.$strip>;
|
|
6369
6416
|
trackingMaps: z.ZodObject<{
|
|
@@ -6438,6 +6485,12 @@ declare const exerciseTrackingAndStatsRowQueryDtoSchema: z.ZodObject<{
|
|
|
6438
6485
|
trackingStats: z.ZodObject<{
|
|
6439
6486
|
workoutCount: z.ZodCoercedNumber<unknown>;
|
|
6440
6487
|
hasExerciseTracking: z.ZodBoolean;
|
|
6488
|
+
nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
|
|
6489
|
+
id: z.ZodInt;
|
|
6490
|
+
name: z.ZodString;
|
|
6491
|
+
orderIndex: z.ZodInt;
|
|
6492
|
+
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
6493
|
+
}, z.core.$strip>>;
|
|
6441
6494
|
workoutTargets: z.ZodObject<{
|
|
6442
6495
|
workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
|
|
6443
6496
|
workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
|
|
@@ -6456,6 +6509,7 @@ declare const exerciseTrackingAndStatsRowQueryDtoSchema: z.ZodObject<{
|
|
|
6456
6509
|
prWeight: z.ZodNumber;
|
|
6457
6510
|
prReps: z.ZodInt;
|
|
6458
6511
|
prSetIndex: z.ZodInt;
|
|
6512
|
+
estimatedOneRepMax: z.ZodNullable<z.ZodNumber>;
|
|
6459
6513
|
}, z.core.$strip>>;
|
|
6460
6514
|
}, z.core.$strip>;
|
|
6461
6515
|
trackingMaps: z.ZodObject<{
|
|
@@ -6529,6 +6583,12 @@ declare const exerciseTrackingStatsRowQueryDtoSchema: z.ZodObject<{
|
|
|
6529
6583
|
data: z.ZodObject<{
|
|
6530
6584
|
workoutCount: z.ZodCoercedNumber<unknown>;
|
|
6531
6585
|
hasExerciseTracking: z.ZodBoolean;
|
|
6586
|
+
nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
|
|
6587
|
+
id: z.ZodInt;
|
|
6588
|
+
name: z.ZodString;
|
|
6589
|
+
orderIndex: z.ZodInt;
|
|
6590
|
+
muscleGroup: z.ZodNullable<z.ZodString>;
|
|
6591
|
+
}, z.core.$strip>>;
|
|
6532
6592
|
workoutTargets: z.ZodObject<{
|
|
6533
6593
|
workoutCountThisWeek: z.ZodCoercedNumber<unknown>;
|
|
6534
6594
|
workoutCountScheduledPerWeek: z.ZodCoercedNumber<unknown>;
|
|
@@ -6547,6 +6607,7 @@ declare const exerciseTrackingStatsRowQueryDtoSchema: z.ZodObject<{
|
|
|
6547
6607
|
prWeight: z.ZodNumber;
|
|
6548
6608
|
prReps: z.ZodInt;
|
|
6549
6609
|
prSetIndex: z.ZodInt;
|
|
6610
|
+
estimatedOneRepMax: z.ZodNullable<z.ZodNumber>;
|
|
6550
6611
|
}, z.core.$strip>>;
|
|
6551
6612
|
}, z.core.$strip>;
|
|
6552
6613
|
}, z.core.$strip>;
|
|
@@ -6646,4 +6707,4 @@ type WorkoutSummaryIdQueryDto = z.infer<typeof workoutSummaryIdQueryDtoSchema>;
|
|
|
6646
6707
|
type ExerciseTrackingIdQueryDto = z.infer<typeof exerciseTrackingIdQueryDtoSchema>;
|
|
6647
6708
|
type FinishedWorkoutEntryQueryDto = z.infer<typeof finishedWorkoutEntryQueryDtoSchema>;
|
|
6648
6709
|
|
|
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 };
|
|
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 BootstrapRequestQuery, type BootstrapResponse, type ChangeEmailAndVerifyBody, type ChangeEmailTokenPayloadDto, type CheckUserVerifyQuery, type Contract, type CreateUserBody, type CreateUserResponse, type CreatedUserQueryDto, type CreatedUserRawQueryDto, type CreatedUserRowQueryDto, type DeleteMessageParams, type DeleteMessageResponse, type DeleteUserProfilePicBody, type DeletedMessageQueryDto, type EmailVerifyPayloadDto, type EnqueueAnalyzeVideoParamsDto, type ExerciseAssignmentIdQueryDto, type ExerciseInPlanQueryDto, type ExerciseMapByMuscleRowQueryDto, type ExerciseMetadataQueryDto, type ExerciseRow, type ExerciseToWorkoutSplitRow, type ExerciseTrackingAnalysisQueryDto, type ExerciseTrackingAndStatsQueryDto, type ExerciseTrackingAndStatsRowQueryDto, type ExerciseTrackingIdQueryDto, type ExerciseTrackingMapsQueryDto, type ExerciseTrackingMapsRowQueryDto, type ExerciseTrackingPrMaxQueryDto, type ExerciseTrackingRow, type ExerciseTrackingStatsQueryDto, type ExerciseTrackingStatsRowQueryDto, type ExercisesMapByMuscleQueryDto, type FinishUserWorkoutBody, type FinishUserWorkoutResponse, type FinishedWorkoutEntryQueryDto, type ForgotPasswordPayloadDto, type GenerateTicketBody, type GenerateTicketResponse, type GetAllExercisesExerciseQueryDto, type GetAllExercisesResponse, type GetAllUserMessagesQuery, type GetAllUserMessagesResponse, type GetAnalyticsResponse, type GetAuthenticatedUserByIdResponse, type GetExerciseTrackingQuery, type GetExerciseTrackingResponse, type GetExerciseTrackingStatsResponse, type GetPresignedUrlFromS3Body, type GetPresignedUrlFromS3Response, type GetUserAerobicsQuery, type GetWholeUserWorkoutPlanQuery, type GetWholeUserWorkoutPlanResponse, type GoalAdherenceQueryDto, type GoalAdherenceRowQueryDto, type GoogleOAuthBody, type GoogleTokenVerificationResultDto, type LastLoginQueryDto, type LoginRequestBody, type LoginResponse, type LogoutResponse, type MarkMessageAsReadParams, type MarkMessageAsReadResponse, type MessageAfterSendQueryDto, type MessageAsReadQueryDto, type MessageRow, type OAuthCreatedUserRowQueryDto, type OAuthLinkQueryDto, type OAuthLinkRowQueryDto, type OAuthLoginResponse, type OAuthLookupQueryDto, type OAuthLookupRawQueryDto, type OAuthLookupRowQueryDto, type ParamsOf, type QueryOf, type RefreshTokenResponse, type RequestOf, type RequestSchema, type ResetPasswordBody, type ResetPasswordQuery, type ResetPasswordResponse, type ResponseOf, type SaveUserPushTokenBody, type SaveWorkoutSplitInputQueryDto, type SaveWorkoutSplitPayloadQueryDto, type SendChangePassEmailBody, type SendVerificationMailBody, type SetProfilePicAndUpdateDBResponse, type SquatRepetitionDto, type TokenVersionQueryDto, type TrackingByDateItemQueryDto, type TrackingBySplitNameItemQueryDto, type TrackingMapItemQueryDto, type UpdateAuthenticatedUserResponse, type UpdateUserBody, type UserAerobicsQueryDto, type UserAerobicsResponse, type UserAerobicsRowQueryDto, type UserAfterBumpQueryDto, type UserByIdentifierQueryDto, type UserByIdentifierRawQueryDto, type UserByIdentifierRowQueryDto, type UserByUsernameRawQueryDto, type UserByUsernameRowQueryDto, type UserConflictQueryDto, type UserDataQueryDto, type UserDataResponse, type UserDataRowQueryDto, type UserExistsQueryDto, type UserInsert, type UserMessageIdentityQueryDto, type UserProfilePicQueryDto, type UserRow, type UserToHourlyReminderQueryDto, type UserWithNotificationsEnabledQueryDto, type VerifyUserAccountQuery, type WeeklyDataQueryDto, type WholeUserWorkoutPlanQueryDto, type WorkoutExerciseInputQueryDto, type WorkoutPlanIdQueryDto, type WorkoutPlanRow, type WorkoutRmRecordQueryDto, type WorkoutRmsQueryDto, type WorkoutRmsRowQueryDto, type WorkoutSplitIdQueryDto, type WorkoutSplitLookupQueryDto, type WorkoutSplitQueryDto, type WorkoutSplitRow, type WorkoutSummaryIdQueryDto, type WorkoutSummaryRow, accessTokenPayloadDtoSchema, addAerobicInputQueryDtoSchema, addAerobicsRequestSchema, addUserAerobicsContract, addWorkoutContract, addWorkoutRequestSchema, addWorkoutResponseSchema, adherenceExerciseStatsQueryDtoSchema, aerobicTrackingDbSchema, aerobicsDailyRecordQueryDtoSchema, aerobicsWeeklyRecordQueryDtoSchema, allUserMessageQueryDtoSchema, analyzeVideoPayloadDtoSchema, analyzeVideoResultPayloadDtoSchema, appleOAuthContract, appleOAuthRequestSchema, appleTokenVerificationResultDtoSchema, authenticatedUserForUpdateQueryDtoSchema, bootstrapContract, bootstrapRequestSchema, bootstrapResponseSchema, changeEmailAndVerifyContract, changeEmailAndVerifyRequestSchema, changeEmailTokenPayloadDtoSchema, checkUserVerifyContract, checkUserVerifyRequestSchema, createUserContract, createUserRequestSchema, createUserResponseSchema, createUserUserSchema, createdUserQueryDtoSchema, createdUserRawQueryDtoSchema, createdUserRowQueryDtoSchema, deleteMessageContract, deleteMessageRequestSchema, deleteMessageResponseSchema, deleteProfilePicRequestSchema, deleteUserProfilePicContract, deletedMessageQueryDtoSchema, emailVerifyPayloadDtoSchema, enqueueAnalyzeVideoParamsDtoSchema, exerciseAssignmentIdQueryDtoSchema, exerciseDbSchema, exerciseInPlanQueryDtoSchema, exerciseMapByMuscleRowQueryDtoSchema, exerciseMetadataQueryDtoSchema, exerciseToWorkoutSplitDbSchema, exerciseToWorkoutSplitSetExpandedViewDbSchema, exerciseTrackingAnalysisQueryDtoSchema, exerciseTrackingAndStatsQueryDtoSchema, exerciseTrackingAndStatsRowQueryDtoSchema, exerciseTrackingDbSchema, exerciseTrackingIdQueryDtoSchema, exerciseTrackingMapsQueryDtoSchema, exerciseTrackingMapsRowQueryDtoSchema, exerciseTrackingPrMaxQueryDtoSchema, exerciseTrackingSetExpandedViewDbSchema, exerciseTrackingStatsQueryDtoSchema, exerciseTrackingStatsRowQueryDtoSchema, exercisesMapByMuscleQueryDtoSchema, finishUserWorkoutContract, finishUserWorkoutResponseSchema, finishWorkoutRequestSchema, finishedWorkoutEntryQueryDtoSchema, forgotPasswordPayloadDtoSchema, generateTicketContract, generateTicketRequestSchema, generateTicketResponseSchema, getAerobicsRequestSchema, getAllExercisesContract, getAllExercisesExerciseQueryDtoSchema, getAllExercisesResponseSchema, getAllMessagesRequestSchema, getAllUserMessagesContract, getAllUserMessagesResponseSchema, getAnalyticsContract, getAnalyticsResponseSchema, getAuthenticatedUserByIdContract, getAuthenticatedUserByIdResponseSchema, getExerciseTrackingContract, getExerciseTrackingRequestSchema, getExerciseTrackingResponseSchema, getExerciseTrackingStatsContract, getExerciseTrackingStatsResponseSchema, getPresignedUrlFromS3Contract, getPresignedUrlFromS3RequestSchema, getPresignedUrlFromS3ResponseSchema, getUserAerobicsContract, getWholeUserWorkoutPlanContract, getWholeUserWorkoutPlanResponseSchema, getWholeWorkoutPlanRequestSchema, goalAdherenceQueryDtoSchema, goalAdherenceRowQueryDtoSchema, googleOAuthContract, googleOAuthRequestSchema, googleTokenVerificationResultDtoSchema, lastLoginQueryDtoSchema, loginContract, loginRequestSchema, loginResponseSchema, logoutContract, logoutResponseSchema, markMessageAsReadContract, markMessageAsReadRequestSchema, markMessageAsReadResponseSchema, messageAfterSendQueryDtoSchema, messageAsReadQueryDtoSchema, messageDbSchema, oAuthCreatedUserRowQueryDtoSchema, oAuthLinkQueryDtoSchema, oAuthLinkRowQueryDtoSchema, oAuthLoginContract, oAuthLoginResponseSchema, oAuthLookupQueryDtoSchema, oAuthLookupRawQueryDtoSchema, oAuthLookupRowQueryDtoSchema, oauthAccountDbSchema, proceedLoginResponseSchema, prsViewDbSchema, refreshTokenContract, refreshTokenResponseSchema, resetPasswordContract, resetPasswordRequestSchema, resetPasswordResponseSchema, saveUserPushTokenContract, saveUserPushTokenRequestSchema, saveWorkoutSplitInputQueryDtoSchema, saveWorkoutSplitPayloadQueryDtoSchema, sendChangePassEmailContract, sendChangePassEmailRequestSchema, sendVerificationMailContract, sendVerificationMailRequestSchema, serializedDateSchema, setProfilePicAndUpdateDBContract, setProfilePicAndUpdateDBResponseSchema, squatRepetitionDtoSchema, timezoneSchema, tokenVersionQueryDtoSchema, trackingByDateItemQueryDtoSchema, trackingBySplitNameItemQueryDtoSchema, trackingMapItemQueryDtoSchema, trackingSetDbSchema, updateAuthenticatedUserContract, updateAuthenticatedUserResponseSchema, updateUserRequestSchema, userAerobicsQueryDtoSchema, userAerobicsResponseSchema, userAerobicsRowQueryDtoSchema, userAfterBumpQueryDtoSchema, userByIdentifierQueryDtoSchema, userByIdentifierRawQueryDtoSchema, userByIdentifierRowQueryDtoSchema, userByUsernameRawQueryDtoSchema, userByUsernameRowQueryDtoSchema, userConflictQueryDtoSchema, userDataContract, userDataQueryDtoSchema, userDataResponseSchema, userDataRowQueryDtoSchema, userDbSchema, userExistsQueryDtoSchema, userInsertDbSchema, userMessageIdentityQueryDtoSchema, userProfilePicQueryDtoSchema, userReminderSettingDbSchema, userSplitInformationDbSchema, userToHourlyReminderQueryDtoSchema, userUpdateDbSchema, userWithNotificationsEnabledQueryDtoSchema, verifyAccountRequestSchema, verifyUserAccountContract, weeklyDataQueryDtoSchema, wholeUserWorkoutPlanQueryDtoSchema, workoutExerciseInputQueryDtoSchema, workoutPlanDbSchema, workoutPlanIdQueryDtoSchema, workoutRmRecordQueryDtoSchema, workoutRmsQueryDtoSchema, workoutRmsRowQueryDtoSchema, workoutSetDbSchema, workoutSplitDbSchema, workoutSplitIdQueryDtoSchema, workoutSplitLookupQueryDtoSchema, workoutSplitQueryDtoSchema, workoutSummaryDbSchema, workoutSummaryIdQueryDtoSchema };
|