hevy-shared 1.0.903 → 1.0.905

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 +12 -0
  2. package/package.json +1 -1
package/built/index.d.ts CHANGED
@@ -1915,3 +1915,15 @@ export interface ExerciseHistoryWorkout {
1915
1915
  export declare const supportedScopes: readonly ["read-workout", "modify-workout", "read-routine", "modify-routine", "unrestricted"];
1916
1916
  export type OAuthScope = Lookup<typeof supportedScopes>;
1917
1917
  export declare const isOAuthScope: (x: string) => x is OAuthScope;
1918
+ export interface MuscleGroupSetCount {
1919
+ muscleGroup: MuscleGroup;
1920
+ sets: number;
1921
+ }
1922
+ export interface WorkoutsBackofficeResponse {
1923
+ username: string;
1924
+ workouts: {
1925
+ id: string;
1926
+ name: string;
1927
+ media: WorkoutMedia[];
1928
+ }[];
1929
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hevy-shared",
3
- "version": "1.0.903",
3
+ "version": "1.0.905",
4
4
  "description": "",
5
5
  "main": "built/index.js",
6
6
  "types": "built/index.d.ts",