garmin-cli 2.1.0

CLI for Garmin Connect API - activities, health metrics, and more
Documentation
pub mod activities;
pub mod auth;
pub mod devices;
pub mod health;
pub mod profile;
pub mod sync;
pub mod weight;

pub use activities::{
    download as download_activity, get as get_activity, list as list_activities,
    note_clear as activity_note_clear, note_get as activity_note_get,
    note_set as activity_note_set, upload as upload_activity,
};
pub use auth::{login, logout, status};
pub use devices::{get as get_device, history as device_history, list as list_devices};
pub use health::{
    blood_pressure, body_battery, body_battery_range, calories, endurance_score, fitness_age,
    heart_rate, hill_score, hrv, hydration, insights, intensity_minutes, lactate_threshold,
    performance_summary, personal_records, race_predictions, respiration, sleep, sleep_range, spo2,
    steps, stress, stress_range, summary, training_readiness, training_readiness_range,
    training_status, training_status_range, vo2max,
};
pub use profile::{settings as show_settings, show as show_profile};
pub use sync::{clear as sync_clear, reset as sync_reset, run as sync_run, status as sync_status};
pub use weight::{add as add_weight, latest as latest_weight, list as list_weight};