hevy-shared 1.0.1011 → 1.0.1012
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
CHANGED
|
@@ -2,7 +2,7 @@ import { InstructionsLanguage } from './exerciseLocaleUtils';
|
|
|
2
2
|
import { WorkoutDurationMinutes } from './hevyTrainer';
|
|
3
3
|
import { BugReportQuestionSchema, CreateBugReportRequestBodySchema, postEmailBackofficeSchema } from './schemas';
|
|
4
4
|
import { Language } from './translations';
|
|
5
|
-
import { Lookup } from './typeUtils';
|
|
5
|
+
import { Lookup, TODO } from './typeUtils';
|
|
6
6
|
import { z } from 'zod';
|
|
7
7
|
export * from './schemas';
|
|
8
8
|
export * from './constants';
|
|
@@ -888,7 +888,7 @@ export interface Workout {
|
|
|
888
888
|
biometrics?: WorkoutBiometrics;
|
|
889
889
|
is_biometrics_public: boolean;
|
|
890
890
|
trainer_program_id: string | undefined;
|
|
891
|
-
gym:
|
|
891
|
+
gym: TODO<Gym> | undefined;
|
|
892
892
|
}
|
|
893
893
|
export interface CustomExerciseImage {
|
|
894
894
|
type: 'image';
|
|
@@ -968,7 +968,7 @@ export interface PostWorkoutRequestWorkout {
|
|
|
968
968
|
biometrics?: WorkoutBiometrics;
|
|
969
969
|
is_biometrics_public: boolean;
|
|
970
970
|
trainer_program_id: string | undefined;
|
|
971
|
-
gym:
|
|
971
|
+
gym: TODO<Gym> | undefined;
|
|
972
972
|
}
|
|
973
973
|
export type WorkoutDataImporterReport = {
|
|
974
974
|
state: 'idle';
|
|
@@ -1633,17 +1633,6 @@ export type HomeGym = {
|
|
|
1633
1633
|
type: 'home';
|
|
1634
1634
|
};
|
|
1635
1635
|
export type Gym = CommercialGym | HomeGym;
|
|
1636
|
-
export type GymType = Gym['type'];
|
|
1637
|
-
export type WorkoutHomeGym = {
|
|
1638
|
-
type: 'home';
|
|
1639
|
-
};
|
|
1640
|
-
export type WorkoutCommercialGym = {
|
|
1641
|
-
type: 'commercial';
|
|
1642
|
-
id: string;
|
|
1643
|
-
name: string;
|
|
1644
|
-
city: string;
|
|
1645
|
-
};
|
|
1646
|
-
export type WorkoutGym = WorkoutCommercialGym | WorkoutHomeGym;
|
|
1647
1636
|
export interface StripePrice {
|
|
1648
1637
|
product_id: string;
|
|
1649
1638
|
billing_period: 'month' | 'year' | 'pay-once';
|
|
@@ -2020,12 +2009,16 @@ export interface ExerciseHistoryWorkout {
|
|
|
2020
2009
|
export declare const supportedScopes: readonly ["read-workout", "modify-workout", "read-routine", "modify-routine", "unrestricted"];
|
|
2021
2010
|
export type OAuthScope = Lookup<typeof supportedScopes>;
|
|
2022
2011
|
export declare const isOAuthScope: (x: string) => x is OAuthScope;
|
|
2012
|
+
export type WorkoutMediaBackoffice = WorkoutMedia & {
|
|
2013
|
+
deleted: boolean;
|
|
2014
|
+
notes?: string;
|
|
2015
|
+
};
|
|
2023
2016
|
export interface WorkoutsWithMediaBackofficeResponse {
|
|
2024
2017
|
username: string;
|
|
2025
2018
|
workouts: {
|
|
2026
2019
|
id: string;
|
|
2027
2020
|
name: string;
|
|
2028
|
-
media:
|
|
2021
|
+
media: WorkoutMediaBackoffice[];
|
|
2029
2022
|
}[];
|
|
2030
2023
|
}
|
|
2031
2024
|
export interface GetAccountsByEmailResponse {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ExerciseType, RPE, SetType, ShareToPlatform,
|
|
1
|
+
import { ExerciseType, Gym, RPE, SetType, ShareToPlatform, TODO, WorkoutBiometrics, WorkoutMedia, WorkoutVisibility } from '.';
|
|
2
2
|
/**
|
|
3
3
|
* Events are used to determine the start time, end time and duration of a
|
|
4
4
|
* `NormalizedWorkout`, in a way that can be persisted to disk.
|
|
@@ -36,7 +36,7 @@ export interface NormalizedWorkout {
|
|
|
36
36
|
clientId: string;
|
|
37
37
|
biometrics?: WorkoutBiometrics;
|
|
38
38
|
trainerProgramId: string | undefined;
|
|
39
|
-
gym:
|
|
39
|
+
gym: TODO<Gym> | undefined;
|
|
40
40
|
}
|
|
41
41
|
export interface NormalizedSet {
|
|
42
42
|
index: number;
|
package/built/typeUtils.d.ts
CHANGED
|
@@ -68,3 +68,9 @@ export declare const parseJSON: (...args: Parameters<typeof JSON.parse>) => unkn
|
|
|
68
68
|
*/
|
|
69
69
|
export declare const typeSafeIndex: <T>(array: T[], index: number) => T | undefined;
|
|
70
70
|
export declare const TODO: (message?: string) => never;
|
|
71
|
+
/**
|
|
72
|
+
* @deprecated Placeholder for avoiding cross-repo type issues due to merges.
|
|
73
|
+
* Meant to be replaced with the enclosed type T as the earliest possible dev
|
|
74
|
+
* convenience. DO NOT USE THIS IN PRODUCTION!
|
|
75
|
+
*/
|
|
76
|
+
export type TODO<T> = T & never;
|