hevy-shared 1.0.679 → 1.0.680
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/built/index.d.ts +2 -2
- package/package.json +1 -1
package/built/index.d.ts
CHANGED
|
@@ -1017,11 +1017,11 @@ 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;
|
|
1022
1020
|
}
|
|
1023
1021
|
export interface HevyTrainerRoutine extends Routine {
|
|
1024
1022
|
hevy_trainer_program_id: string;
|
|
1023
|
+
program_id: null;
|
|
1024
|
+
coach_force_rpe_enabled: false;
|
|
1025
1025
|
folder_id: null;
|
|
1026
1026
|
}
|
|
1027
1027
|
export type CoachsShallowLibraryRoutine = Omit<BaseRoutine, 'exercises' | 'profile_pic' | 'hevy_trainer_program_id' | 'username'>;
|