hevy-shared 1.0.677 → 1.0.679

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.
Files changed (2) hide show
  1. package/built/index.d.ts +3 -3
  2. package/package.json +1 -1
package/built/index.d.ts CHANGED
@@ -1017,18 +1017,18 @@ export interface BaseRoutine {
1017
1017
  export interface Routine extends BaseRoutine {
1018
1018
  username: string;
1019
1019
  coach_id: null;
1020
+ program_id: null;
1021
+ coach_force_rpe_enabled: false;
1020
1022
  }
1021
1023
  export interface HevyTrainerRoutine extends Routine {
1022
1024
  hevy_trainer_program_id: string;
1023
- coach_force_rpe_enabled: false;
1024
- coach_id: null;
1025
- program_id: null;
1026
1025
  folder_id: null;
1027
1026
  }
1028
1027
  export type CoachsShallowLibraryRoutine = Omit<BaseRoutine, 'exercises' | 'profile_pic' | 'hevy_trainer_program_id' | 'username'>;
1029
1028
  export interface CoachesRoutine extends BaseRoutine {
1030
1029
  coach_id: string;
1031
1030
  username: null;
1031
+ hevy_trainer_program_id: null;
1032
1032
  }
1033
1033
  export interface CoachAndCoachsClientsRoutineSyncResponse {
1034
1034
  updated: BaseRoutine[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hevy-shared",
3
- "version": "1.0.677",
3
+ "version": "1.0.679",
4
4
  "description": "",
5
5
  "main": "built/index.js",
6
6
  "types": "built/index.d.ts",