@krampa/common 0.4.0 → 0.5.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/goal-types.d.ts +1 -1
- package/dist/goal-types.js +2 -2
- package/dist/goal-value-types.d.ts +1 -0
- package/package.json +1 -1
package/dist/goal-types.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export declare const GOAL_TYPES: {
|
|
|
10
10
|
readonly WORKOUT_CARDIO: "workout/cardio";
|
|
11
11
|
readonly WORKOUT_OTHER: "workout/other";
|
|
12
12
|
readonly ACHIEVEMENT_PR: "achievement/pr";
|
|
13
|
-
readonly
|
|
13
|
+
readonly STEPS_DAILY: "steps/daily";
|
|
14
14
|
readonly MEASUREMENT_BODY: "measurement/body";
|
|
15
15
|
readonly CUSTOM_OTHER: "custom/other";
|
|
16
16
|
};
|
package/dist/goal-types.js
CHANGED
|
@@ -17,7 +17,7 @@ exports.GOAL_TYPES = {
|
|
|
17
17
|
WORKOUT_OTHER: "workout/other",
|
|
18
18
|
// Achievement goals
|
|
19
19
|
ACHIEVEMENT_PR: "achievement/pr",
|
|
20
|
-
|
|
20
|
+
STEPS_DAILY: "steps/daily",
|
|
21
21
|
// Other
|
|
22
22
|
MEASUREMENT_BODY: "measurement/body",
|
|
23
23
|
CUSTOM_OTHER: "custom/other",
|
|
@@ -31,7 +31,7 @@ exports.GOAL_TYPE_VALUES = [
|
|
|
31
31
|
exports.GOAL_TYPES.WORKOUT_CARDIO,
|
|
32
32
|
exports.GOAL_TYPES.WORKOUT_OTHER,
|
|
33
33
|
exports.GOAL_TYPES.ACHIEVEMENT_PR,
|
|
34
|
-
exports.GOAL_TYPES.
|
|
34
|
+
exports.GOAL_TYPES.STEPS_DAILY,
|
|
35
35
|
exports.GOAL_TYPES.MEASUREMENT_BODY,
|
|
36
36
|
exports.GOAL_TYPES.CUSTOM_OTHER,
|
|
37
37
|
];
|