@strong-together/shared 2.10.0 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -3829,7 +3829,7 @@ type ExerciseToWorkoutSplitRow = typeof exerciseToWorkoutSplit.$inferSelect;
3829
3829
  type WorkoutSummaryRow = typeof workoutSummary.$inferSelect;
3830
3830
  type ExerciseTrackingRow = typeof exerciseTracking.$inferSelect;
3831
3831
 
3832
- declare const addAerobicsRequestSchema: z.ZodObject<{
3832
+ declare const createAerobicEntryRequestSchema: z.ZodObject<{
3833
3833
  body: z.ZodObject<{
3834
3834
  tz: z.ZodString;
3835
3835
  record: z.ZodObject<{
@@ -3839,7 +3839,7 @@ declare const addAerobicsRequestSchema: z.ZodObject<{
3839
3839
  }, z.core.$strip>;
3840
3840
  }, z.core.$strip>;
3841
3841
  }, z.core.$strip>;
3842
- declare const addUserAerobicsContract: {
3842
+ declare const createAerobicEntryContract: {
3843
3843
  request: z.ZodObject<{
3844
3844
  body: z.ZodObject<{
3845
3845
  tz: z.ZodString;
@@ -3851,12 +3851,12 @@ declare const addUserAerobicsContract: {
3851
3851
  }, z.core.$strip>;
3852
3852
  }, z.core.$strip>;
3853
3853
  };
3854
- declare const getAerobicsRequestSchema: z.ZodObject<{
3854
+ declare const getAerobicHistoryRequestSchema: z.ZodObject<{
3855
3855
  query: z.ZodObject<{
3856
3856
  tz: z.ZodOptional<z.ZodString>;
3857
3857
  }, z.core.$strip>;
3858
3858
  }, z.core.$strip>;
3859
- declare const userAerobicsResponseSchema: z.ZodObject<{
3859
+ declare const getAerobicHistoryResponseSchema: z.ZodObject<{
3860
3860
  daily: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
3861
3861
  type: z.ZodString;
3862
3862
  durationSec: z.ZodInt;
@@ -3873,7 +3873,7 @@ declare const userAerobicsResponseSchema: z.ZodObject<{
3873
3873
  totalDurationMins: z.ZodNumber;
3874
3874
  }, z.core.$strip>>;
3875
3875
  }, z.core.$strip>;
3876
- declare const getUserAerobicsContract: {
3876
+ declare const getAerobicHistoryContract: {
3877
3877
  request: z.ZodObject<{
3878
3878
  query: z.ZodObject<{
3879
3879
  tz: z.ZodOptional<z.ZodString>;
@@ -3897,9 +3897,9 @@ declare const getUserAerobicsContract: {
3897
3897
  }, z.core.$strip>>;
3898
3898
  }, z.core.$strip>;
3899
3899
  };
3900
- type AddUserAerobicsBody = BodyOf<typeof addUserAerobicsContract>;
3901
- type GetUserAerobicsQuery = QueryOf<typeof getUserAerobicsContract>;
3902
- type UserAerobicsResponse = ResponseOf<typeof getUserAerobicsContract>;
3900
+ type CreateAerobicEntryBody = BodyOf<typeof createAerobicEntryContract>;
3901
+ type GetAerobicHistoryQuery = QueryOf<typeof getAerobicHistoryContract>;
3902
+ type GetAerobicHistoryResponse = ResponseOf<typeof getAerobicHistoryContract>;
3903
3903
 
3904
3904
  /** Aerobic record accepted by the insert query. */
3905
3905
  declare const addAerobicInputQueryDtoSchema: z.ZodObject<{
@@ -4056,12 +4056,12 @@ type AdherenceExerciseStatsQueryDto = z.infer<typeof adherenceExerciseStatsQuery
4056
4056
  type GoalAdherenceQueryDto = z.infer<typeof goalAdherenceQueryDtoSchema>;
4057
4057
  type GoalAdherenceRowQueryDto = z.infer<typeof goalAdherenceRowQueryDtoSchema>;
4058
4058
 
4059
- declare const sendChangePassEmailRequestSchema: z.ZodObject<{
4059
+ declare const createPasswordResetRequestSchema: z.ZodObject<{
4060
4060
  body: z.ZodObject<{
4061
4061
  identifier: z.ZodString;
4062
4062
  }, z.core.$strip>;
4063
4063
  }, z.core.$strip>;
4064
- declare const sendChangePassEmailContract: {
4064
+ declare const createPasswordResetRequestContract: {
4065
4065
  request: z.ZodObject<{
4066
4066
  body: z.ZodObject<{
4067
4067
  identifier: z.ZodString;
@@ -4092,7 +4092,7 @@ declare const resetPasswordContract: {
4092
4092
  ok: z.ZodBoolean;
4093
4093
  }, z.core.$strip>;
4094
4094
  };
4095
- type SendChangePassEmailBody = BodyOf<typeof sendChangePassEmailContract>;
4095
+ type CreatePasswordResetRequestBody = BodyOf<typeof createPasswordResetRequestContract>;
4096
4096
  type ResetPasswordBody = BodyOf<typeof resetPasswordContract>;
4097
4097
  type ResetPasswordQuery = QueryOf<typeof resetPasswordContract>;
4098
4098
  type ResetPasswordResponse = ResponseOf<typeof resetPasswordContract>;
@@ -4205,38 +4205,38 @@ type UserAfterBumpQueryDto = z.infer<typeof userAfterBumpQueryDtoSchema>;
4205
4205
  type TokenVersionQueryDto = z.infer<typeof tokenVersionQueryDtoSchema>;
4206
4206
  type LastLoginQueryDto = z.infer<typeof lastLoginQueryDtoSchema>;
4207
4207
 
4208
- declare const verifyAccountRequestSchema: z.ZodObject<{
4208
+ declare const verifyEmailRequestSchema: z.ZodObject<{
4209
4209
  query: z.ZodObject<{
4210
4210
  token: z.ZodOptional<z.ZodString>;
4211
4211
  }, z.core.$strip>;
4212
4212
  }, z.core.$strip>;
4213
- declare const verifyUserAccountContract: {
4213
+ declare const verifyEmailContract: {
4214
4214
  request: z.ZodObject<{
4215
4215
  query: z.ZodObject<{
4216
4216
  token: z.ZodOptional<z.ZodString>;
4217
4217
  }, z.core.$strip>;
4218
4218
  }, z.core.$strip>;
4219
4219
  };
4220
- declare const sendVerificationMailRequestSchema: z.ZodObject<{
4220
+ declare const createVerificationEmailRequestSchema: z.ZodObject<{
4221
4221
  body: z.ZodObject<{
4222
4222
  email: z.ZodString;
4223
4223
  }, z.core.$strip>;
4224
4224
  }, z.core.$strip>;
4225
- declare const sendVerificationMailContract: {
4225
+ declare const createVerificationEmailContract: {
4226
4226
  request: z.ZodObject<{
4227
4227
  body: z.ZodObject<{
4228
4228
  email: z.ZodString;
4229
4229
  }, z.core.$strip>;
4230
4230
  }, z.core.$strip>;
4231
4231
  };
4232
- declare const changeEmailAndVerifyRequestSchema: z.ZodObject<{
4232
+ declare const updateUnverifiedAccountEmailRequestSchema: z.ZodObject<{
4233
4233
  body: z.ZodObject<{
4234
4234
  username: z.ZodString;
4235
4235
  password: z.ZodString;
4236
4236
  newEmail: z.ZodString;
4237
4237
  }, z.core.$strip>;
4238
4238
  }, z.core.$strip>;
4239
- declare const changeEmailAndVerifyContract: {
4239
+ declare const updateUnverifiedAccountEmailContract: {
4240
4240
  request: z.ZodObject<{
4241
4241
  body: z.ZodObject<{
4242
4242
  username: z.ZodString;
@@ -4245,22 +4245,22 @@ declare const changeEmailAndVerifyContract: {
4245
4245
  }, z.core.$strip>;
4246
4246
  }, z.core.$strip>;
4247
4247
  };
4248
- declare const checkUserVerifyRequestSchema: z.ZodObject<{
4248
+ declare const getVerificationStatusRequestSchema: z.ZodObject<{
4249
4249
  query: z.ZodObject<{
4250
4250
  username: z.ZodString;
4251
4251
  }, z.core.$strip>;
4252
4252
  }, z.core.$strip>;
4253
- declare const checkUserVerifyContract: {
4253
+ declare const getVerificationStatusContract: {
4254
4254
  request: z.ZodObject<{
4255
4255
  query: z.ZodObject<{
4256
4256
  username: z.ZodString;
4257
4257
  }, z.core.$strip>;
4258
4258
  }, z.core.$strip>;
4259
4259
  };
4260
- type VerifyUserAccountQuery = QueryOf<typeof verifyUserAccountContract>;
4261
- type SendVerificationMailBody = BodyOf<typeof sendVerificationMailContract>;
4262
- type ChangeEmailAndVerifyBody = BodyOf<typeof changeEmailAndVerifyContract>;
4263
- type CheckUserVerifyQuery = QueryOf<typeof checkUserVerifyContract>;
4260
+ type VerifyEmailQuery = QueryOf<typeof verifyEmailContract>;
4261
+ type CreateVerificationEmailBody = BodyOf<typeof createVerificationEmailContract>;
4262
+ type UpdateUnverifiedAccountEmailBody = BodyOf<typeof updateUnverifiedAccountEmailContract>;
4263
+ type GetVerificationStatusQuery = QueryOf<typeof getVerificationStatusContract>;
4264
4264
 
4265
4265
  /** Claims carried by an email-verification token. */
4266
4266
  declare const emailVerifyPayloadDtoSchema: z.ZodObject<{
@@ -4337,19 +4337,19 @@ 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 getAllExercisesResponseSchema: zod_v4.ZodRecord<zod_v4.ZodString, zod_v4.ZodArray<zod_v4.ZodObject<{
4340
+ declare const listExercisesResponseSchema: zod_v4.ZodRecord<zod_v4.ZodString, zod_v4.ZodArray<zod_v4.ZodObject<{
4341
4341
  id: zod_v4.ZodInt;
4342
4342
  name: zod_v4.ZodString;
4343
4343
  specificTargetMuscle: zod_v4.ZodString;
4344
4344
  }, zod_v4_core.$strip>>>;
4345
- declare const getAllExercisesContract: {
4345
+ declare const listExercisesContract: {
4346
4346
  response: zod_v4.ZodRecord<zod_v4.ZodString, zod_v4.ZodArray<zod_v4.ZodObject<{
4347
4347
  id: zod_v4.ZodInt;
4348
4348
  name: zod_v4.ZodString;
4349
4349
  specificTargetMuscle: zod_v4.ZodString;
4350
4350
  }, zod_v4_core.$strip>>>;
4351
4351
  };
4352
- type GetAllExercisesResponse = ResponseOf<typeof getAllExercisesContract>;
4352
+ type ListExercisesResponse = ResponseOf<typeof listExercisesContract>;
4353
4353
 
4354
4354
  /** Exercise row included in the muscle-grouped exercise query result. */
4355
4355
  declare const getAllExercisesExerciseQueryDtoSchema: z.ZodObject<{
@@ -4377,12 +4377,12 @@ type GetAllExercisesExerciseQueryDto = z.infer<typeof getAllExercisesExerciseQue
4377
4377
  type ExercisesMapByMuscleQueryDto = z.infer<typeof exercisesMapByMuscleQueryDtoSchema>;
4378
4378
  type ExerciseMapByMuscleRowQueryDto = z.infer<typeof exerciseMapByMuscleRowQueryDtoSchema>;
4379
4379
 
4380
- declare const getAllMessagesRequestSchema: z.ZodObject<{
4380
+ declare const listMessagesRequestSchema: z.ZodObject<{
4381
4381
  query: z.ZodObject<{
4382
4382
  tz: z.ZodString;
4383
4383
  }, z.core.$strip>;
4384
4384
  }, z.core.$strip>;
4385
- declare const getAllUserMessagesResponseSchema: z.ZodObject<{
4385
+ declare const listMessagesResponseSchema: z.ZodObject<{
4386
4386
  messages: z.ZodArray<z.ZodObject<{
4387
4387
  id: z.ZodUUID;
4388
4388
  subject: z.ZodString;
@@ -4393,7 +4393,7 @@ declare const getAllUserMessagesResponseSchema: z.ZodObject<{
4393
4393
  senderProfilePicPath: z.ZodNullable<z.ZodString>;
4394
4394
  }, z.core.$strip>>;
4395
4395
  }, z.core.$strip>;
4396
- declare const getAllUserMessagesContract: {
4396
+ declare const listMessagesContract: {
4397
4397
  request: z.ZodObject<{
4398
4398
  query: z.ZodObject<{
4399
4399
  tz: z.ZodString;
@@ -4411,8 +4411,8 @@ declare const getAllUserMessagesContract: {
4411
4411
  }, z.core.$strip>>;
4412
4412
  }, z.core.$strip>;
4413
4413
  };
4414
- type GetAllUserMessagesQuery = QueryOf<typeof getAllUserMessagesContract>;
4415
- type GetAllUserMessagesResponse = ResponseOf<typeof getAllUserMessagesContract>;
4414
+ type ListMessagesQuery = QueryOf<typeof listMessagesContract>;
4415
+ type ListMessagesResponse = ResponseOf<typeof listMessagesContract>;
4416
4416
  declare const markMessageAsReadRequestSchema: z.ZodObject<{
4417
4417
  params: z.ZodObject<{
4418
4418
  id: z.ZodUUID;
@@ -4737,28 +4737,28 @@ type CreatedUserRawQueryDto = z.infer<typeof createdUserRawQueryDtoSchema>;
4737
4737
  type CreatedUserRowQueryDto = z.infer<typeof createdUserRowQueryDtoSchema>;
4738
4738
  type UserExistsQueryDto = z.infer<typeof userExistsQueryDtoSchema>;
4739
4739
 
4740
- declare const saveUserPushTokenRequestSchema: z.ZodObject<{
4740
+ declare const replacePushTokenRequestSchema: z.ZodObject<{
4741
4741
  body: z.ZodObject<{
4742
4742
  token: z.ZodString;
4743
4743
  }, z.core.$strip>;
4744
4744
  }, z.core.$strip>;
4745
- declare const saveUserPushTokenContract: {
4745
+ declare const replacePushTokenContract: {
4746
4746
  request: z.ZodObject<{
4747
4747
  body: z.ZodObject<{
4748
4748
  token: z.ZodString;
4749
4749
  }, z.core.$strip>;
4750
4750
  }, z.core.$strip>;
4751
4751
  };
4752
- type SaveUserPushTokenBody = BodyOf<typeof saveUserPushTokenContract>;
4752
+ type ReplacePushTokenBody = BodyOf<typeof replacePushTokenContract>;
4753
4753
 
4754
- declare const updateUserRequestSchema: z.ZodObject<{
4754
+ declare const updateCurrentUserRequestSchema: z.ZodObject<{
4755
4755
  body: z.ZodObject<{
4756
4756
  username: z.ZodOptional<z.ZodString>;
4757
4757
  fullName: z.ZodOptional<z.ZodString>;
4758
4758
  email: z.ZodOptional<z.ZodString>;
4759
4759
  }, z.core.$strip>;
4760
4760
  }, z.core.$strip>;
4761
- declare const updateAuthenticatedUserResponseSchema: z.ZodObject<{
4761
+ declare const updateCurrentUserResponseSchema: z.ZodObject<{
4762
4762
  message: z.ZodString;
4763
4763
  emailChanged: z.ZodBoolean;
4764
4764
  user: z.ZodObject<{
@@ -4779,7 +4779,7 @@ declare const updateAuthenticatedUserResponseSchema: z.ZodObject<{
4779
4779
  lastLogin: z.ZodNullable<z.ZodString>;
4780
4780
  }, z.core.$strip>;
4781
4781
  }, z.core.$strip>;
4782
- declare const updateAuthenticatedUserContract: {
4782
+ declare const updateCurrentUserContract: {
4783
4783
  request: z.ZodObject<{
4784
4784
  body: z.ZodObject<{
4785
4785
  username: z.ZodOptional<z.ZodString>;
@@ -4849,7 +4849,7 @@ declare const userDataContract: {
4849
4849
  }, z.core.$strip>;
4850
4850
  }, z.core.$strip>;
4851
4851
  };
4852
- declare const getAuthenticatedUserByIdResponseSchema: z.ZodObject<{
4852
+ declare const getCurrentUserResponseSchema: z.ZodObject<{
4853
4853
  id: z.ZodUUID;
4854
4854
  username: z.ZodString;
4855
4855
  email: z.ZodString;
@@ -4866,7 +4866,7 @@ declare const getAuthenticatedUserByIdResponseSchema: z.ZodObject<{
4866
4866
  authProvider: z.ZodString;
4867
4867
  lastLogin: z.ZodNullable<z.ZodString>;
4868
4868
  }, z.core.$strip>;
4869
- declare const getAuthenticatedUserByIdContract: {
4869
+ declare const getCurrentUserContract: {
4870
4870
  response: z.ZodObject<{
4871
4871
  id: z.ZodUUID;
4872
4872
  username: z.ZodString;
@@ -4885,36 +4885,36 @@ declare const getAuthenticatedUserByIdContract: {
4885
4885
  lastLogin: z.ZodNullable<z.ZodString>;
4886
4886
  }, z.core.$strip>;
4887
4887
  };
4888
- declare const deleteProfilePicRequestSchema: z.ZodObject<{
4888
+ declare const deleteProfilePictureRequestSchema: z.ZodObject<{
4889
4889
  body: z.ZodObject<{
4890
4890
  profilePicPath: z.ZodString;
4891
4891
  }, z.core.$strip>;
4892
4892
  }, z.core.$strip>;
4893
- declare const deleteUserProfilePicContract: {
4893
+ declare const deleteProfilePictureContract: {
4894
4894
  request: z.ZodObject<{
4895
4895
  body: z.ZodObject<{
4896
4896
  profilePicPath: z.ZodString;
4897
4897
  }, z.core.$strip>;
4898
4898
  }, z.core.$strip>;
4899
4899
  };
4900
- declare const setProfilePicAndUpdateDBResponseSchema: z.ZodObject<{
4900
+ declare const replaceProfilePictureResponseSchema: z.ZodObject<{
4901
4901
  profilePicPath: z.ZodString;
4902
4902
  url: z.ZodString;
4903
4903
  message: z.ZodString;
4904
4904
  }, z.core.$strip>;
4905
- declare const setProfilePicAndUpdateDBContract: {
4905
+ declare const replaceProfilePictureContract: {
4906
4906
  response: z.ZodObject<{
4907
4907
  profilePicPath: z.ZodString;
4908
4908
  url: z.ZodString;
4909
4909
  message: z.ZodString;
4910
4910
  }, z.core.$strip>;
4911
4911
  };
4912
- type UpdateUserBody = BodyOf<typeof updateAuthenticatedUserContract>;
4913
- type UpdateAuthenticatedUserResponse = ResponseOf<typeof updateAuthenticatedUserContract>;
4912
+ type UpdateCurrentUserBody = BodyOf<typeof updateCurrentUserContract>;
4913
+ type UpdateCurrentUserResponse = ResponseOf<typeof updateCurrentUserContract>;
4914
4914
  type UserDataResponse = ResponseOf<typeof userDataContract>;
4915
- type GetAuthenticatedUserByIdResponse = ResponseOf<typeof getAuthenticatedUserByIdContract>;
4916
- type DeleteUserProfilePicBody = BodyOf<typeof deleteUserProfilePicContract>;
4917
- type SetProfilePicAndUpdateDBResponse = ResponseOf<typeof setProfilePicAndUpdateDBContract>;
4915
+ type GetCurrentUserResponse = ResponseOf<typeof getCurrentUserContract>;
4916
+ type DeleteProfilePictureBody = BodyOf<typeof deleteProfilePictureContract>;
4917
+ type ReplaceProfilePictureResponse = ResponseOf<typeof replaceProfilePictureContract>;
4918
4918
 
4919
4919
  /** Fields consumed by the authenticated-user update query. */
4920
4920
  declare const authenticatedUserForUpdateQueryDtoSchema: z.ZodObject<{
@@ -4993,19 +4993,19 @@ type UserConflictQueryDto = z.infer<typeof userConflictQueryDtoSchema>;
4993
4993
  type UserMessageIdentityQueryDto = z.infer<typeof userMessageIdentityQueryDtoSchema>;
4994
4994
  type UserProfilePicQueryDto = z.infer<typeof userProfilePicQueryDtoSchema>;
4995
4995
 
4996
- declare const getPresignedUrlFromS3RequestSchema: z.ZodObject<{
4996
+ declare const createVideoUploadUrlRequestSchema: z.ZodObject<{
4997
4997
  body: z.ZodObject<{
4998
4998
  exercise: z.ZodString;
4999
4999
  fileType: z.ZodString;
5000
5000
  jobId: z.ZodString;
5001
5001
  }, z.core.$strip>;
5002
5002
  }, z.core.$strip>;
5003
- declare const getPresignedUrlFromS3ResponseSchema: z.ZodObject<{
5003
+ declare const createVideoUploadUrlResponseSchema: z.ZodObject<{
5004
5004
  uploadUrl: z.ZodString;
5005
5005
  fileKey: z.ZodString;
5006
5006
  requestId: z.ZodString;
5007
5007
  }, z.core.$strip>;
5008
- declare const getPresignedUrlFromS3Contract: {
5008
+ declare const createVideoUploadUrlContract: {
5009
5009
  request: z.ZodObject<{
5010
5010
  body: z.ZodObject<{
5011
5011
  exercise: z.ZodString;
@@ -5019,8 +5019,8 @@ declare const getPresignedUrlFromS3Contract: {
5019
5019
  requestId: z.ZodString;
5020
5020
  }, z.core.$strip>;
5021
5021
  };
5022
- type GetPresignedUrlFromS3Body = BodyOf<typeof getPresignedUrlFromS3Contract>;
5023
- type GetPresignedUrlFromS3Response = ResponseOf<typeof getPresignedUrlFromS3Contract>;
5022
+ type CreateVideoUploadUrlBody = BodyOf<typeof createVideoUploadUrlContract>;
5023
+ type CreateVideoUploadUrlResponse = ResponseOf<typeof createVideoUploadUrlContract>;
5024
5024
 
5025
5025
  /** Parameters used to enqueue a video-analysis job. */
5026
5026
  declare const enqueueAnalyzeVideoParamsDtoSchema: z.ZodObject<{
@@ -5081,15 +5081,15 @@ type AnalyzeVideoPayloadDto = z.infer<typeof analyzeVideoPayloadDtoSchema>;
5081
5081
  type SquatRepetitionDto = z.infer<typeof squatRepetitionDtoSchema>;
5082
5082
  type AnalyzeVideoResultPayloadDto<TResult> = z.infer<ReturnType<typeof analyzeVideoResultPayloadDtoSchema<z.ZodType<TResult>>>>;
5083
5083
 
5084
- declare const generateTicketRequestSchema: z.ZodObject<{
5084
+ declare const createWebSocketTicketRequestSchema: z.ZodObject<{
5085
5085
  body: z.ZodObject<{
5086
5086
  username: z.ZodString;
5087
5087
  }, z.core.$strip>;
5088
5088
  }, z.core.$strip>;
5089
- declare const generateTicketResponseSchema: z.ZodObject<{
5089
+ declare const createWebSocketTicketResponseSchema: z.ZodObject<{
5090
5090
  ticket: z.ZodString;
5091
5091
  }, z.core.$strip>;
5092
- declare const generateTicketContract: {
5092
+ declare const createWebSocketTicketContract: {
5093
5093
  request: z.ZodObject<{
5094
5094
  body: z.ZodObject<{
5095
5095
  username: z.ZodString;
@@ -5099,15 +5099,15 @@ declare const generateTicketContract: {
5099
5099
  ticket: z.ZodString;
5100
5100
  }, z.core.$strip>;
5101
5101
  };
5102
- type GenerateTicketBody = BodyOf<typeof generateTicketContract>;
5103
- type GenerateTicketResponse = ResponseOf<typeof generateTicketContract>;
5102
+ type CreateWebSocketTicketBody = BodyOf<typeof createWebSocketTicketContract>;
5103
+ type CreateWebSocketTicketResponse = ResponseOf<typeof createWebSocketTicketContract>;
5104
5104
 
5105
- declare const getWholeWorkoutPlanRequestSchema: z.ZodObject<{
5105
+ declare const getWorkoutPlanRequestSchema: z.ZodObject<{
5106
5106
  query: z.ZodObject<{
5107
5107
  tz: z.ZodOptional<z.ZodString>;
5108
5108
  }, z.core.$strip>;
5109
5109
  }, z.core.$strip>;
5110
- declare const getWholeUserWorkoutPlanResponseSchema: z.ZodObject<{
5110
+ declare const getWorkoutPlanResponseSchema: z.ZodObject<{
5111
5111
  workoutPlan: z.ZodNullable<z.ZodObject<{
5112
5112
  id: z.ZodInt;
5113
5113
  numberOfSplits: z.ZodNumber;
@@ -5140,7 +5140,7 @@ declare const getWholeUserWorkoutPlanResponseSchema: z.ZodObject<{
5140
5140
  }, z.core.$strip>>>;
5141
5141
  }, z.core.$strip>>;
5142
5142
  }, z.core.$strip>;
5143
- declare const getWholeUserWorkoutPlanContract: {
5143
+ declare const getWorkoutPlanContract: {
5144
5144
  request: z.ZodObject<{
5145
5145
  query: z.ZodObject<{
5146
5146
  tz: z.ZodOptional<z.ZodString>;
@@ -5180,7 +5180,7 @@ declare const getWholeUserWorkoutPlanContract: {
5180
5180
  }, z.core.$strip>>;
5181
5181
  }, z.core.$strip>;
5182
5182
  };
5183
- declare const addWorkoutRequestSchema: z.ZodObject<{
5183
+ declare const replaceWorkoutPlanRequestSchema: z.ZodObject<{
5184
5184
  body: z.ZodObject<{
5185
5185
  workoutData: z.ZodArray<z.ZodObject<{
5186
5186
  name: z.ZodString;
@@ -5196,7 +5196,7 @@ declare const addWorkoutRequestSchema: z.ZodObject<{
5196
5196
  tz: z.ZodString;
5197
5197
  }, z.core.$strip>;
5198
5198
  }, z.core.$strip>;
5199
- declare const addWorkoutResponseSchema: z.ZodObject<{
5199
+ declare const replaceWorkoutPlanResponseSchema: z.ZodObject<{
5200
5200
  message: z.ZodString;
5201
5201
  workoutPlan: z.ZodObject<{
5202
5202
  id: z.ZodInt;
@@ -5230,7 +5230,7 @@ declare const addWorkoutResponseSchema: z.ZodObject<{
5230
5230
  }, z.core.$strip>>>;
5231
5231
  }, z.core.$strip>;
5232
5232
  }, z.core.$strip>;
5233
- declare const addWorkoutContract: {
5233
+ declare const replaceWorkoutPlanContract: {
5234
5234
  request: z.ZodObject<{
5235
5235
  body: z.ZodObject<{
5236
5236
  workoutData: z.ZodArray<z.ZodObject<{
@@ -5282,10 +5282,10 @@ declare const addWorkoutContract: {
5282
5282
  }, z.core.$strip>;
5283
5283
  }, z.core.$strip>;
5284
5284
  };
5285
- type GetWholeUserWorkoutPlanQuery = QueryOf<typeof getWholeUserWorkoutPlanContract>;
5286
- type GetWholeUserWorkoutPlanResponse = ResponseOf<typeof getWholeUserWorkoutPlanContract>;
5287
- type AddWorkoutBody = BodyOf<typeof addWorkoutContract>;
5288
- type AddWorkoutResponse = ResponseOf<typeof addWorkoutContract>;
5285
+ type GetWorkoutPlanQuery = QueryOf<typeof getWorkoutPlanContract>;
5286
+ type GetWorkoutPlanResponse = ResponseOf<typeof getWorkoutPlanContract>;
5287
+ type ReplaceWorkoutPlanBody = BodyOf<typeof replaceWorkoutPlanContract>;
5288
+ type ReplaceWorkoutPlanResponse = ResponseOf<typeof replaceWorkoutPlanContract>;
5289
5289
 
5290
5290
  /** Exercise input stored while adding a workout plan. */
5291
5291
  declare const workoutExerciseInputQueryDtoSchema: z.ZodObject<{
@@ -5406,12 +5406,12 @@ type WorkoutPlanIdQueryDto = z.infer<typeof workoutPlanIdQueryDtoSchema>;
5406
5406
  type WorkoutSplitIdQueryDto = z.infer<typeof workoutSplitIdQueryDtoSchema>;
5407
5407
  type ExerciseAssignmentIdQueryDto = z.infer<typeof exerciseAssignmentIdQueryDtoSchema>;
5408
5408
 
5409
- declare const getExerciseTrackingRequestSchema: z.ZodObject<{
5409
+ declare const getWorkoutHistoryRequestSchema: z.ZodObject<{
5410
5410
  query: z.ZodObject<{
5411
5411
  tz: z.ZodOptional<z.ZodString>;
5412
5412
  }, z.core.$strip>;
5413
5413
  }, z.core.$strip>;
5414
- declare const getExerciseTrackingResponseSchema: z.ZodObject<{
5414
+ declare const getWorkoutHistoryResponseSchema: z.ZodObject<{
5415
5415
  byDate: z.ZodRecord<z.ZodString, z.ZodObject<{
5416
5416
  durationMins: z.ZodNumber;
5417
5417
  exerciseTracked: z.ZodArray<z.ZodObject<{
@@ -5437,7 +5437,7 @@ declare const getExerciseTrackingResponseSchema: z.ZodObject<{
5437
5437
  }, z.core.$strip>>;
5438
5438
  }, z.core.$strip>>;
5439
5439
  }, z.core.$strip>;
5440
- declare const getExerciseTrackingContract: {
5440
+ declare const getWorkoutHistoryContract: {
5441
5441
  request: z.ZodObject<{
5442
5442
  query: z.ZodObject<{
5443
5443
  tz: z.ZodOptional<z.ZodString>;
@@ -5470,7 +5470,7 @@ declare const getExerciseTrackingContract: {
5470
5470
  }, z.core.$strip>>;
5471
5471
  }, z.core.$strip>;
5472
5472
  };
5473
- declare const getExerciseTrackingStatsResponseSchema: z.ZodObject<{
5473
+ declare const getWorkoutStatisticsResponseSchema: z.ZodObject<{
5474
5474
  workoutCount: z.ZodCoercedNumber<unknown>;
5475
5475
  hasExerciseTracking: z.ZodBoolean;
5476
5476
  nextWorkoutSplit: z.ZodNullable<z.ZodObject<{
@@ -5500,7 +5500,7 @@ declare const getExerciseTrackingStatsResponseSchema: z.ZodObject<{
5500
5500
  estimatedOneRepMax: z.ZodNullable<z.ZodNumber>;
5501
5501
  }, z.core.$strip>>;
5502
5502
  }, z.core.$strip>;
5503
- declare const getExerciseTrackingStatsContract: {
5503
+ declare const getWorkoutStatisticsContract: {
5504
5504
  request: z.ZodObject<{
5505
5505
  query: z.ZodObject<{
5506
5506
  tz: z.ZodOptional<z.ZodString>;
@@ -5537,7 +5537,7 @@ declare const getExerciseTrackingStatsContract: {
5537
5537
  }, z.core.$strip>>;
5538
5538
  }, z.core.$strip>;
5539
5539
  };
5540
- declare const finishWorkoutRequestSchema: z.ZodObject<{
5540
+ declare const createWorkoutSessionRequestSchema: z.ZodObject<{
5541
5541
  body: z.ZodObject<{
5542
5542
  workout: z.ZodArray<z.ZodObject<{
5543
5543
  trackedSets: z.ZodArray<z.ZodObject<{
@@ -5555,7 +5555,7 @@ declare const finishWorkoutRequestSchema: z.ZodObject<{
5555
5555
  workoutEndUtc: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5556
5556
  }, z.core.$strip>;
5557
5557
  }, z.core.$strip>;
5558
- declare const finishUserWorkoutResponseSchema: z.ZodObject<{
5558
+ declare const createWorkoutSessionResponseSchema: z.ZodObject<{
5559
5559
  trackingStats: z.ZodObject<{
5560
5560
  workoutCount: z.ZodCoercedNumber<unknown>;
5561
5561
  hasExerciseTracking: z.ZodBoolean;
@@ -5613,7 +5613,7 @@ declare const finishUserWorkoutResponseSchema: z.ZodObject<{
5613
5613
  }, z.core.$strip>>;
5614
5614
  }, z.core.$strip>;
5615
5615
  }, z.core.$strip>;
5616
- declare const finishUserWorkoutContract: {
5616
+ declare const createWorkoutSessionContract: {
5617
5617
  request: z.ZodObject<{
5618
5618
  body: z.ZodObject<{
5619
5619
  workout: z.ZodArray<z.ZodObject<{
@@ -5691,11 +5691,11 @@ declare const finishUserWorkoutContract: {
5691
5691
  }, z.core.$strip>;
5692
5692
  }, z.core.$strip>;
5693
5693
  };
5694
- type GetExerciseTrackingQuery = QueryOf<typeof getExerciseTrackingContract>;
5695
- type GetExerciseTrackingResponse = ResponseOf<typeof getExerciseTrackingContract>;
5696
- type GetExerciseTrackingStatsResponse = ResponseOf<typeof getExerciseTrackingStatsContract>;
5697
- type FinishUserWorkoutBody = BodyOf<typeof finishUserWorkoutContract>;
5698
- type FinishUserWorkoutResponse = ResponseOf<typeof finishUserWorkoutContract>;
5694
+ type GetWorkoutHistoryQuery = QueryOf<typeof getWorkoutHistoryContract>;
5695
+ type GetWorkoutHistoryResponse = ResponseOf<typeof getWorkoutHistoryContract>;
5696
+ type GetWorkoutStatisticsResponse = ResponseOf<typeof getWorkoutStatisticsContract>;
5697
+ type CreateWorkoutSessionBody = BodyOf<typeof createWorkoutSessionContract>;
5698
+ type CreateWorkoutSessionResponse = ResponseOf<typeof createWorkoutSessionContract>;
5699
5699
 
5700
5700
  declare const finishedWorkoutEntryQueryDtoSchema: z.ZodObject<{
5701
5701
  trackedSets: z.ZodArray<z.ZodObject<{
@@ -6061,4 +6061,4 @@ type WorkoutSummaryIdQueryDto = z.infer<typeof workoutSummaryIdQueryDtoSchema>;
6061
6061
  type ExerciseTrackingIdQueryDto = z.infer<typeof exerciseTrackingIdQueryDtoSchema>;
6062
6062
  type FinishedWorkoutEntryQueryDto = z.infer<typeof finishedWorkoutEntryQueryDtoSchema>;
6063
6063
 
6064
- 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 };
6064
+ export { type AccessTokenPayloadDto, type AddAerobicInputQueryDto, type AdherenceExerciseStatsQueryDto, type AerobicTrackingRow, type AerobicsDailyRecordQueryDto, type AerobicsWeeklyRecordQueryDto, type AllUserMessageQueryDto, type AnalyzeVideoPayloadDto, type AnalyzeVideoResultPayloadDto, type AppleOAuthBody, type AppleTokenVerificationResultDto, type AuthenticatedUserForUpdateQueryDto, type BodyOf, type ChangeEmailTokenPayloadDto, type Contract, type CreateAerobicEntryBody, type CreatePasswordResetRequestBody, type CreateUserBody, type CreateUserResponse, type CreateVerificationEmailBody, type CreateVideoUploadUrlBody, type CreateVideoUploadUrlResponse, type CreateWebSocketTicketBody, type CreateWebSocketTicketResponse, type CreateWorkoutSessionBody, type CreateWorkoutSessionResponse, type CreatedUserQueryDto, type CreatedUserRawQueryDto, type CreatedUserRowQueryDto, type DeleteMessageParams, type DeleteMessageResponse, type DeleteProfilePictureBody, 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 FinishedWorkoutEntryQueryDto, type ForgotPasswordPayloadDto, type GetAerobicHistoryQuery, type GetAerobicHistoryResponse, type GetAllExercisesExerciseQueryDto, type GetAnalyticsResponse, type GetCurrentUserResponse, type GetVerificationStatusQuery, type GetWorkoutHistoryQuery, type GetWorkoutHistoryResponse, type GetWorkoutPlanQuery, type GetWorkoutPlanResponse, type GetWorkoutStatisticsResponse, type GoalAdherenceQueryDto, type GoalAdherenceRowQueryDto, type GoogleOAuthBody, type GoogleTokenVerificationResultDto, type LastLoginQueryDto, type ListExercisesResponse, type ListMessagesQuery, type ListMessagesResponse, 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 ReplaceProfilePictureResponse, type ReplacePushTokenBody, type ReplaceWorkoutPlanBody, type ReplaceWorkoutPlanResponse, type RequestOf, type RequestSchema, type ResetPasswordBody, type ResetPasswordQuery, type ResetPasswordResponse, type ResponseOf, type SaveWorkoutSplitInputQueryDto, type SaveWorkoutSplitPayloadQueryDto, type SquatRepetitionDto, type TokenVersionQueryDto, type TrackingByDateItemQueryDto, type TrackingBySplitNameItemQueryDto, type TrackingMapItemQueryDto, type UpdateCurrentUserBody, type UpdateCurrentUserResponse, type UpdateUnverifiedAccountEmailBody, type UserAerobicsQueryDto, 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 VerifyEmailQuery, 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, adherenceExerciseStatsQueryDtoSchema, aerobicTrackingDbSchema, aerobicsDailyRecordQueryDtoSchema, aerobicsWeeklyRecordQueryDtoSchema, allUserMessageQueryDtoSchema, analyzeVideoPayloadDtoSchema, analyzeVideoResultPayloadDtoSchema, appleOAuthContract, appleOAuthRequestSchema, appleTokenVerificationResultDtoSchema, authenticatedUserForUpdateQueryDtoSchema, changeEmailTokenPayloadDtoSchema, createAerobicEntryContract, createAerobicEntryRequestSchema, createPasswordResetRequestContract, createPasswordResetRequestSchema, createUserContract, createUserRequestSchema, createUserResponseSchema, createUserUserSchema, createVerificationEmailContract, createVerificationEmailRequestSchema, createVideoUploadUrlContract, createVideoUploadUrlRequestSchema, createVideoUploadUrlResponseSchema, createWebSocketTicketContract, createWebSocketTicketRequestSchema, createWebSocketTicketResponseSchema, createWorkoutSessionContract, createWorkoutSessionRequestSchema, createWorkoutSessionResponseSchema, createdUserQueryDtoSchema, createdUserRawQueryDtoSchema, createdUserRowQueryDtoSchema, deleteMessageContract, deleteMessageRequestSchema, deleteMessageResponseSchema, deleteProfilePictureContract, deleteProfilePictureRequestSchema, deletedMessageQueryDtoSchema, emailVerifyPayloadDtoSchema, enqueueAnalyzeVideoParamsDtoSchema, exerciseAssignmentIdQueryDtoSchema, exerciseDbSchema, exerciseInPlanQueryDtoSchema, exerciseMapByMuscleRowQueryDtoSchema, exerciseMetadataQueryDtoSchema, exerciseToWorkoutSplitDbSchema, exerciseToWorkoutSplitSetExpandedViewDbSchema, exerciseTrackingAnalysisQueryDtoSchema, exerciseTrackingAndStatsQueryDtoSchema, exerciseTrackingAndStatsRowQueryDtoSchema, exerciseTrackingDbSchema, exerciseTrackingIdQueryDtoSchema, exerciseTrackingMapsQueryDtoSchema, exerciseTrackingMapsRowQueryDtoSchema, exerciseTrackingPrMaxQueryDtoSchema, exerciseTrackingSetExpandedViewDbSchema, exerciseTrackingStatsQueryDtoSchema, exerciseTrackingStatsRowQueryDtoSchema, exercisesMapByMuscleQueryDtoSchema, finishedWorkoutEntryQueryDtoSchema, forgotPasswordPayloadDtoSchema, getAerobicHistoryContract, getAerobicHistoryRequestSchema, getAerobicHistoryResponseSchema, getAllExercisesExerciseQueryDtoSchema, getAnalyticsContract, getAnalyticsResponseSchema, getCurrentUserContract, getCurrentUserResponseSchema, getVerificationStatusContract, getVerificationStatusRequestSchema, getWorkoutHistoryContract, getWorkoutHistoryRequestSchema, getWorkoutHistoryResponseSchema, getWorkoutPlanContract, getWorkoutPlanRequestSchema, getWorkoutPlanResponseSchema, getWorkoutStatisticsContract, getWorkoutStatisticsResponseSchema, goalAdherenceQueryDtoSchema, goalAdherenceRowQueryDtoSchema, googleOAuthContract, googleOAuthRequestSchema, googleTokenVerificationResultDtoSchema, lastLoginQueryDtoSchema, listExercisesContract, listExercisesResponseSchema, listMessagesContract, listMessagesRequestSchema, listMessagesResponseSchema, loginContract, loginRequestSchema, loginResponseSchema, logoutContract, logoutResponseSchema, markMessageAsReadContract, markMessageAsReadRequestSchema, markMessageAsReadResponseSchema, messageAfterSendQueryDtoSchema, messageAsReadQueryDtoSchema, messageDbSchema, oAuthCreatedUserRowQueryDtoSchema, oAuthLinkQueryDtoSchema, oAuthLinkRowQueryDtoSchema, oAuthLoginContract, oAuthLoginResponseSchema, oAuthLookupQueryDtoSchema, oAuthLookupRawQueryDtoSchema, oAuthLookupRowQueryDtoSchema, oauthAccountDbSchema, proceedLoginResponseSchema, prsViewDbSchema, refreshTokenContract, refreshTokenResponseSchema, replaceProfilePictureContract, replaceProfilePictureResponseSchema, replacePushTokenContract, replacePushTokenRequestSchema, replaceWorkoutPlanContract, replaceWorkoutPlanRequestSchema, replaceWorkoutPlanResponseSchema, resetPasswordContract, resetPasswordRequestSchema, resetPasswordResponseSchema, saveWorkoutSplitInputQueryDtoSchema, saveWorkoutSplitPayloadQueryDtoSchema, serializedDateSchema, squatRepetitionDtoSchema, timezoneSchema, tokenVersionQueryDtoSchema, trackingByDateItemQueryDtoSchema, trackingBySplitNameItemQueryDtoSchema, trackingMapItemQueryDtoSchema, trackingSetDbSchema, updateCurrentUserContract, updateCurrentUserRequestSchema, updateCurrentUserResponseSchema, updateUnverifiedAccountEmailContract, updateUnverifiedAccountEmailRequestSchema, userAerobicsQueryDtoSchema, userAerobicsRowQueryDtoSchema, userAfterBumpQueryDtoSchema, userByIdentifierQueryDtoSchema, userByIdentifierRawQueryDtoSchema, userByIdentifierRowQueryDtoSchema, userByUsernameRawQueryDtoSchema, userByUsernameRowQueryDtoSchema, userConflictQueryDtoSchema, userDataContract, userDataQueryDtoSchema, userDataResponseSchema, userDataRowQueryDtoSchema, userDbSchema, userExistsQueryDtoSchema, userInsertDbSchema, userMessageIdentityQueryDtoSchema, userProfilePicQueryDtoSchema, userReminderSettingDbSchema, userSplitInformationDbSchema, userToHourlyReminderQueryDtoSchema, userUpdateDbSchema, userWithNotificationsEnabledQueryDtoSchema, verifyEmailContract, verifyEmailRequestSchema, weeklyDataQueryDtoSchema, wholeUserWorkoutPlanQueryDtoSchema, workoutExerciseInputQueryDtoSchema, workoutPlanDbSchema, workoutPlanIdQueryDtoSchema, workoutRmRecordQueryDtoSchema, workoutRmsQueryDtoSchema, workoutRmsRowQueryDtoSchema, workoutSetDbSchema, workoutSplitDbSchema, workoutSplitIdQueryDtoSchema, workoutSplitLookupQueryDtoSchema, workoutSplitQueryDtoSchema, workoutSummaryDbSchema, workoutSummaryIdQueryDtoSchema };