@sargonpiraev/habitify-api-client
Version:
A TypeScript client for the Habitify API with complete type safety and modern developer experience.
33 lines (32 loc) • 1.21 kB
JavaScript
export var ActionStatus;
(function (ActionStatus) {
ActionStatus[ActionStatus["NotDoneYet"] = 0] = "NotDoneYet";
ActionStatus[ActionStatus["Done"] = 1] = "Done";
})(ActionStatus || (ActionStatus = {}));
export var MoodValue;
(function (MoodValue) {
MoodValue[MoodValue["Terrible"] = 1] = "Terrible";
MoodValue[MoodValue["Bad"] = 2] = "Bad";
MoodValue[MoodValue["Okay"] = 3] = "Okay";
MoodValue[MoodValue["Good"] = 4] = "Good";
MoodValue[MoodValue["Excellent"] = 5] = "Excellent";
})(MoodValue || (MoodValue = {}));
export var NoteType;
(function (NoteType) {
NoteType[NoteType["Text"] = 1] = "Text";
NoteType[NoteType["Image"] = 2] = "Image";
})(NoteType || (NoteType = {}));
export var LogMethod;
(function (LogMethod) {
LogMethod["Manual"] = "manual";
LogMethod["AppleHealth"] = "appleHealth";
LogMethod["GoogleFit"] = "googleFit";
LogMethod["SamsungHealth"] = "samsungHealth";
})(LogMethod || (LogMethod = {}));
export var TimeOfDay;
(function (TimeOfDay) {
TimeOfDay["Morning"] = "morning";
TimeOfDay["Afternoon"] = "afternoon";
TimeOfDay["Evening"] = "evening";
TimeOfDay["AnyTime"] = "any_time";
})(TimeOfDay || (TimeOfDay = {}));