fit-file-parser 4.0.2 → 5.0.1

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.
@@ -9,174 +9,219 @@ export type Unit<T extends string> = Record<T, {
9
9
  multiplier: number;
10
10
  offset: number;
11
11
  }>;
12
+ export type Activity = 'manual' | 'auto_multi_sport' | number;
13
+ export type ActivityClass = 'level_max' | 'level' | 'athlete' | number;
14
+ export type ActivityLevel = 'low' | 'medium' | 'high' | number;
15
+ export type ActivitySubtype = 'generic' | 'treadmill' | 'street' | 'trail' | 'track' | 'spin' | 'indoor_cycling' | 'road' | 'mountain' | 'downhill' | 'recumbent' | 'cyclocross' | 'hand_cycling' | 'track_cycling' | 'indoor_rowing' | 'elliptical' | 'stair_climbing' | 'lap_swimming' | 'open_water' | 'all' | number;
16
+ export type ActivityType = 'generic' | 'running' | 'cycling' | 'transition' | 'fitness_equipment' | 'swimming' | 'walking' | 'sedentary' | 'all' | number;
17
+ export type AnalogWatchfaceLayout = 'minimal' | 'traditional' | 'modern' | number;
18
+ export type AntChannelId = 'ant_device_number' | 'ant_device_type' | 'ant_transmission_type_lower_nibble' | 'ant_extended_device_number_upper_nibble' | number;
19
+ export type AntNetwork = 'public' | 'antplus' | 'antfs' | 'private' | number;
20
+ export type AntplusDeviceType = 'antfs' | 'bike_power' | 'environment_sensor_legacy' | 'multi_sport_speed_distance' | 'control' | 'fitness_equipment' | 'blood_pressure' | 'geocache_node' | 'light_electric_vehicle' | 'env_sensor' | 'racquet' | 'control_hub' | 'muscle_oxygen' | 'shifting' | 'bike_light_main' | 'bike_light_shared' | 'exd' | 'bike_radar' | 'bike_aero' | 'weight_scale' | 'heart_rate' | 'bike_speed_cadence' | 'bike_cadence' | 'bike_speed' | 'stride_speed_distance' | number;
21
+ export type AttitudeStage = 'failed' | 'aligning' | 'degraded' | 'valid' | number;
22
+ export type AttitudeValidity = 'track_angle_heading_valid' | 'pitch_valid' | 'roll_valid' | 'lateral_body_accel_valid' | 'normal_body_accel_valid' | 'turn_rate_valid' | 'hw_fail' | 'mag_invalid' | 'no_gps' | 'gps_invalid' | 'solution_coasting' | 'true_track_angle' | 'magnetic_heading' | number;
23
+ export type AutoActivityDetect = 'none' | 'running' | 'cycling' | 'swimming' | 'walking' | 'elliptical' | 'sedentary' | number;
24
+ export type AutolapTrigger = 'time' | 'distance' | 'position_start' | 'position_lap' | 'position_waypoint' | 'position_marked' | 'off' | 'auto_select' | number;
25
+ export type Autoscroll = 'none' | 'slow' | 'medium' | 'fast' | number;
26
+ export type AutoSyncFrequency = 'never' | 'occasionally' | 'frequent' | 'once_a_day' | 'remote' | number;
27
+ export type BacklightMode = 'off' | 'manual' | 'key_and_messages' | 'auto_brightness' | 'smart_notifications' | 'key_and_messages_night' | 'key_and_messages_and_smart_notifications' | number;
28
+ export type BacklightTimeout = 'infinite' | number;
29
+ export type BandedExercisesExerciseName = 'ab_twist' | 'back_extension' | 'bicycle_crunch' | 'calf_raises' | 'chest_press' | 'clam_shells' | 'curl' | 'deadbug' | 'deadlift' | 'donkey_kick' | 'external_rotation' | 'external_rotation_at90_degree_abduction' | 'face_pull' | 'fire_hydrant' | 'fly' | 'front_raise' | 'glute_bridge' | 'hamstring_curls' | 'high_plank_leg_lifts' | 'hip_extension' | 'internal_rotation' | 'jumping_jack' | 'kneeling_crunch' | 'lateral_band_walks' | 'lateral_raise' | 'latpull' | 'leg_abduction' | 'leg_adduction' | 'leg_extension' | 'lunge' | 'plank' | 'pull_apart' | 'push_ups' | 'reverse_crunch' | 'row' | 'shoulder_abduction' | 'shoulder_extension' | 'shoulder_external_rotation' | 'shoulder_flexion_to90_degrees' | 'side_plank_leg_lifts' | 'side_raise' | 'squat' | 'squat_to_press' | 'tricep_extension' | 'tricep_kickback' | 'upright_row' | 'wall_crawl_with_external_rotation' | 'lateral_raise_wheelchair' | 'triceps_extension_wheelchair' | 'chest_fly_incline_wheelchair' | 'chest_fly_decline_wheelchair' | 'pull_down_wheelchair' | 'straight_arm_pull_down_wheelchair' | 'curl_wheelchair' | 'overhead_curl_wheelchair' | 'face_pull_wheelchair' | 'around_the_world_wheelchair' | 'pull_apart_wheelchair' | 'side_curl_wheelchair' | 'overhead_press_wheelchair' | number;
30
+ export type BatteryStatus = 'new' | 'good' | 'ok' | 'low' | 'critical' | 'charging' | 'unknown' | number;
31
+ export type BattleRopeExerciseName = 'alternating_figure_eight' | 'alternating_jump_wave' | 'alternating_kneeling_to_standing_wave' | 'alternating_lunge_wave' | 'alternating_squat_wave' | 'alternating_wave' | 'alternating_wave_with_lateral_shuffle' | 'clap_wave' | 'double_arm_figure_eight' | 'double_arm_side_to_side_snake' | 'double_arm_side_wave' | 'double_arm_slam' | 'double_arm_wave' | 'grappler_toss' | 'hip_toss' | 'in_and_out_wave' | 'inside_circle' | 'jumping_jacks' | 'outside_circle' | 'rainbow' | 'side_plank_wave' | 'sidewinder' | 'sitting_russian_twist' | 'snake_wave' | 'split_jack' | 'stage_coach' | 'ultimate_warrior' | 'upper_cuts' | number;
32
+ export type BenchPressExerciseName = 'alternating_dumbbell_chest_press_on_swiss_ball' | 'barbell_bench_press' | 'barbell_board_bench_press' | 'barbell_floor_press' | 'close_grip_barbell_bench_press' | 'decline_dumbbell_bench_press' | 'dumbbell_bench_press' | 'dumbbell_floor_press' | 'incline_barbell_bench_press' | 'incline_dumbbell_bench_press' | 'incline_smith_machine_bench_press' | 'isometric_barbell_bench_press' | 'kettlebell_chest_press' | 'neutral_grip_dumbbell_bench_press' | 'neutral_grip_dumbbell_incline_bench_press' | 'one_arm_floor_press' | 'weighted_one_arm_floor_press' | 'partial_lockout' | 'reverse_grip_barbell_bench_press' | 'reverse_grip_incline_bench_press' | 'single_arm_cable_chest_press' | 'single_arm_dumbbell_bench_press' | 'smith_machine_bench_press' | 'swiss_ball_dumbbell_chest_press' | 'triple_stop_barbell_bench_press' | 'wide_grip_barbell_bench_press' | 'alternating_dumbbell_chest_press' | number;
33
+ export type BikeExerciseName = 'bike' | 'ride' | 'sprint' | number;
34
+ export type BikeLightBeamAngleMode = 'manual' | 'auto' | number;
35
+ export type BikeLightNetworkConfigType = 'auto' | 'individual' | 'high_visibility' | 'trail' | number;
36
+ export type BikeOutdoorExerciseName = 'bike' | number;
37
+ export type BleDeviceType = 'connected_gps' | 'heart_rate' | 'bike_power' | 'bike_speed_cadence' | 'bike_speed' | 'bike_cadence' | 'footpod' | 'bike_trainer' | number;
38
+ export type BodyLocation = 'left_leg' | 'left_calf' | 'left_shin' | 'left_hamstring' | 'left_quad' | 'left_glute' | 'right_leg' | 'right_calf' | 'right_shin' | 'right_hamstring' | 'right_quad' | 'right_glute' | 'torso_back' | 'left_lower_back' | 'left_upper_back' | 'right_lower_back' | 'right_upper_back' | 'torso_front' | 'left_abdomen' | 'left_chest' | 'right_abdomen' | 'right_chest' | 'left_arm' | 'left_shoulder' | 'left_bicep' | 'left_tricep' | 'left_brachioradialis' | 'left_forearm_extensors' | 'right_arm' | 'right_shoulder' | 'right_bicep' | 'right_tricep' | 'right_brachioradialis' | 'right_forearm_extensors' | 'neck' | 'throat' | 'waist_mid_back' | 'waist_front' | 'waist_left' | 'waist_right' | number;
39
+ export type BpStatus = 'no_error' | 'error_incomplete_data' | 'error_no_measurement' | 'error_data_out_of_range' | 'error_irregular_heart_rate' | number;
40
+ export type CalfRaiseExerciseName = '3_way_calf_raise' | '3_way_weighted_calf_raise' | '3_way_single_leg_calf_raise' | '3_way_weighted_single_leg_calf_raise' | 'donkey_calf_raise' | 'weighted_donkey_calf_raise' | 'seated_calf_raise' | 'weighted_seated_calf_raise' | 'seated_dumbbell_toe_raise' | 'single_leg_bent_knee_calf_raise' | 'weighted_single_leg_bent_knee_calf_raise' | 'single_leg_decline_push_up' | 'single_leg_donkey_calf_raise' | 'weighted_single_leg_donkey_calf_raise' | 'single_leg_hip_raise_with_knee_hold' | 'single_leg_standing_calf_raise' | 'single_leg_standing_dumbbell_calf_raise' | 'standing_barbell_calf_raise' | 'standing_calf_raise' | 'weighted_standing_calf_raise' | 'standing_dumbbell_calf_raise' | number;
41
+ export type CameraEventType = 'video_start' | 'video_split' | 'video_end' | 'photo_taken' | 'video_second_stream_start' | 'video_second_stream_split' | 'video_second_stream_end' | 'video_split_start' | 'video_second_stream_split_start' | 'video_pause' | 'video_second_stream_pause' | 'video_resume' | 'video_second_stream_resume' | number;
42
+ export type CameraOrientationType = 'camera_orientation0' | 'camera_orientation90' | 'camera_orientation180' | 'camera_orientation270' | number;
43
+ export type CardioExerciseName = 'bob_and_weave_circle' | 'weighted_bob_and_weave_circle' | 'cardio_core_crawl' | 'weighted_cardio_core_crawl' | 'double_under' | 'weighted_double_under' | 'jump_rope' | 'weighted_jump_rope' | 'jump_rope_crossover' | 'weighted_jump_rope_crossover' | 'jump_rope_jog' | 'weighted_jump_rope_jog' | 'jumping_jacks' | 'weighted_jumping_jacks' | 'ski_moguls' | 'weighted_ski_moguls' | 'split_jacks' | 'weighted_split_jacks' | 'squat_jacks' | 'weighted_squat_jacks' | 'triple_under' | 'weighted_triple_under' | 'elliptical' | 'spinning' | 'pole_paddle_forward_wheelchair' | 'pole_paddle_backward_wheelchair' | 'pole_handcycle_forward_wheelchair' | 'pole_handcycle_backward_wheelchair' | 'pole_rainbow_wheelchair' | 'double_punch_forward_wheelchair' | 'double_punch_down_wheelchair' | 'double_punch_sideways_wheelchair' | 'double_punch_up_wheelchair' | 'sit_ski_wheelchair' | 'sitting_jacks_wheelchair' | 'punch_forward_wheelchair' | 'punch_down_wheelchair' | 'punch_sideways_wheelchair' | 'punch_up_wheelchair' | 'punch_bag_wheelchair' | 'pole_dd_ff_uu_wheelchair' | 'butterfly_arms_wheelchair' | 'punch' | number;
44
+ export type CarryExerciseName = 'bar_holds' | 'farmers_walk' | 'farmers_walk_on_toes' | 'hex_dumbbell_hold' | 'overhead_carry' | 'dumbbell_waiter_carry' | 'farmers_carry_walk_lunge' | 'farmers_carry' | 'farmers_carry_on_toes' | number;
45
+ export type CcrSetpointSwitchMode = 'manual' | 'automatic' | number;
46
+ export type Checksum = 'clear' | 'ok' | number;
47
+ export type ChopExerciseName = 'cable_pull_through' | 'cable_rotational_lift' | 'cable_woodchop' | 'cross_chop_to_knee' | 'weighted_cross_chop_to_knee' | 'dumbbell_chop' | 'half_kneeling_rotation' | 'weighted_half_kneeling_rotation' | 'half_kneeling_rotational_chop' | 'half_kneeling_rotational_reverse_chop' | 'half_kneeling_stability_chop' | 'half_kneeling_stability_reverse_chop' | 'kneeling_rotational_chop' | 'kneeling_rotational_reverse_chop' | 'kneeling_stability_chop' | 'kneeling_woodchopper' | 'medicine_ball_wood_chops' | 'power_squat_chops' | 'weighted_power_squat_chops' | 'standing_rotational_chop' | 'standing_split_rotational_chop' | 'standing_split_rotational_reverse_chop' | 'standing_stability_reverse_chop' | number;
48
+ export type ClimbProEvent = 'approach' | 'start' | 'complete' | number;
49
+ export type CommTimeoutType = 'wildcard_pairing_timeout' | 'pairing_timeout' | 'connection_lost' | 'connection_timeout' | number;
50
+ export type ConnectivityCapabilities = 'bluetooth' | 'bluetooth_le' | 'ant' | 'activity_upload' | 'course_download' | 'workout_download' | 'live_track' | 'weather_conditions' | 'weather_alerts' | 'gps_ephemeris_download' | 'explicit_archive' | 'setup_incomplete' | 'continue_sync_after_software_update' | 'connect_iq_app_download' | 'golf_course_download' | 'device_initiates_sync' | 'connect_iq_watch_app_download' | 'connect_iq_widget_download' | 'connect_iq_watch_face_download' | 'connect_iq_data_field_download' | 'connect_iq_app_managment' | 'swing_sensor' | 'swing_sensor_remote' | 'incident_detection' | 'audio_prompts' | 'wifi_verification' | 'true_up' | 'find_my_watch' | 'remote_manual_sync' | 'live_track_auto_start' | 'live_track_messaging' | 'instant_input' | number;
51
+ export type CoreExerciseName = 'abs_jabs' | 'weighted_abs_jabs' | 'alternating_plate_reach' | 'barbell_rollout' | 'weighted_barbell_rollout' | 'body_bar_oblique_twist' | 'cable_core_press' | 'cable_side_bend' | 'side_bend' | 'weighted_side_bend' | 'crescent_circle' | 'weighted_crescent_circle' | 'cycling_russian_twist' | 'weighted_cycling_russian_twist' | 'elevated_feet_russian_twist' | 'weighted_elevated_feet_russian_twist' | 'half_turkish_get_up' | 'kettlebell_windmill' | 'kneeling_ab_wheel' | 'weighted_kneeling_ab_wheel' | 'modified_front_lever' | 'open_knee_tucks' | 'weighted_open_knee_tucks' | 'side_abs_leg_lift' | 'weighted_side_abs_leg_lift' | 'swiss_ball_jackknife' | 'weighted_swiss_ball_jackknife' | 'swiss_ball_pike' | 'weighted_swiss_ball_pike' | 'swiss_ball_rollout' | 'weighted_swiss_ball_rollout' | 'triangle_hip_press' | 'weighted_triangle_hip_press' | 'trx_suspended_jackknife' | 'weighted_trx_suspended_jackknife' | 'u_boat' | 'weighted_u_boat' | 'windmill_switches' | 'weighted_windmill_switches' | 'alternating_slide_out' | 'weighted_alternating_slide_out' | 'ghd_back_extensions' | 'weighted_ghd_back_extensions' | 'overhead_walk' | 'inchworm' | 'weighted_modified_front_lever' | 'russian_twist' | 'abdominal_leg_rotations' | 'arm_and_leg_extension_on_knees' | 'bicycle' | 'bicep_curl_with_leg_extension' | 'cat_cow' | 'corkscrew' | 'criss_cross' | 'criss_cross_with_ball' | 'double_leg_stretch' | 'knee_folds' | 'lower_lift' | 'neck_pull' | 'pelvic_clocks' | 'roll_over' | 'roll_up' | 'rolling' | 'rowing1' | 'rowing2' | 'scissors' | 'single_leg_circles' | 'single_leg_stretch' | 'snake_twist1_and2' | 'swan' | 'swimming' | 'teaser' | 'the_hundred' | 'bicep_curl_with_leg_extension_with_weights' | 'hanging_l_sit' | 'lower_lift_with_weights' | 'ring_l_sit' | 'rowing1_with_weights' | 'rowing2_with_weights' | 'scissors_with_weights' | 'single_leg_stretch_with_weights' | 'toes_to_elbows' | 'weighted_criss_cross' | 'weighted_double_leg_stretch' | 'weighted_the_hundred' | 'l_sit' | 'turkish_get_up' | 'weighted_ring_l_sit' | 'weighted_hanging_l_sit' | 'weighted_l_sit' | 'side_bend_low_wheelchair' | 'side_bend_mid_wheelchair' | 'side_bend_high_wheelchair' | 'seated_side_bend' | number;
52
+ export type CourseCapabilities = 'processed' | 'valid' | 'time' | 'distance' | 'position' | 'heart_rate' | 'power' | 'cadence' | 'training' | 'navigation' | 'bikeway' | 'aviation' | number;
53
+ export type CoursePoint = 'generic' | 'summit' | 'valley' | 'water' | 'food' | 'danger' | 'left' | 'right' | 'straight' | 'first_aid' | 'fourth_category' | 'third_category' | 'second_category' | 'first_category' | 'hors_category' | 'sprint' | 'left_fork' | 'right_fork' | 'middle_fork' | 'slight_left' | 'sharp_left' | 'slight_right' | 'sharp_right' | 'u_turn' | 'segment_start' | 'segment_end' | 'campsite' | 'aid_station' | 'rest_area' | 'general_distance' | 'service' | 'energy_gel' | 'sports_drink' | 'mile_marker' | 'checkpoint' | 'shelter' | 'meeting_spot' | 'overlook' | 'toilet' | 'shower' | 'gear' | 'sharp_curve' | 'steep_incline' | 'tunnel' | 'bridge' | 'obstacle' | 'crossing' | 'store' | 'transition' | 'navaid' | 'transport' | 'alert' | 'info' | number;
54
+ export type CrunchExerciseName = 'bicycle_crunch' | 'cable_crunch' | 'circular_arm_crunch' | 'crossed_arms_crunch' | 'weighted_crossed_arms_crunch' | 'cross_leg_reverse_crunch' | 'weighted_cross_leg_reverse_crunch' | 'crunch_chop' | 'weighted_crunch_chop' | 'double_crunch' | 'weighted_double_crunch' | 'elbow_to_knee_crunch' | 'weighted_elbow_to_knee_crunch' | 'flutter_kicks' | 'weighted_flutter_kicks' | 'foam_roller_reverse_crunch_on_bench' | 'weighted_foam_roller_reverse_crunch_on_bench' | 'foam_roller_reverse_crunch_with_dumbbell' | 'foam_roller_reverse_crunch_with_medicine_ball' | 'frog_press' | 'hanging_knee_raise_oblique_crunch' | 'weighted_hanging_knee_raise_oblique_crunch' | 'hip_crossover' | 'weighted_hip_crossover' | 'hollow_rock' | 'weighted_hollow_rock' | 'incline_reverse_crunch' | 'weighted_incline_reverse_crunch' | 'kneeling_cable_crunch' | 'kneeling_cross_crunch' | 'weighted_kneeling_cross_crunch' | 'kneeling_oblique_cable_crunch' | 'knees_to_elbow' | 'leg_extensions' | 'weighted_leg_extensions' | 'leg_levers' | 'mcgill_curl_up' | 'weighted_mcgill_curl_up' | 'modified_pilates_roll_up_with_ball' | 'weighted_modified_pilates_roll_up_with_ball' | 'pilates_crunch' | 'weighted_pilates_crunch' | 'pilates_roll_up_with_ball' | 'weighted_pilates_roll_up_with_ball' | 'raised_legs_crunch' | 'weighted_raised_legs_crunch' | 'reverse_crunch' | 'weighted_reverse_crunch' | 'reverse_crunch_on_a_bench' | 'weighted_reverse_crunch_on_a_bench' | 'reverse_curl_and_lift' | 'weighted_reverse_curl_and_lift' | 'rotational_lift' | 'weighted_rotational_lift' | 'seated_alternating_reverse_crunch' | 'weighted_seated_alternating_reverse_crunch' | 'seated_leg_u' | 'weighted_seated_leg_u' | 'side_to_side_crunch_and_weave' | 'weighted_side_to_side_crunch_and_weave' | 'single_leg_reverse_crunch' | 'weighted_single_leg_reverse_crunch' | 'skater_crunch_cross' | 'weighted_skater_crunch_cross' | 'standing_cable_crunch' | 'standing_side_crunch' | 'step_climb' | 'weighted_step_climb' | 'swiss_ball_crunch' | 'swiss_ball_reverse_crunch' | 'weighted_swiss_ball_reverse_crunch' | 'swiss_ball_russian_twist' | 'weighted_swiss_ball_russian_twist' | 'swiss_ball_side_crunch' | 'weighted_swiss_ball_side_crunch' | 'thoracic_crunches_on_foam_roller' | 'weighted_thoracic_crunches_on_foam_roller' | 'triceps_crunch' | 'weighted_bicycle_crunch' | 'weighted_crunch' | 'weighted_swiss_ball_crunch' | 'toes_to_bar' | 'weighted_toes_to_bar' | 'crunch' | 'straight_leg_crunch_with_ball' | 'leg_climb_crunch' | number;
55
+ export type CurlExerciseName = 'alternating_dumbbell_biceps_curl' | 'alternating_dumbbell_biceps_curl_on_swiss_ball' | 'alternating_incline_dumbbell_biceps_curl' | 'barbell_biceps_curl' | 'barbell_reverse_wrist_curl' | 'barbell_wrist_curl' | 'behind_the_back_barbell_reverse_wrist_curl' | 'behind_the_back_one_arm_cable_curl' | 'cable_biceps_curl' | 'cable_hammer_curl' | 'cheating_barbell_biceps_curl' | 'close_grip_ez_bar_biceps_curl' | 'cross_body_dumbbell_hammer_curl' | 'dead_hang_biceps_curl' | 'decline_hammer_curl' | 'dumbbell_biceps_curl_with_static_hold' | 'dumbbell_hammer_curl' | 'dumbbell_reverse_wrist_curl' | 'dumbbell_wrist_curl' | 'ez_bar_preacher_curl' | 'forward_bend_biceps_curl' | 'hammer_curl_to_press' | 'incline_dumbbell_biceps_curl' | 'incline_offset_thumb_dumbbell_curl' | 'kettlebell_biceps_curl' | 'lying_concentration_cable_curl' | 'one_arm_preacher_curl' | 'plate_pinch_curl' | 'preacher_curl_with_cable' | 'reverse_ez_bar_curl' | 'reverse_grip_wrist_curl' | 'reverse_grip_barbell_biceps_curl' | 'seated_alternating_dumbbell_biceps_curl' | 'seated_dumbbell_biceps_curl' | 'seated_reverse_dumbbell_curl' | 'split_stance_offset_pinky_dumbbell_curl' | 'standing_alternating_dumbbell_curls' | 'standing_dumbbell_biceps_curl' | 'standing_ez_bar_biceps_curl' | 'static_curl' | 'swiss_ball_dumbbell_overhead_triceps_extension' | 'swiss_ball_ez_bar_preacher_curl' | 'twisting_standing_dumbbell_biceps_curl' | 'wide_grip_ez_bar_biceps_curl' | 'one_arm_concentration_curl' | 'standing_zottman_biceps_curl' | 'dumbbell_biceps_curl' | 'drag_curl_wheelchair' | 'dumbbell_biceps_curl_wheelchair' | 'bottle_curl' | 'seated_bottle_curl' | number;
56
+ export type DateMode = 'day_month' | 'month_day' | number;
57
+ export type DateTime = 'min' | number;
58
+ export type DayOfWeek = 'sunday' | 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday' | number;
59
+ export type DeadliftExerciseName = 'barbell_deadlift' | 'barbell_straight_leg_deadlift' | 'dumbbell_deadlift' | 'dumbbell_single_leg_deadlift_to_row' | 'dumbbell_straight_leg_deadlift' | 'kettlebell_floor_to_shelf' | 'one_arm_one_leg_deadlift' | 'rack_pull' | 'rotational_dumbbell_straight_leg_deadlift' | 'single_arm_deadlift' | 'single_leg_barbell_deadlift' | 'single_leg_barbell_straight_leg_deadlift' | 'single_leg_deadlift_with_barbell' | 'single_leg_rdl_circuit' | 'single_leg_romanian_deadlift_with_dumbbell' | 'sumo_deadlift' | 'sumo_deadlift_high_pull' | 'trap_bar_deadlift' | 'wide_grip_barbell_deadlift' | 'kettlebell_deadlift' | 'kettlebell_sumo_deadlift' | 'romanian_deadlift' | 'single_leg_romanian_deadlift_circuit' | 'straight_leg_deadlift' | number;
60
+ export type DeviceIndex = 'creator' | number;
61
+ export type DigitalWatchfaceLayout = 'traditional' | 'modern' | 'bold' | number;
62
+ export type DisplayHeart = 'bpm' | 'max' | 'reserve' | number;
63
+ export type DisplayMeasure = 'metric' | 'statute' | 'nautical' | number;
64
+ export type DisplayOrientation = 'auto' | 'portrait' | 'landscape' | 'portrait_flipped' | 'landscape_flipped' | number;
65
+ export type DisplayPosition = 'degree' | 'degree_minute' | 'degree_minute_second' | 'austrian_grid' | 'british_grid' | 'dutch_grid' | 'hungarian_grid' | 'finnish_grid' | 'german_grid' | 'icelandic_grid' | 'indonesian_equatorial' | 'indonesian_irian' | 'indonesian_southern' | 'india_zone0' | 'india_zone_ia' | 'india_zone_ib' | 'india_zone_iia' | 'india_zone_iib' | 'india_zone_iiia' | 'india_zone_iiib' | 'india_zone_iva' | 'india_zone_ivb' | 'irish_transverse' | 'irish_grid' | 'loran' | 'maidenhead_grid' | 'mgrs_grid' | 'new_zealand_grid' | 'new_zealand_transverse' | 'qatar_grid' | 'modified_swedish_grid' | 'swedish_grid' | 'south_african_grid' | 'swiss_grid' | 'taiwan_grid' | 'united_states_grid' | 'utm_ups_grid' | 'west_malayan' | 'borneo_rso' | 'estonian_grid' | 'latvian_grid' | 'swedish_ref99_grid' | number;
66
+ export type DisplayPower = 'watts' | 'percent_ftp' | number;
67
+ export type DiveAlarmType = 'depth' | 'time' | 'speed' | number;
68
+ export type DiveAlert = 'ndl_reached' | 'gas_switch_prompted' | 'near_surface' | 'approaching_ndl' | 'po2_warn' | 'po2_crit_high' | 'po2_crit_low' | 'time_alert' | 'depth_alert' | 'deco_ceiling_broken' | 'deco_complete' | 'safety_stop_broken' | 'safety_stop_complete' | 'cns_warning' | 'cns_critical' | 'otu_warning' | 'otu_critical' | 'ascent_critical' | 'alert_dismissed_by_key' | 'alert_dismissed_by_timeout' | 'battery_low' | 'battery_critical' | 'safety_stop_started' | 'approaching_first_deco_stop' | 'setpoint_switch_auto_low' | 'setpoint_switch_auto_high' | 'setpoint_switch_manual_low' | 'setpoint_switch_manual_high' | 'auto_setpoint_switch_ignored' | 'switched_to_open_circuit' | 'switched_to_closed_circuit' | 'tank_battery_low' | 'po2_ccr_dil_low' | 'deco_stop_cleared' | 'apnea_neutral_buoyancy' | 'apnea_target_depth' | 'apnea_surface' | 'apnea_high_speed' | 'apnea_low_speed' | number;
69
+ export type DiveBacklightMode = 'at_depth' | 'always_on' | number;
70
+ export type DiveGasMode = 'open_circuit' | 'closed_circuit_diluent' | number;
71
+ export type DiveGasStatus = 'disabled' | 'enabled' | 'backup_only' | number;
72
+ export type EllipticalExerciseName = 'elliptical' | number;
73
+ export type Event = 'timer' | 'workout' | 'workout_step' | 'power_down' | 'power_up' | 'off_course' | 'session' | 'lap' | 'course_point' | 'battery' | 'virtual_partner_pace' | 'hr_high_alert' | 'hr_low_alert' | 'speed_high_alert' | 'speed_low_alert' | 'cad_high_alert' | 'cad_low_alert' | 'power_high_alert' | 'power_low_alert' | 'recovery_hr' | 'battery_low' | 'time_duration_alert' | 'distance_duration_alert' | 'calorie_duration_alert' | 'activity' | 'fitness_equipment' | 'length' | 'user_marker' | 'sport_point' | 'calibration' | 'front_gear_change' | 'rear_gear_change' | 'rider_position_change' | 'elev_high_alert' | 'elev_low_alert' | 'comm_timeout' | 'auto_activity_detect' | 'dive_alert' | 'dive_gas_switched' | 'tank_pressure_reserve' | 'tank_pressure_critical' | 'tank_lost' | 'radar_threat_alert' | 'tank_battery_low' | 'tank_pod_connected' | 'tank_pod_disconnected' | number;
74
+ export type EventType = 'start' | 'stop' | 'consecutive_depreciated' | 'marker' | 'stop_all' | 'begin_depreciated' | 'end_depreciated' | 'end_all_depreciated' | 'stop_disable' | 'stop_disable_all' | number;
75
+ export type ExdDataUnits = 'no_units' | 'laps' | 'miles_per_hour' | 'kilometers_per_hour' | 'feet_per_hour' | 'meters_per_hour' | 'degrees_celsius' | 'degrees_farenheit' | 'zone' | 'gear' | 'rpm' | 'bpm' | 'degrees' | 'millimeters' | 'meters' | 'kilometers' | 'feet' | 'yards' | 'kilofeet' | 'miles' | 'time' | 'enum_turn_type' | 'percent' | 'watts' | 'watts_per_kilogram' | 'enum_battery_status' | 'enum_bike_light_beam_angle_mode' | 'enum_bike_light_battery_status' | 'enum_bike_light_network_config_type' | 'lights' | 'seconds' | 'minutes' | 'hours' | 'calories' | 'kilojoules' | 'milliseconds' | 'second_per_mile' | 'second_per_kilometer' | 'centimeter' | 'enum_course_point' | 'bradians' | 'enum_sport' | 'inches_hg' | 'mm_hg' | 'mbars' | 'hecto_pascals' | 'feet_per_min' | 'meters_per_min' | 'meters_per_sec' | 'eight_cardinal' | number;
76
+ export type ExdDescriptors = 'bike_light_battery_status' | 'beam_angle_status' | 'batery_level' | 'light_network_mode' | 'number_lights_connected' | 'cadence' | 'distance' | 'estimated_time_of_arrival' | 'heading' | 'time' | 'battery_level' | 'trainer_resistance' | 'trainer_target_power' | 'time_seated' | 'time_standing' | 'elevation' | 'grade' | 'ascent' | 'descent' | 'vertical_speed' | 'di2_battery_level' | 'front_gear' | 'rear_gear' | 'gear_ratio' | 'heart_rate' | 'heart_rate_zone' | 'time_in_heart_rate_zone' | 'heart_rate_reserve' | 'calories' | 'gps_accuracy' | 'gps_signal_strength' | 'temperature' | 'time_of_day' | 'balance' | 'pedal_smoothness' | 'power' | 'functional_threshold_power' | 'intensity_factor' | 'work' | 'power_ratio' | 'normalized_power' | 'training_stress_score' | 'time_on_zone' | 'speed' | 'laps' | 'reps' | 'workout_step' | 'course_distance' | 'navigation_distance' | 'course_estimated_time_of_arrival' | 'navigation_estimated_time_of_arrival' | 'course_time' | 'navigation_time' | 'course_heading' | 'navigation_heading' | 'power_zone' | 'torque_effectiveness' | 'timer_time' | 'power_weight_ratio' | 'left_platform_center_offset' | 'right_platform_center_offset' | 'left_power_phase_start_angle' | 'right_power_phase_start_angle' | 'left_power_phase_finish_angle' | 'right_power_phase_finish_angle' | 'gears' | 'pace' | 'training_effect' | 'vertical_oscillation' | 'vertical_ratio' | 'ground_contact_time' | 'left_ground_contact_time_balance' | 'right_ground_contact_time_balance' | 'stride_length' | 'running_cadence' | 'performance_condition' | 'course_type' | 'time_in_power_zone' | 'navigation_turn' | 'course_location' | 'navigation_location' | 'compass' | 'gear_combo' | 'muscle_oxygen' | 'icon' | 'compass_heading' | 'gps_heading' | 'gps_elevation' | 'anaerobic_training_effect' | 'course' | 'off_course' | 'glide_ratio' | 'vertical_distance' | 'vmg' | 'ambient_pressure' | 'pressure' | 'vam' | number;
77
+ export type ExdDisplayType = 'numerical' | 'simple' | 'graph' | 'bar' | 'circle_graph' | 'virtual_partner' | 'balance' | 'string_list' | 'string' | 'simple_dynamic_icon' | 'gauge' | number;
78
+ export type ExdLayout = 'full_screen' | 'half_vertical' | 'half_horizontal' | 'half_vertical_right_split' | 'half_horizontal_bottom_split' | 'full_quarter_split' | 'half_vertical_left_split' | 'half_horizontal_top_split' | 'dynamic' | number;
79
+ export type ExdQualifiers = 'no_qualifier' | 'instantaneous' | 'average' | 'lap' | 'maximum' | 'maximum_average' | 'maximum_lap' | 'last_lap' | 'average_lap' | 'to_destination' | 'to_go' | 'to_next' | 'next_course_point' | 'total' | 'three_second_average' | 'ten_second_average' | 'thirty_second_average' | 'percent_maximum' | 'percent_maximum_average' | 'lap_percent_maximum' | 'elapsed' | 'sunrise' | 'sunset' | 'compared_to_virtual_partner' | 'maximum24h' | 'minimum24h' | 'minimum' | 'first' | 'second' | 'third' | 'shifter' | 'last_sport' | 'moving' | 'stopped' | 'estimated_total' | 'zone9' | 'zone8' | 'zone7' | 'zone6' | 'zone5' | 'zone4' | 'zone3' | 'zone2' | 'zone1' | number;
80
+ export type ExerciseCategory = 'bench_press' | 'calf_raise' | 'cardio' | 'carry' | 'chop' | 'core' | 'crunch' | 'curl' | 'deadlift' | 'flye' | 'hip_raise' | 'hip_stability' | 'hip_swing' | 'hyperextension' | 'lateral_raise' | 'leg_curl' | 'leg_raise' | 'lunge' | 'olympic_lift' | 'plank' | 'plyo' | 'pull_up' | 'push_up' | 'row' | 'shoulder_press' | 'shoulder_stability' | 'shrug' | 'sit_up' | 'squat' | 'total_body' | 'triceps_extension' | 'warm_up' | 'run' | 'bike' | 'cardio_sensors' | 'move' | 'pose' | 'banded_exercises' | 'battle_rope' | 'elliptical' | 'floor_climb' | 'indoor_bike' | 'indoor_row' | 'ladder' | 'sandbag' | 'sled' | 'sledge_hammer' | 'stair_stepper' | 'suspension' | 'tire' | 'run_indoor' | 'bike_outdoor' | 'unknown' | number;
81
+ export type FaveroProduct = 'assioma_uno' | 'assioma_duo' | number;
82
+ export type File = 'device' | 'settings' | 'sport' | 'activity' | 'workout' | 'course' | 'schedules' | 'weight' | 'totals' | 'goals' | 'blood_pressure' | 'monitoring_a' | 'activity_summary' | 'monitoring_daily' | 'monitoring_b' | 'segment' | 'segment_list' | 'exd_configuration' | 'mfg_range_min' | 'mfg_range_max' | number;
83
+ export type FileFlags = 'read' | 'write' | 'erase' | number;
84
+ export type FitBaseType = 'enum' | 'sint8' | 'uint8' | 'string' | 'uint8z' | 'byte' | 'sint16' | 'uint16' | 'sint32' | 'uint32' | 'float32' | 'float64' | 'uint16z' | 'uint32z' | 'sint64' | 'uint64' | 'uint64z' | number;
85
+ export type FitBaseUnit = 'other' | 'kilogram' | 'pound' | number;
86
+ export type FitnessEquipmentState = 'ready' | 'in_use' | 'paused' | 'unknown' | number;
87
+ export type FloorClimbExerciseName = 'floor_climb' | number;
88
+ export type FlyeExerciseName = 'cable_crossover' | 'decline_dumbbell_flye' | 'dumbbell_flye' | 'incline_dumbbell_flye' | 'kettlebell_flye' | 'kneeling_rear_flye' | 'single_arm_standing_cable_reverse_flye' | 'swiss_ball_dumbbell_flye' | 'arm_rotations' | 'hug_a_tree' | 'face_down_incline_reverse_flye' | 'incline_reverse_flye' | 'rear_delt_fly_wheelchair' | number;
89
+ export type GarminProduct = 'hrm1' | 'axh01' | 'axb01' | 'axb02' | 'hrm2ss' | 'dsi_alf02' | 'hrm3ss' | 'hrm_run_single_byte_product_id' | 'bsm' | 'bcm' | 'axs01' | 'hrm_tri_single_byte_product_id' | 'hrm4_run_single_byte_product_id' | 'fr225_single_byte_product_id' | 'gen3_bsm_single_byte_product_id' | 'gen3_bcm_single_byte_product_id' | 'hrm_fit_single_byte_product_id' | 'o_hr' | 'fr301_china' | 'fr301_japan' | 'fr301_korea' | 'fr301_taiwan' | 'fr405' | 'fr50' | 'fr405_japan' | 'fr60' | 'dsi_alf01' | 'fr310xt' | 'edge500' | 'fr110' | 'edge800' | 'edge500_taiwan' | 'edge500_japan' | 'chirp' | 'fr110_japan' | 'edge200' | 'fr910xt' | 'edge800_taiwan' | 'edge800_japan' | 'alf04' | 'fr610' | 'fr210_japan' | 'vector_ss' | 'vector_cp' | 'edge800_china' | 'edge500_china' | 'approach_g10' | 'fr610_japan' | 'edge500_korea' | 'fr70' | 'fr310xt4t' | 'amx' | 'fr10' | 'edge800_korea' | 'swim' | 'fr910xt_china' | 'fenix' | 'edge200_taiwan' | 'edge510' | 'edge810' | 'tempe' | 'fr910xt_japan' | 'fr620' | 'fr220' | 'fr910xt_korea' | 'fr10_japan' | 'edge810_japan' | 'virb_elite' | 'edge_touring' | 'edge510_japan' | 'hrm_tri' | 'hrm_run' | 'fr920xt' | 'edge510_asia' | 'edge810_china' | 'edge810_taiwan' | 'edge1000' | 'vivo_fit' | 'virb_remote' | 'vivo_ki' | 'fr15' | 'vivo_active' | 'edge510_korea' | 'fr620_japan' | 'fr620_china' | 'fr220_japan' | 'fr220_china' | 'approach_s6' | 'vivo_smart' | 'fenix2' | 'epix' | 'fenix3' | 'edge1000_taiwan' | 'edge1000_japan' | 'fr15_japan' | 'edge520' | 'edge1000_china' | 'fr620_russia' | 'fr220_russia' | 'vector_s' | 'edge1000_korea' | 'fr920xt_taiwan' | 'fr920xt_china' | 'fr920xt_japan' | 'virbx' | 'vivo_smart_apac' | 'etrex_touch' | 'edge25' | 'fr25' | 'vivo_fit2' | 'fr225' | 'fr630' | 'fr230' | 'fr735xt' | 'vivo_active_apac' | 'vector2' | 'vector2s' | 'virbxe' | 'fr620_taiwan' | 'fr220_taiwan' | 'truswing' | 'd2airvenu' | 'fenix3_china' | 'fenix3_twn' | 'varia_headlight' | 'varia_taillight_old' | 'edge_explore1000' | 'fr225_asia' | 'varia_radar_taillight' | 'varia_radar_display' | 'edge20' | 'edge520_asia' | 'edge520_japan' | 'd2_bravo' | 'approach_s20' | 'vivo_smart2' | 'edge1000_thai' | 'varia_remote' | 'edge25_asia' | 'edge25_jpn' | 'edge20_asia' | 'approach_x40' | 'fenix3_japan' | 'vivo_smart_emea' | 'fr630_asia' | 'fr630_jpn' | 'fr230_jpn' | 'hrm4_run' | 'epix_japan' | 'vivo_active_hr' | 'vivo_smart_gps_hr' | 'vivo_smart_hr' | 'vivo_smart_hr_asia' | 'vivo_smart_gps_hr_asia' | 'vivo_move' | 'varia_taillight' | 'fr235_asia' | 'fr235_japan' | 'varia_vision' | 'vivo_fit3' | 'fenix3_korea' | 'fenix3_sea' | 'fenix3_hr' | 'virb_ultra30' | 'index_smart_scale' | 'fr235' | 'fenix3_chronos' | 'oregon7xx' | 'rino7xx' | 'epix_korea' | 'fenix3_hr_chn' | 'fenix3_hr_twn' | 'fenix3_hr_jpn' | 'fenix3_hr_sea' | 'fenix3_hr_kor' | 'nautix' | 'vivo_active_hr_apac' | 'fr35' | 'oregon7xx_ww' | 'edge820' | 'edge_explore820' | 'fr735xt_apac' | 'fr735xt_japan' | 'fenix5s' | 'd2_bravo_titanium' | 'varia_ut800' | 'running_dynamics_pod' | 'edge820_china' | 'edge820_japan' | 'fenix5x' | 'vivo_fit_jr' | 'vivo_smart3' | 'vivo_sport' | 'edge820_taiwan' | 'edge820_korea' | 'edge820_sea' | 'fr35_hebrew' | 'approach_s60' | 'fr35_apac' | 'fr35_japan' | 'fenix3_chronos_asia' | 'virb360' | 'fr935' | 'fenix5' | 'vivoactive3' | 'edge1030' | 'fr35_sea' | 'fr235_china_nfc' | 'foretrex601_701' | 'vivo_move_hr' | 'vector3' | 'fenix5_asia' | 'fenix5s_asia' | 'fenix5x_asia' | 'approach_z80' | 'fr35_korea' | 'd2charlie' | 'vivo_smart3_apac' | 'vivo_sport_apac' | 'fr935_asia' | 'descent' | 'vivo_fit4' | 'fr645' | 'fr645m' | 'fr30' | 'fenix5s_plus' | 'edge130' | 'edge1030_asia' | 'vivosmart4' | 'vivo_move_hr_asia' | 'approach_x10' | 'fr30_asia' | 'vivoactive3m_w' | 'fr645_asia' | 'fr645m_asia' | 'edge_explore' | 'gpsmap66' | 'approach_s10' | 'vivoactive3m_l' | 'fr245' | 'fr245_music' | 'approach_g80' | 'edge130_asia' | 'edge1030_bontrager' | 'fenix5_plus' | 'fenix5x_plus' | 'edge520_plus' | 'fr945' | 'edge530' | 'edge830' | 'instinct_esports' | 'fenix5s_plus_apac' | 'fenix5x_plus_apac' | 'edge520_plus_apac' | 'descent_t1' | 'fr235l_asia' | 'fr245_asia' | 'vivo_active3m_apac' | 'gen3_bsm' | 'gen3_bcm' | 'vivo_smart4_asia' | 'vivoactive4_small' | 'vivoactive4_large' | 'venu' | 'marq_driver' | 'marq_aviator' | 'marq_captain' | 'marq_commander' | 'marq_expedition' | 'marq_athlete' | 'descent_mk2' | 'fr45' | 'gpsmap66i' | 'fenix6_s_sport' | 'fenix6_s' | 'fenix6_sport' | 'fenix6' | 'fenix6x' | 'hrm_dual' | 'hrm_pro' | 'vivo_move3_premium' | 'approach_s40' | 'fr245m_asia' | 'edge530_apac' | 'edge830_apac' | 'vivo_move3' | 'vivo_active4_small_asia' | 'vivo_active4_large_asia' | 'vivo_active4_oled_asia' | 'swim2' | 'marq_driver_asia' | 'marq_aviator_asia' | 'vivo_move3_asia' | 'fr945_asia' | 'vivo_active3t_chn' | 'marq_captain_asia' | 'marq_commander_asia' | 'marq_expedition_asia' | 'marq_athlete_asia' | 'index_smart_scale2' | 'instinct_solar' | 'fr45_asia' | 'vivoactive3_daimler' | 'legacy_rey' | 'legacy_darth_vader' | 'legacy_captain_marvel' | 'legacy_first_avenger' | 'fenix6s_sport_asia' | 'fenix6s_asia' | 'fenix6_sport_asia' | 'fenix6_asia' | 'fenix6x_asia' | 'legacy_captain_marvel_asia' | 'legacy_first_avenger_asia' | 'legacy_rey_asia' | 'legacy_darth_vader_asia' | 'descent_mk2s' | 'edge130_plus' | 'edge1030_plus' | 'rally200' | 'fr745' | 'venusq_music' | 'venusq_music_v2' | 'venusq' | 'lily' | 'marq_adventurer' | 'enduro' | 'swim2_apac' | 'marq_adventurer_asia' | 'fr945_lte' | 'descent_mk2_asia' | 'venu2' | 'venu2s' | 'venu_daimler_asia' | 'marq_golfer' | 'venu_daimler' | 'fr745_asia' | 'varia_rct715' | 'lily_asia' | 'edge1030_plus_asia' | 'edge130_plus_asia' | 'approach_s12' | 'venusq_asia' | 'edge1040' | 'marq_golfer_asia' | 'venu2_plus' | 'gnss' | 'fr55' | 'enduro_asia' | 'instinct2' | 'instinct2s' | 'fenix7s' | 'fenix7' | 'fenix7x' | 'fenix7s_apac' | 'fenix7_apac' | 'fenix7x_apac' | 'approach_g12' | 'descent_mk2s_asia' | 'approach_s42' | 'epix_gen2' | 'epix_gen2_apac' | 'venu2s_asia' | 'venu2_asia' | 'fr945_lte_asia' | 'vivo_move_sport' | 'vivomove_trend' | 'approach_s12_asia' | 'fr255_music' | 'fr255_small_music' | 'fr255' | 'fr255_small' | 'approach_g12_asia' | 'approach_s42_asia' | 'descent_g1' | 'venu2_plus_asia' | 'fr955' | 'fr55_asia' | 'edge540' | 'edge840' | 'vivosmart5' | 'instinct2_asia' | 'marq_gen2' | 'venusq2' | 'venusq2music' | 'marq_gen2_aviator' | 'd2_air_x10' | 'hrm_pro_plus' | 'descent_g1_asia' | 'tactix7' | 'instinct_crossover' | 'edge_explore2' | 'descent_mk3' | 'descent_mk3i' | 'approach_s70' | 'fr265_large' | 'fr265_small' | 'venu3' | 'venu3s' | 'tacx_neo_smart' | 'tacx_neo2_smart' | 'tacx_neo2_t_smart' | 'tacx_neo_smart_bike' | 'tacx_satori_smart' | 'tacx_flow_smart' | 'tacx_vortex_smart' | 'tacx_bushido_smart' | 'tacx_genius_smart' | 'tacx_flux_flux_s_smart' | 'tacx_flux2_smart' | 'tacx_magnum' | 'edge1040_asia' | 'epix_gen2_pro42' | 'epix_gen2_pro47' | 'epix_gen2_pro51' | 'fr965' | 'enduro2' | 'fenix7s_pro_solar' | 'fenix7_pro_solar' | 'fenix7x_pro_solar' | 'lily2' | 'instinct2x' | 'vivoactive5' | 'fr165' | 'fr165_music' | 'edge1050' | 'descent_t2' | 'hrm_fit' | 'marq_gen2_commander' | 'lily_athlete' | 'rally_x10' | 'fenix8_solar' | 'fenix8_solar_large' | 'fenix8_small' | 'fenix8' | 'd2_mach1_pro' | 'enduro3' | 'instinct_e40mm' | 'instinct_e45mm' | 'instinct3_solar45mm' | 'instinct3_amoled45mm' | 'instinct3_amoled50mm' | 'descent_g2' | 'venu_x1' | 'hrm200' | 'vivoactive6' | 'fenix8_pro' | 'edge550' | 'edge850' | 'venu4' | 'venu4s' | 'approach_s44' | 'edge_mtb' | 'approach_s50' | 'fenix_e' | 'instinct_crossover_amoled' | 'bounce2' | 'instinct3_solar50mm' | 'tactix8_amoled' | 'tactix8_solar' | 'fr170_music' | 'fr170' | 'approach_j1' | 'd2_mach2' | 'fr702026' | 'd2_air_x15' | 'd2_mach2_pro' | 'sdm4' | 'edge_remote' | 'training_center' | 'tacx_training_app_win' | 'tacx_training_app_mac' | 'tacx_training_app_mac_catalyst' | 'tacx_training_app_android' | 'tacx_training_app_ios' | 'tacx_training_app_legacy' | 'connectiq_simulator' | 'android_antplus_plugin' | 'connect' | number;
90
+ export type GasConsumptionRateType = 'pressure_sac' | 'volume_sac' | 'rmv' | number;
91
+ export type Gender = 'female' | 'male' | number;
92
+ export type Goal = 'time' | 'distance' | 'calories' | 'frequency' | 'steps' | 'ascent' | 'active_minutes' | number;
93
+ export type GoalRecurrence = 'off' | 'daily' | 'weekly' | 'monthly' | 'yearly' | 'custom' | number;
94
+ export type GoalSource = 'auto' | 'community' | 'user' | number;
95
+ export type HipRaiseExerciseName = 'barbell_hip_thrust_on_floor' | 'barbell_hip_thrust_with_bench' | 'bent_knee_swiss_ball_reverse_hip_raise' | 'weighted_bent_knee_swiss_ball_reverse_hip_raise' | 'bridge_with_leg_extension' | 'weighted_bridge_with_leg_extension' | 'clam_bridge' | 'front_kick_tabletop' | 'weighted_front_kick_tabletop' | 'hip_extension_and_cross' | 'weighted_hip_extension_and_cross' | 'hip_raise' | 'weighted_hip_raise' | 'hip_raise_with_feet_on_swiss_ball' | 'weighted_hip_raise_with_feet_on_swiss_ball' | 'hip_raise_with_head_on_bosu_ball' | 'weighted_hip_raise_with_head_on_bosu_ball' | 'hip_raise_with_head_on_swiss_ball' | 'weighted_hip_raise_with_head_on_swiss_ball' | 'hip_raise_with_knee_squeeze' | 'weighted_hip_raise_with_knee_squeeze' | 'incline_rear_leg_extension' | 'weighted_incline_rear_leg_extension' | 'kettlebell_swing' | 'marching_hip_raise' | 'weighted_marching_hip_raise' | 'marching_hip_raise_with_feet_on_a_swiss_ball' | 'weighted_marching_hip_raise_with_feet_on_a_swiss_ball' | 'reverse_hip_raise' | 'weighted_reverse_hip_raise' | 'single_leg_hip_raise' | 'weighted_single_leg_hip_raise' | 'single_leg_hip_raise_with_foot_on_bench' | 'weighted_single_leg_hip_raise_with_foot_on_bench' | 'single_leg_hip_raise_with_foot_on_bosu_ball' | 'weighted_single_leg_hip_raise_with_foot_on_bosu_ball' | 'single_leg_hip_raise_with_foot_on_foam_roller' | 'weighted_single_leg_hip_raise_with_foot_on_foam_roller' | 'single_leg_hip_raise_with_foot_on_medicine_ball' | 'weighted_single_leg_hip_raise_with_foot_on_medicine_ball' | 'single_leg_hip_raise_with_head_on_bosu_ball' | 'weighted_single_leg_hip_raise_with_head_on_bosu_ball' | 'weighted_clam_bridge' | 'single_leg_swiss_ball_hip_raise_and_leg_curl' | 'clams' | 'inner_thigh_circles' | 'inner_thigh_side_lift' | 'leg_circles' | 'leg_lift' | 'leg_lift_in_external_rotation' | number;
96
+ export type HipStabilityExerciseName = 'band_side_lying_leg_raise' | 'dead_bug' | 'weighted_dead_bug' | 'external_hip_raise' | 'weighted_external_hip_raise' | 'fire_hydrant_kicks' | 'weighted_fire_hydrant_kicks' | 'hip_circles' | 'weighted_hip_circles' | 'inner_thigh_lift' | 'weighted_inner_thigh_lift' | 'lateral_walks_with_band_at_ankles' | 'pretzel_side_kick' | 'weighted_pretzel_side_kick' | 'prone_hip_internal_rotation' | 'weighted_prone_hip_internal_rotation' | 'quadruped' | 'quadruped_hip_extension' | 'weighted_quadruped_hip_extension' | 'quadruped_with_leg_lift' | 'weighted_quadruped_with_leg_lift' | 'side_lying_leg_raise' | 'weighted_side_lying_leg_raise' | 'sliding_hip_adduction' | 'weighted_sliding_hip_adduction' | 'standing_adduction' | 'weighted_standing_adduction' | 'standing_cable_hip_abduction' | 'standing_hip_abduction' | 'weighted_standing_hip_abduction' | 'standing_rear_leg_raise' | 'weighted_standing_rear_leg_raise' | 'supine_hip_internal_rotation' | 'weighted_supine_hip_internal_rotation' | 'lying_abduction_stretch' | number;
97
+ export type HipSwingExerciseName = 'single_arm_kettlebell_swing' | 'single_arm_dumbbell_swing' | 'step_out_swing' | 'one_arm_swing' | number;
98
+ export type HrType = 'normal' | 'irregular' | number;
99
+ export type HrvStatus = 'none' | 'poor' | 'low' | 'unbalanced' | 'balanced' | number;
100
+ export type HrZoneCalc = 'custom' | 'percent_max_hr' | 'percent_hrr' | 'percent_lthr' | number;
101
+ export type HyperextensionExerciseName = 'back_extension_with_opposite_arm_and_leg_reach' | 'weighted_back_extension_with_opposite_arm_and_leg_reach' | 'base_rotations' | 'weighted_base_rotations' | 'bent_knee_reverse_hyperextension' | 'weighted_bent_knee_reverse_hyperextension' | 'hollow_hold_and_roll' | 'weighted_hollow_hold_and_roll' | 'kicks' | 'weighted_kicks' | 'knee_raises' | 'weighted_knee_raises' | 'kneeling_superman' | 'weighted_kneeling_superman' | 'lat_pull_down_with_row' | 'medicine_ball_deadlift_to_reach' | 'one_arm_one_leg_row' | 'one_arm_row_with_band' | 'overhead_lunge_with_medicine_ball' | 'plank_knee_tucks' | 'weighted_plank_knee_tucks' | 'side_step' | 'weighted_side_step' | 'single_leg_back_extension' | 'weighted_single_leg_back_extension' | 'spine_extension' | 'weighted_spine_extension' | 'static_back_extension' | 'weighted_static_back_extension' | 'superman_from_floor' | 'weighted_superman_from_floor' | 'swiss_ball_back_extension' | 'weighted_swiss_ball_back_extension' | 'swiss_ball_hyperextension' | 'weighted_swiss_ball_hyperextension' | 'swiss_ball_opposite_arm_and_leg_lift' | 'weighted_swiss_ball_opposite_arm_and_leg_lift' | 'superman_on_swiss_ball' | 'cobra' | 'supine_floor_barre' | number;
102
+ export type IndoorBikeExerciseName = 'air_bike' | 'assault_bike' | 'stationary_bike' | number;
103
+ export type IndoorRowExerciseName = 'rowing_machine' | number;
104
+ export type Intensity = 'active' | 'rest' | 'warmup' | 'cooldown' | 'recovery' | 'interval' | 'other' | number;
105
+ export type LadderExerciseName = 'agility' | 'speed' | number;
106
+ export type Language = 'english' | 'french' | 'italian' | 'german' | 'spanish' | 'croatian' | 'czech' | 'danish' | 'dutch' | 'finnish' | 'greek' | 'hungarian' | 'norwegian' | 'polish' | 'portuguese' | 'slovakian' | 'slovenian' | 'swedish' | 'russian' | 'turkish' | 'latvian' | 'ukrainian' | 'arabic' | 'farsi' | 'bulgarian' | 'romanian' | 'chinese' | 'japanese' | 'korean' | 'taiwanese' | 'thai' | 'hebrew' | 'brazilian_portuguese' | 'indonesian' | 'malaysian' | 'vietnamese' | 'burmese' | 'mongolian' | 'custom' | number;
107
+ export type LanguageBits0 = 'english' | 'french' | 'italian' | 'german' | 'spanish' | 'croatian' | 'czech' | 'danish' | number;
108
+ export type LanguageBits1 = 'dutch' | 'finnish' | 'greek' | 'hungarian' | 'norwegian' | 'polish' | 'portuguese' | 'slovakian' | number;
109
+ export type LanguageBits2 = 'slovenian' | 'swedish' | 'russian' | 'turkish' | 'latvian' | 'ukrainian' | 'arabic' | 'farsi' | number;
110
+ export type LanguageBits3 = 'bulgarian' | 'romanian' | 'chinese' | 'japanese' | 'korean' | 'taiwanese' | 'thai' | 'hebrew' | number;
111
+ export type LanguageBits4 = 'brazilian_portuguese' | 'indonesian' | 'malaysian' | 'vietnamese' | 'burmese' | 'mongolian' | number;
112
+ export type LapTrigger = 'manual' | 'time' | 'distance' | 'position_start' | 'position_lap' | 'position_waypoint' | 'position_marked' | 'session_end' | 'fitness_equipment' | number;
113
+ export type LateralRaiseExerciseName = '45_degree_cable_external_rotation' | 'alternating_lateral_raise_with_static_hold' | 'bar_muscle_up' | 'bent_over_lateral_raise' | 'cable_diagonal_raise' | 'cable_front_raise' | 'calorie_row' | 'combo_shoulder_raise' | 'dumbbell_diagonal_raise' | 'dumbbell_v_raise' | 'front_raise' | 'leaning_dumbbell_lateral_raise' | 'lying_dumbbell_raise' | 'muscle_up' | 'one_arm_cable_lateral_raise' | 'overhand_grip_rear_lateral_raise' | 'plate_raises' | 'ring_dip' | 'weighted_ring_dip' | 'ring_muscle_up' | 'weighted_ring_muscle_up' | 'rope_climb' | 'weighted_rope_climb' | 'scaption' | 'seated_lateral_raise' | 'seated_rear_lateral_raise' | 'side_lying_lateral_raise' | 'standing_lift' | 'suspended_row' | 'underhand_grip_rear_lateral_raise' | 'wall_slide' | 'weighted_wall_slide' | 'arm_circles' | 'shaving_the_head' | 'dumbbell_lateral_raise' | 'ring_dip_kipping' | 'wall_walk' | 'dumbbell_front_raise_wheelchair' | 'dumbbell_lateral_raise_wheelchair' | 'pole_double_arm_overhead_and_forward_wheelchair' | 'pole_straight_arm_overhead_wheelchair' | number;
114
+ export interface LeftRightBalance {
115
+ value: number;
116
+ right: boolean;
117
+ }
118
+ export interface LeftRightBalance100 {
119
+ value: number;
120
+ right: boolean;
121
+ }
122
+ export type LegCurlExerciseName = 'leg_curl' | 'weighted_leg_curl' | 'good_morning' | 'seated_barbell_good_morning' | 'single_leg_barbell_good_morning' | 'single_leg_sliding_leg_curl' | 'sliding_leg_curl' | 'split_barbell_good_morning' | 'split_stance_extension' | 'staggered_stance_good_morning' | 'swiss_ball_hip_raise_and_leg_curl' | 'zercher_good_morning' | 'band_good_morning' | 'bar_good_morning' | number;
123
+ export type LegRaiseExerciseName = 'hanging_knee_raise' | 'hanging_leg_raise' | 'weighted_hanging_leg_raise' | 'hanging_single_leg_raise' | 'weighted_hanging_single_leg_raise' | 'kettlebell_leg_raises' | 'leg_lowering_drill' | 'weighted_leg_lowering_drill' | 'lying_straight_leg_raise' | 'weighted_lying_straight_leg_raise' | 'medicine_ball_leg_drops' | 'quadruped_leg_raise' | 'weighted_quadruped_leg_raise' | 'reverse_leg_raise' | 'weighted_reverse_leg_raise' | 'reverse_leg_raise_on_swiss_ball' | 'weighted_reverse_leg_raise_on_swiss_ball' | 'single_leg_lowering_drill' | 'weighted_single_leg_lowering_drill' | 'weighted_hanging_knee_raise' | 'lateral_stepover' | 'weighted_lateral_stepover' | number;
124
+ export type LengthType = 'idle' | 'active' | number;
125
+ export type LocalDateTime = 'min' | number;
126
+ export type LocalDeviceType = 'gps' | 'glonass' | 'gps_glonass' | 'accelerometer' | 'barometer' | 'temperature' | 'whr' | 'sensor_hub' | number;
127
+ export type LocaltimeIntoDay = number;
128
+ export type LungeExerciseName = 'overhead_lunge' | 'lunge_matrix' | 'weighted_lunge_matrix' | 'alternating_barbell_forward_lunge' | 'alternating_dumbbell_lunge_with_reach' | 'back_foot_elevated_dumbbell_split_squat' | 'barbell_box_lunge' | 'barbell_bulgarian_split_squat' | 'barbell_crossover_lunge' | 'barbell_front_split_squat' | 'barbell_lunge' | 'barbell_reverse_lunge' | 'barbell_side_lunge' | 'barbell_split_squat' | 'core_control_rear_lunge' | 'diagonal_lunge' | 'drop_lunge' | 'dumbbell_box_lunge' | 'dumbbell_bulgarian_split_squat' | 'dumbbell_crossover_lunge' | 'dumbbell_diagonal_lunge' | 'dumbbell_lunge' | 'dumbbell_lunge_and_rotation' | 'dumbbell_overhead_bulgarian_split_squat' | 'dumbbell_reverse_lunge_to_high_knee_and_press' | 'dumbbell_side_lunge' | 'elevated_front_foot_barbell_split_squat' | 'front_foot_elevated_dumbbell_split_squat' | 'gunslinger_lunge' | 'lawnmower_lunge' | 'low_lunge_with_isometric_adduction' | 'low_side_to_side_lunge' | 'lunge' | 'weighted_lunge' | 'lunge_with_arm_reach' | 'lunge_with_diagonal_reach' | 'lunge_with_side_bend' | 'offset_dumbbell_lunge' | 'offset_dumbbell_reverse_lunge' | 'overhead_bulgarian_split_squat' | 'overhead_dumbbell_reverse_lunge' | 'overhead_dumbbell_split_squat' | 'overhead_lunge_with_rotation' | 'reverse_barbell_box_lunge' | 'reverse_box_lunge' | 'reverse_dumbbell_box_lunge' | 'reverse_dumbbell_crossover_lunge' | 'reverse_dumbbell_diagonal_lunge' | 'reverse_lunge_with_reach_back' | 'weighted_reverse_lunge_with_reach_back' | 'reverse_lunge_with_twist_and_overhead_reach' | 'weighted_reverse_lunge_with_twist_and_overhead_reach' | 'reverse_sliding_box_lunge' | 'weighted_reverse_sliding_box_lunge' | 'reverse_sliding_lunge' | 'weighted_reverse_sliding_lunge' | 'runners_lunge_to_balance' | 'weighted_runners_lunge_to_balance' | 'shifting_side_lunge' | 'side_and_crossover_lunge' | 'weighted_side_and_crossover_lunge' | 'side_lunge' | 'weighted_side_lunge' | 'side_lunge_and_press' | 'side_lunge_jump_off' | 'side_lunge_sweep' | 'weighted_side_lunge_sweep' | 'side_lunge_to_crossover_tap' | 'weighted_side_lunge_to_crossover_tap' | 'side_to_side_lunge_chops' | 'weighted_side_to_side_lunge_chops' | 'siff_jump_lunge' | 'weighted_siff_jump_lunge' | 'single_arm_reverse_lunge_and_press' | 'sliding_lateral_lunge' | 'weighted_sliding_lateral_lunge' | 'walking_barbell_lunge' | 'walking_dumbbell_lunge' | 'walking_lunge' | 'weighted_walking_lunge' | 'wide_grip_overhead_barbell_split_squat' | 'alternating_dumbbell_lunge' | 'dumbbell_reverse_lunge' | 'overhead_dumbbell_lunge' | 'scissor_power_switch' | 'dumbbell_overhead_walking_lunge' | 'curtsy_lunge' | 'weighted_curtsy_lunge' | 'weighted_shifting_side_lunge' | 'weighted_side_lunge_and_press' | 'weighted_side_lunge_jump_off' | number;
129
+ export type Manufacturer = 'garmin' | 'garmin_fr405_antfs' | 'zephyr' | 'dayton' | 'idt' | 'srm' | 'quarq' | 'ibike' | 'saris' | 'spark_hk' | 'tanita' | 'echowell' | 'dynastream_oem' | 'nautilus' | 'dynastream' | 'timex' | 'metrigear' | 'xelic' | 'beurer' | 'cardiosport' | 'a_and_d' | 'hmm' | 'suunto' | 'thita_elektronik' | 'gpulse' | 'clean_mobile' | 'pedal_brain' | 'peaksware' | 'saxonar' | 'lemond_fitness' | 'dexcom' | 'wahoo_fitness' | 'octane_fitness' | 'archinoetics' | 'the_hurt_box' | 'citizen_systems' | 'magellan' | 'osynce' | 'holux' | 'concept2' | 'shimano' | 'one_giant_leap' | 'ace_sensor' | 'brim_brothers' | 'xplova' | 'perception_digital' | 'bf1systems' | 'pioneer' | 'spantec' | 'metalogics' | '4iiiis' | 'seiko_epson' | 'seiko_epson_oem' | 'ifor_powell' | 'maxwell_guider' | 'star_trac' | 'breakaway' | 'alatech_technology_ltd' | 'mio_technology_europe' | 'rotor' | 'geonaute' | 'id_bike' | 'specialized' | 'wtek' | 'physical_enterprises' | 'north_pole_engineering' | 'bkool' | 'cateye' | 'stages_cycling' | 'sigmasport' | 'tomtom' | 'peripedal' | 'wattbike' | 'moxy' | 'ciclosport' | 'powerbahn' | 'acorn_projects_aps' | 'lifebeam' | 'bontrager' | 'wellgo' | 'scosche' | 'magura' | 'woodway' | 'elite' | 'nielsen_kellerman' | 'dk_city' | 'tacx' | 'direction_technology' | 'magtonic' | '1partcarbon' | 'inside_ride_technologies' | 'sound_of_motion' | 'stryd' | 'icg' | 'mi_pulse' | 'bsx_athletics' | 'look' | 'campagnolo_srl' | 'body_bike_smart' | 'praxisworks' | 'limits_technology' | 'topaction_technology' | 'cosinuss' | 'fitcare' | 'magene' | 'giant_manufacturing_co' | 'tigrasport' | 'salutron' | 'technogym' | 'bryton_sensors' | 'latitude_limited' | 'soaring_technology' | 'igpsport' | 'thinkrider' | 'gopher_sport' | 'waterrower' | 'orangetheory' | 'inpeak' | 'kinetic' | 'johnson_health_tech' | 'polar_electro' | 'seesense' | 'nci_technology' | 'iqsquare' | 'leomo' | 'ifit_com' | 'coros_byte' | 'versa_design' | 'chileaf' | 'cycplus' | 'gravaa_byte' | 'sigeyi' | 'coospo' | 'geoid' | 'bosch' | 'kyto' | 'kinetic_sports' | 'decathlon_byte' | 'tq_systems' | 'tag_heuer' | 'keiser_fitness' | 'zwift_byte' | 'porsche_ep' | 'blackbird' | 'meilan_byte' | 'ezon' | 'laisi' | 'myzone' | 'abawo' | 'bafang' | 'luhong_technology' | 'development' | 'healthandlife' | 'lezyne' | 'scribe_labs' | 'zwift' | 'watteam' | 'recon' | 'favero_electronics' | 'dynovelo' | 'strava' | 'precor' | 'bryton' | 'sram' | 'navman' | 'cobi' | 'spivi' | 'mio_magellan' | 'evesports' | 'sensitivus_gauge' | 'podoon' | 'life_time_fitness' | 'falco_e_motors' | 'minoura' | 'cycliq' | 'luxottica' | 'trainer_road' | 'the_sufferfest' | 'fullspeedahead' | 'virtualtraining' | 'feedbacksports' | 'omata' | 'vdo' | 'magneticdays' | 'hammerhead' | 'kinetic_by_kurt' | 'shapelog' | 'dabuziduo' | 'jetblack' | 'coros' | 'virtugo' | 'velosense' | 'cycligentinc' | 'trailforks' | 'mahle_ebikemotion' | 'nurvv' | 'microprogram' | 'zone5cloud' | 'greenteg' | 'yamaha_motors' | 'whoop' | 'gravaa' | 'onelap' | 'monark_exercise' | 'form' | 'decathlon' | 'syncros' | 'heatup' | 'cannondale' | 'true_fitness' | 'r_gt_cycling' | 'vasa' | 'race_republic' | 'fazua' | 'oreka_training' | 'lsec' | 'lululemon_studio' | 'shanyue' | 'spinning_mda' | 'hilldating' | 'aero_sensor' | 'nike' | 'magicshine' | 'ictrainer' | 'absolute_cycling' | 'eo_swimbetter' | 'mywhoosh' | 'ravemen' | 'tektro_racing_products' | 'darad_innovation_corporation' | 'cycloptim' | 'runna' | 'zepp' | 'peloton' | 'carv' | 'tissot' | 'real_velo' | 'wetech' | 'jespr' | 'huawei' | 'gotoes' | 'cadence_app' | 'actigraphcorp' | number;
130
+ export type MaxMetCategory = 'generic' | 'cycling' | number;
131
+ export type MaxMetHeartRateSource = 'whr' | 'hrm' | number;
132
+ export type MaxMetSpeedSource = 'onboard_gps' | 'connected_gps' | 'cadence' | number;
133
+ export type MesgCount = 'num_per_file' | 'max_per_file' | 'max_per_file_type' | number;
134
+ export type MesgNum = 'file_id' | 'capabilities' | 'device_settings' | 'user_profile' | 'hrm_profile' | 'sdm_profile' | 'bike_profile' | 'zones_target' | 'hr_zone' | 'power_zone' | 'met_zone' | 'sport' | 'training_settings' | 'goal' | 'session' | 'lap' | 'record' | 'event' | 'device_info' | 'workout' | 'workout_step' | 'schedule' | 'weight_scale' | 'course' | 'course_point' | 'totals' | 'activity' | 'software' | 'file_capabilities' | 'mesg_capabilities' | 'field_capabilities' | 'file_creator' | 'blood_pressure' | 'speed_zone' | 'monitoring' | 'training_file' | 'hrv' | 'user_metrics' | 'ant_rx' | 'ant_tx' | 'ant_channel_id' | 'length' | 'monitoring_info' | 'pad' | 'slave_device' | 'connectivity' | 'weather_conditions' | 'weather_alert' | 'cadence_zone' | 'hr' | 'activity_metrics' | 'segment_lap' | 'memo_glob' | 'segment_id' | 'segment_leaderboard_entry' | 'segment_point' | 'segment_file' | 'workout_session' | 'watchface_settings' | 'gps_metadata' | 'camera_event' | 'timestamp_correlation' | 'gyroscope_data' | 'accelerometer_data' | 'three_d_sensor_calibration' | 'video_frame' | 'obdii_data' | 'nmea_sentence' | 'aviation_attitude' | 'video' | 'video_title' | 'video_description' | 'video_clip' | 'ohr_settings' | 'exd_screen_configuration' | 'exd_data_field_configuration' | 'exd_data_concept_configuration' | 'field_description' | 'developer_data_id' | 'magnetometer_data' | 'barometer_data' | 'one_d_sensor_calibration' | 'monitoring_hr_data' | 'time_in_zone' | 'set' | 'stress_level' | 'max_met_data' | 'dive_settings' | 'dive_gas' | 'dive_alarm' | 'exercise_title' | 'dive_summary' | 'spo2_data' | 'sleep_level' | 'jump' | 'aad_accel_features' | 'beat_intervals' | 'respiration_rate' | 'hsa_accelerometer_data' | 'hsa_step_data' | 'hsa_spo2_data' | 'hsa_stress_data' | 'hsa_respiration_data' | 'hsa_heart_rate_data' | 'split' | 'split_summary' | 'hsa_body_battery_data' | 'hsa_event' | 'climb_pro' | 'tank_update' | 'tank_summary' | 'sleep_assessment' | 'hrv_status_summary' | 'hrv_value' | 'raw_bbi' | 'device_aux_battery_info' | 'hsa_gyroscope_data' | 'chrono_shot_session' | 'chrono_shot_data' | 'hsa_configuration_data' | 'dive_apnea_alarm' | 'skin_temp_overnight' | 'hsa_wrist_temperature_data' | 'nap_event' | 'sleep_disruption_severity_period' | 'sleep_disruption_overnight_severity' | 'mfg_range_min' | 'mfg_range_max' | 'definition' | number;
12
135
  export interface MessageIndex {
13
- 0: boolean;
14
136
  value: number;
15
137
  reserved: boolean;
16
138
  selected: boolean;
17
139
  }
18
- export type File = 'device' | 'settings' | 'sport' | 'activity' | 'workout' | 'course' | 'schedules' | 'weight' | 'totals' | 'goals' | 'blood_pressure' | 'monitoring_a' | 'activity_summary' | 'monitoring_daily' | 'monitoring_b' | 'segment' | 'segment_list' | 'exd_configuration' | 'mfg_range_min' | 'mfg_range_max';
19
- export type MesgNum = 'file_id' | 'capabilities' | 'device_settings' | 'user_profile' | 'hrm_profile' | 'sdm_profile' | 'bike_profile' | 'zones_target' | 'hr_zone' | 'power_zone' | 'met_zone' | 'sport' | 'goal' | 'session' | 'lap' | 'record' | 'event' | 'device_info' | 'workout' | 'workout_step' | 'schedule' | 'weight_scale' | 'course' | 'course_point' | 'totals' | 'activity' | 'software' | 'file_capabilities' | 'mesg_capabilities' | 'field_capabilities' | 'file_creator' | 'blood_pressure' | 'speed_zone' | 'monitoring' | 'training_file' | 'hrv' | 'user_metrics' | 'ant_rx' | 'ant_tx' | 'ant_channel_id' | 'length' | 'monitoring_info' | 'pad' | 'slave_device' | 'connectivity' | 'weather_conditions' | 'weather_alert' | 'cadence_zone' | 'hr' | 'activity_metrics' | 'segment_lap' | 'memo_glob' | 'segment_id' | 'segment_leaderboard_entry' | 'segment_point' | 'segment_file' | 'workout_session' | 'watchface_settings' | 'gps_metadata' | 'camera_event' | 'timestamp_correlation' | 'gyroscope_data' | 'accelerometer_data' | 'three_d_sensor_calibration' | 'video_frame' | 'obdii_data' | 'nmea_sentence' | 'aviation_attitude' | 'video' | 'video_title' | 'video_description' | 'video_clip' | 'exd_screen_configuration' | 'exd_data_field_configuration' | 'exd_data_concept_configuration' | 'field_description' | 'developer_data_id' | 'magnetometer_data' | 'barometer_data' | 'one_d_sensor_calibration' | 'time_in_zone' | 'set' | 'stress_level' | 'dive_settings' | 'dive_gas' | 'dive_alarm' | 'exercise_title' | 'dive_summary' | 'jump' | 'split' | 'split_summary' | 'climb_pro' | 'tank_update' | 'tank_summary' | 'o_hr_settings' | 'mfg_range_min' | 'mfg_range_max' | 'definition';
20
- export type Checksum = 'clear' | 'ok';
21
- export type FileFlags = '0' | 'read' | 'write' | 'erase';
22
- export type MesgCount = 'num_per_file' | 'max_per_file' | 'max_per_file_type';
23
- export type DateTime = '0' | 'min';
24
- export type LocalDateTime = '0' | 'min';
25
- export type Gender = 'female' | 'male';
26
- export type Language = 'english' | 'french' | 'italian' | 'german' | 'spanish' | 'croatian' | 'czech' | 'danish' | 'dutch' | 'finnish' | 'greek' | 'hungarian' | 'norwegian' | 'polish' | 'portuguese' | 'slovakian' | 'slovenian' | 'swedish' | 'russian' | 'turkish' | 'latvian' | 'ukrainian' | 'arabic' | 'farsi' | 'bulgarian' | 'romanian' | 'chinese' | 'japanese' | 'korean' | 'taiwanese' | 'thai' | 'hebrew' | 'brazilian_portuguese' | 'indonesian' | 'malaysian' | 'vietnamese' | 'burmese' | 'mongolian' | 'custom';
27
- export type LanguageBits0 = '0' | 'english' | 'french' | 'italian' | 'german' | 'spanish' | 'croatian' | 'czech' | 'danish';
28
- export type LanguageBits1 = '0' | 'dutch' | 'finnish' | 'greek' | 'hungarian' | 'norwegian' | 'polish' | 'portuguese' | 'slovakian';
29
- export type LanguageBits2 = '0' | 'slovenian' | 'swedish' | 'russian' | 'turkish' | 'latvian' | 'ukrainian' | 'arabic' | 'farsi';
30
- export type LanguageBits3 = '0' | 'bulgarian' | 'romanian' | 'chinese' | 'japanese' | 'korean' | 'taiwanese' | 'thai' | 'hebrew';
31
- export type LanguageBits4 = '0' | 'brazilian_portuguese' | 'indonesian' | 'malaysian' | 'vietnamese' | 'burmese' | 'mongolian';
32
- export type TimeZone = 'almaty' | 'bangkok' | 'bombay' | 'brasilia' | 'cairo' | 'cape_verde_is' | 'darwin' | 'eniwetok' | 'fiji' | 'hong_kong' | 'islamabad' | 'kabul' | 'magadan' | 'mid_atlantic' | 'moscow' | 'muscat' | 'newfoundland' | 'samoa' | 'sydney' | 'tehran' | 'tokyo' | 'us_alaska' | 'us_atlantic' | 'us_central' | 'us_eastern' | 'us_hawaii' | 'us_mountain' | 'us_pacific' | 'other' | 'auckland' | 'kathmandu' | 'europe_western_wet' | 'europe_central_cet' | 'europe_eastern_eet' | 'jakarta' | 'perth' | 'adelaide' | 'brisbane' | 'tasmania' | 'iceland' | 'amsterdam' | 'athens' | 'barcelona' | 'berlin' | 'brussels' | 'budapest' | 'copenhagen' | 'dublin' | 'helsinki' | 'lisbon' | 'london' | 'madrid' | 'munich' | 'oslo' | 'paris' | 'prague' | 'reykjavik' | 'rome' | 'stockholm' | 'vienna' | 'warsaw' | 'zurich' | 'quebec' | 'ontario' | 'manitoba' | 'saskatchewan' | 'alberta' | 'british_columbia' | 'boise' | 'boston' | 'chicago' | 'dallas' | 'denver' | 'kansas_city' | 'las_vegas' | 'los_angeles' | 'miami' | 'minneapolis' | 'new_york' | 'new_orleans' | 'phoenix' | 'santa_fe' | 'seattle' | 'washington_dc' | 'us_arizona' | 'chita' | 'ekaterinburg' | 'irkutsk' | 'kaliningrad' | 'krasnoyarsk' | 'novosibirsk' | 'petropavlovsk_kamchatskiy' | 'samara' | 'vladivostok' | 'mexico_central' | 'mexico_mountain' | 'mexico_pacific' | 'cape_town' | 'winkhoek' | 'lagos' | 'riyahd' | 'venezuela' | 'australia_lh' | 'santiago' | 'manual' | 'automatic';
33
- export type DisplayMeasure = 'metric' | 'statute' | 'nautical';
34
- export type DisplayHeart = 'bpm' | 'max' | 'reserve';
35
- export type DisplayPower = 'watts' | 'percent_ftp';
36
- export type DisplayPosition = 'degree' | 'degree_minute' | 'degree_minute_second' | 'austrian_grid' | 'british_grid' | 'dutch_grid' | 'hungarian_grid' | 'finnish_grid' | 'german_grid' | 'icelandic_grid' | 'indonesian_equatorial' | 'indonesian_irian' | 'indonesian_southern' | 'india_zone_0' | 'india_zone_IA' | 'india_zone_IB' | 'india_zone_IIA' | 'india_zone_IIB' | 'india_zone_IIIA' | 'india_zone_IIIB' | 'india_zone_IVA' | 'india_zone_IVB' | 'irish_transverse' | 'irish_grid' | 'loran' | 'maidenhead_grid' | 'mgrs_grid' | 'new_zealand_grid' | 'new_zealand_transverse' | 'qatar_grid' | 'modified_swedish_grid' | 'swedish_grid' | 'south_african_grid' | 'swiss_grid' | 'taiwan_grid' | 'united_states_grid' | 'utm_ups_grid' | 'west_malayan' | 'borneo_rso' | 'estonian_grid' | 'latvian_grid' | 'swedish_ref_99_grid';
37
- export type Switch = 'off' | 'on' | 'auto';
38
- export type Sport = 'generic' | 'running' | 'cycling' | 'transition' | 'fitness_equipment' | 'swimming' | 'basketball' | 'soccer' | 'tennis' | 'american_football' | 'training' | 'walking' | 'cross_country_skiing' | 'alpine_skiing' | 'snowboarding' | 'rowing' | 'mountaineering' | 'hiking' | 'multisport' | 'paddling' | 'flying' | 'e_biking' | 'motorcycling' | 'boating' | 'driving' | 'golf' | 'hang_gliding' | 'horseback_riding' | 'hunting' | 'fishing' | 'inline_skating' | 'rock_climbing' | 'sailing' | 'ice_skating' | 'sky_diving' | 'snowshoeing' | 'snowmobiling' | 'stand_up_paddleboarding' | 'surfing' | 'wakeboarding' | 'water_skiing' | 'kayaking' | 'rafting' | 'windsurfing' | 'kitesurfing' | 'tactical' | 'jumpmaster' | 'boxing' | 'floor_climbing' | 'diving' | 'all';
39
- export type SportBits0 = '0' | 'generic' | 'running' | 'cycling' | 'transition' | 'fitness_equipment' | 'swimming' | 'basketball' | 'soccer';
40
- export type SportBits1 = '0' | 'tennis' | 'american_football' | 'training' | 'walking' | 'cross_country_skiing' | 'alpine_skiing' | 'snowboarding' | 'rowing';
41
- export type SportBits2 = '0' | 'mountaineering' | 'hiking' | 'multisport' | 'paddling' | 'flying' | 'e_biking' | 'motorcycling' | 'boating';
42
- export type SportBits3 = '0' | 'driving' | 'golf' | 'hang_gliding' | 'horseback_riding' | 'hunting' | 'fishing' | 'inline_skating' | 'rock_climbing';
43
- export type SportBits4 = '0' | 'sailing' | 'ice_skating' | 'sky_diving' | 'snowshoeing' | 'snowmobiling' | 'stand_up_paddleboarding' | 'surfing' | 'wakeboarding';
44
- export type SportBits5 = '0' | 'water_skiing' | 'kayaking' | 'rafting' | 'windsurfing' | 'kitesurfing' | 'tactical' | 'jumpmaster' | 'boxing';
45
- export type SportBits6 = '0' | 'floor_climbing';
46
- export type SubSport = 'generic' | 'treadmill' | 'street' | 'trail' | 'track' | 'spin' | 'indoor_cycling' | 'road' | 'mountain' | 'downhill' | 'recumbent' | 'cyclocross' | 'hand_cycling' | 'track_cycling' | 'indoor_rowing' | 'elliptical' | 'stair_climbing' | 'lap_swimming' | 'open_water' | 'flexibility_training' | 'strength_training' | 'warm_up' | 'match' | 'exercise' | 'challenge' | 'indoor_skiing' | 'cardio_training' | 'indoor_walking' | 'e_bike_fitness' | 'bmx' | 'casual_walking' | 'speed_walking' | 'bike_to_run_transition' | 'run_to_bike_transition' | 'swim_to_bike_transition' | 'atv' | 'motocross' | 'backcountry' | 'resort' | 'rc_drone' | 'wingsuit' | 'whitewater' | 'skate_skiing' | 'yoga' | 'pilates' | 'indoor_running' | 'gravel_cycling' | 'e_bike_mountain' | 'commuting' | 'mixed_surface' | 'navigate' | 'track_me' | 'map' | 'single_gas_diving' | 'multi_gas_diving' | 'gauge_diving' | 'apnea_diving' | 'apnea_hunting' | 'virtual_activity' | 'obstacle' | 'all';
47
- export type SportEvent = 'uncategorized' | 'geocaching' | 'fitness' | 'recreation' | 'race' | 'special_event' | 'training' | 'transportation' | 'touring';
48
- export type Activity = 'manual' | 'auto_multi_sport';
49
- export type Intensity = 'active' | 'rest' | 'warmup' | 'cooldown' | 'recovery' | 'interval' | 'other';
50
- export type SessionTrigger = 'activity_end' | 'manual' | 'auto_multi_sport' | 'fitness_equipment';
51
- export type AutolapTrigger = 'time' | 'distance' | 'position_start' | 'position_lap' | 'position_waypoint' | 'position_marked' | 'off';
52
- export type LapTrigger = 'manual' | 'time' | 'distance' | 'position_start' | 'position_lap' | 'position_waypoint' | 'position_marked' | 'session_end' | 'fitness_equipment';
53
- export type TimeMode = 'hour12' | 'hour24' | 'military' | 'hour_12_with_seconds' | 'hour_24_with_seconds' | 'utc';
54
- export type BacklightMode = 'off' | 'manual' | 'key_and_messages' | 'auto_brightness' | 'smart_notifications' | 'key_and_messages_night' | 'key_and_messages_and_smart_notifications';
55
- export type DateMode = 'day_month' | 'month_day';
56
- export type BacklightTimeout = 'infinite';
57
- export type Event = 'timer' | 'workout' | 'workout_step' | 'power_down' | 'power_up' | 'off_course' | 'session' | 'lap' | 'course_point' | 'battery' | 'virtual_partner_pace' | 'hr_high_alert' | 'hr_low_alert' | 'speed_high_alert' | 'speed_low_alert' | 'cad_high_alert' | 'cad_low_alert' | 'power_high_alert' | 'power_low_alert' | 'recovery_hr' | 'battery_low' | 'time_duration_alert' | 'distance_duration_alert' | 'calorie_duration_alert' | 'activity' | 'fitness_equipment' | 'length' | 'user_marker' | 'sport_point' | 'calibration' | 'front_gear_change' | 'rear_gear_change' | 'rider_position_change' | 'elev_high_alert' | 'elev_low_alert' | 'comm_timeout';
58
- export type EventType = 'start' | 'stop' | 'consecutive_depreciated' | 'marker' | 'stop_all' | 'begin_depreciated' | 'end_depreciated' | 'end_all_depreciated' | 'stop_disable' | 'stop_disable_all';
59
- export type TimerTrigger = 'manual' | 'auto' | 'fitness_equipment';
60
- export type FitnessEquipmentState = 'ready' | 'in_use' | 'paused' | 'unknown';
61
- export type Tone = 'off' | 'tone' | 'vibrate' | 'tone_and_vibrate';
62
- export type Autoscroll = 'none' | 'slow' | 'medium' | 'fast';
63
- export type ActivityClass = '0' | 'level_max' | 'level' | 'athlete';
64
- export type HrZoneCalc = 'custom' | 'percent_max_hr' | 'percent_hrr';
65
- export type PwrZoneCalc = 'custom' | 'percent_ftp';
66
- export type WktStepDuration = 'time' | 'distance' | 'hr_less_than' | 'hr_greater_than' | 'calories' | 'open' | 'repeat_until_steps_cmplt' | 'repeat_until_time' | 'repeat_until_distance' | 'repeat_until_calories' | 'repeat_until_hr_less_than' | 'repeat_until_hr_greater_than' | 'repeat_until_power_less_than' | 'repeat_until_power_greater_than' | 'power_less_than' | 'power_greater_than' | 'training_peaks_tss' | 'repeat_until_power_last_lap_less_than' | 'repeat_until_max_power_last_lap_less_than' | 'power_3s_less_than' | 'power_10s_less_than' | 'power_30s_less_than' | 'power_3s_greater_than' | 'power_10s_greater_than' | 'power_30s_greater_than' | 'power_lap_less_than' | 'power_lap_greater_than' | 'repeat_until_training_peaks_tss' | 'repetition_time' | 'reps';
67
- export type WktStepTarget = 'speed' | 'heart_rate' | 'open' | 'cadence' | 'power' | 'grade' | 'resistance' | 'power_3s' | 'power_10s' | 'power_30s' | 'power_lap' | 'swim_stroke' | 'speed_lap' | 'heart_rate_lap';
68
- export type Goal = 'time' | 'distance' | 'calories' | 'frequency' | 'steps' | 'ascent' | 'active_minutes';
69
- export type GoalRecurrence = 'off' | 'daily' | 'weekly' | 'monthly' | 'yearly' | 'custom';
70
- export type GoalSource = 'auto' | 'community' | 'user';
71
- export type Schedule = 'workout' | 'course';
72
- export type CoursePoint = 'generic' | 'summit' | 'valley' | 'water' | 'food' | 'danger' | 'left' | 'right' | 'straight' | 'first_aid' | 'fourth_category' | 'third_category' | 'second_category' | 'first_category' | 'hors_category' | 'sprint' | 'left_fork' | 'right_fork' | 'middle_fork' | 'slight_left' | 'sharp_left' | 'slight_right' | 'sharp_right' | 'u_turn' | 'segment_start' | 'segment_end' | 'campsite' | 'aid_station' | 'rest_area' | 'general_distance' | 'service' | 'energy_gel' | 'sports_drink' | 'mile_marker' | 'checkpoint' | 'shelter' | 'meeting_spot' | 'overlook' | 'toilet' | 'shower' | 'gear' | 'sharp_curve' | 'steep_incline' | 'tunnel' | 'bridge' | 'obstacle' | 'crossing' | 'store' | 'transition' | 'navaid' | 'transport' | 'alert' | 'info';
73
- export type Manufacturer = '0' | 'garmin' | 'garmin_fr405_antfs' | 'zephyr' | 'dayton' | 'idt' | 'srm' | 'quarq' | 'ibike' | 'saris' | 'spark_hk' | 'tanita' | 'echowell' | 'dynastream_oem' | 'nautilus' | 'dynastream' | 'timex' | 'metrigear' | 'xelic' | 'beurer' | 'cardiosport' | 'a_and_d' | 'hmm' | 'suunto' | 'thita_elektronik' | 'gpulse' | 'clean_mobile' | 'pedal_brain' | 'peaksware' | 'saxonar' | 'lemond_fitness' | 'dexcom' | 'wahoo_fitness' | 'octane_fitness' | 'archinoetics' | 'the_hurt_box' | 'citizen_systems' | 'magellan' | 'osynce' | 'holux' | 'concept2' | 'one_giant_leap' | 'ace_sensor' | 'brim_brothers' | 'xplova' | 'perception_digital' | 'bf1systems' | 'pioneer' | 'spantec' | 'metalogics' | '4iiiis' | 'seiko_epson' | 'seiko_epson_oem' | 'ifor_powell' | 'maxwell_guider' | 'star_trac' | 'breakaway' | 'alatech_technology_ltd' | 'mio_technology_europe' | 'rotor' | 'geonaute' | 'id_bike' | 'specialized' | 'wtek' | 'physical_enterprises' | 'north_pole_engineering' | 'bkool' | 'cateye' | 'stages_cycling' | 'sigmasport' | 'tomtom' | 'peripedal' | 'wattbike' | 'moxy' | 'ciclosport' | 'powerbahn' | 'acorn_projects_aps' | 'lifebeam' | 'bontrager' | 'wellgo' | 'scosche' | 'magura' | 'woodway' | 'elite' | 'nielsen_kellerman' | 'dk_city' | 'tacx' | 'direction_technology' | 'magtonic' | '1partcarbon' | 'inside_ride_technologies' | 'sound_of_motion' | 'stryd' | 'icg' | 'mipulse' | 'bsx_athletics' | 'look' | 'campagnolo_srl' | 'body_bike_smart' | 'praxisworks' | 'limits_technology' | 'topaction_technology' | 'cosinuss' | 'fitcare' | 'magene' | 'giant_manufacturing_co' | 'tigrasport' | 'salutron' | 'technogym' | 'bryton_sensors' | 'latitude_limited' | 'soaring_technology' | 'igpsport' | 'thinkrider' | 'gopher_sport' | 'waterrower' | 'orangetheory' | 'inpeak' | 'kinetic' | 'johnson_health_tech' | 'polar_electro' | 'seesense' | 'nci_technology' | 'development' | 'healthandlife' | 'lezyne' | 'scribe_labs' | 'zwift' | 'watteam' | 'recon' | 'favero_electronics' | 'dynovelo' | 'strava' | 'precor' | 'bryton' | 'sram' | 'navman' | 'cobi' | 'spivi' | 'mio_magellan' | 'evesports' | 'sensitivus_gauge' | 'podoon' | 'life_time_fitness' | 'falco_e_motors' | 'minoura' | 'cycliq' | 'luxottica' | 'trainer_road' | 'the_sufferfest' | 'fullspeedahead' | 'virtualtraining' | 'feedbacksports' | 'omata' | 'vdo' | 'magneticdays' | 'hammerhead' | 'kinetic_by_kurt' | 'shapelog' | 'dabuziduo' | 'jetblack' | 'coros' | 'virtugo' | 'velosense' | 'actigraphcorp';
74
- export type GarminProduct = 'hrm1' | 'axh01' | 'axb01' | 'axb02' | 'hrm2ss' | 'dsiAlf02' | 'hrm3ss' | 'hrmRunSingleByteProductId' | 'bsm' | 'bcm' | 'axs01' | 'hrmTriSingleByteProductId' | 'hrm4RunSingleByteProductId' | 'fr225SingleByteProductId' | 'gen3BsmSingleByteProductId' | 'gen3BcmSingleByteProductId' | 'hrmFitSingleByteProductId' | 'oHR' | 'fr301China' | 'fr301Japan' | 'fr301Korea' | 'fr301Taiwan' | 'fr405' | 'fr50' | 'fr405Japan' | 'fr60' | 'dsiAlf01' | 'fr310xt' | 'edge500' | 'fr110' | 'edge800' | 'edge500Taiwan' | 'edge500Japan' | 'chirp' | 'fr110Japan' | 'edge200' | 'fr910xt' | 'edge800Taiwan' | 'edge800Japan' | 'alf04' | 'fr610' | 'fr210Japan' | 'vectorSs' | 'vectorCp' | 'edge800China' | 'edge500China' | 'approachG10' | 'fr610Japan' | 'edge500Korea' | 'fr70' | 'fr310xt4t' | 'amx' | 'fr10' | 'edge800Korea' | 'swim' | 'fr910xtChina' | 'fenix' | 'edge200Taiwan' | 'edge510' | 'edge810' | 'tempe' | 'fr910xtJapan' | 'fr620' | 'fr220' | 'fr910xtKorea' | 'fr10Japan' | 'edge810Japan' | 'virbElite' | 'edgeTouring' | 'edge510Japan' | 'hrmTri' | 'hrmRun' | 'fr920xt' | 'edge510Asia' | 'edge810China' | 'edge810Taiwan' | 'edge1000' | 'vivoFit' | 'virbRemote' | 'vivoKi' | 'fr15' | 'vivoActive' | 'edge510Korea' | 'fr620Japan' | 'fr620China' | 'fr220Japan' | 'fr220China' | 'approachS6' | 'vivoSmart' | 'fenix2' | 'epix' | 'fenix3' | 'edge1000Taiwan' | 'edge1000Japan' | 'fr15Japan' | 'edge520' | 'edge1000China' | 'fr620Russia' | 'fr220Russia' | 'vectorS' | 'edge1000Korea' | 'fr920xtTaiwan' | 'fr920xtChina' | 'fr920xtJapan' | 'virbx' | 'vivoSmartApac' | 'etrexTouch' | 'edge25' | 'fr25' | 'vivoFit2' | 'fr225' | 'fr630' | 'fr230' | 'fr735xt' | 'vivoActiveApac' | 'vector2' | 'vector2s' | 'virbxe' | 'fr620Taiwan' | 'fr220Taiwan' | 'truswing' | 'd2airvenu' | 'fenix3China' | 'fenix3Twn' | 'variaHeadlight' | 'variaTaillightOld' | 'edgeExplore1000' | 'fr225Asia' | 'variaRadarTaillight' | 'variaRadarDisplay' | 'edge20' | 'edge520Asia' | 'edge520Japan' | 'd2Bravo' | 'approachS20' | 'vivoSmart2' | 'edge1000Thai' | 'variaRemote' | 'edge25Asia' | 'edge25Jpn' | 'edge20Asia' | 'approachX40' | 'fenix3Japan' | 'vivoSmartEmea' | 'fr630Asia' | 'fr630Jpn' | 'fr230Jpn' | 'hrm4Run' | 'epixJapan' | 'vivoActiveHr' | 'vivoSmartGpsHr' | 'vivoSmartHr' | 'vivoSmartHrAsia' | 'vivoSmartGpsHrAsia' | 'vivoMove' | 'variaTaillight' | 'fr235Asia' | 'fr235Japan' | 'variaVision' | 'vivoFit3' | 'fenix3Korea' | 'fenix3Sea' | 'fenix3Hr' | 'virbUltra30' | 'indexSmartScale' | 'fr235' | 'fenix3Chronos' | 'oregon7xx' | 'rino7xx' | 'epixKorea' | 'fenix3HrChn' | 'fenix3HrTwn' | 'fenix3HrJpn' | 'fenix3HrSea' | 'fenix3HrKor' | 'nautix' | 'vivoActiveHrApac' | 'fr35' | 'oregon7xxWw' | 'edge820' | 'edgeExplore820' | 'fr735xtApac' | 'fr735xtJapan' | 'fenix5s' | 'd2BravoTitanium' | 'variaUt800' | 'runningDynamicsPod' | 'edge820China' | 'edge820Japan' | 'fenix5x' | 'vivoFitJr' | 'vivoSmart3' | 'vivoSport' | 'edge820Taiwan' | 'edge820Korea' | 'edge820Sea' | 'fr35Hebrew' | 'approachS60' | 'fr35Apac' | 'fr35Japan' | 'fenix3ChronosAsia' | 'virb360' | 'fr935' | 'fenix5' | 'vivoactive3' | 'edge1030' | 'fr35Sea' | 'fr235ChinaNfc' | 'foretrex601_701' | 'vivoMoveHr' | 'vector3' | 'fenix5Asia' | 'fenix5sAsia' | 'fenix5xAsia' | 'approachZ80' | 'fr35Korea' | 'd2charlie' | 'vivoSmart3Apac' | 'vivoSportApac' | 'fr935Asia' | 'descent' | 'vivoFit4' | 'fr645' | 'fr645m' | 'fr30' | 'fenix5sPlus' | 'edge130' | 'edge1030Asia' | 'vivosmart4' | 'vivoMoveHrAsia' | 'approachX10' | 'fr30Asia' | 'vivoactive3mW' | 'fr645Asia' | 'fr645mAsia' | 'edgeExplore' | 'gpsmap66' | 'approachS10' | 'vivoactive3mL' | 'fr245' | 'fr245Music' | 'approachG80' | 'edge130Asia' | 'edge1030Bontrager' | 'fenix5Plus' | 'fenix5xPlus' | 'edge520Plus' | 'fr945' | 'edge530' | 'edge830' | 'instinctEsports' | 'fenix5sPlusApac' | 'fenix5xPlusApac' | 'edge520PlusApac' | 'descentT1' | 'fr235lAsia' | 'fr245Asia' | 'vivoActive3mApac' | 'gen3Bsm' | 'gen3Bcm' | 'vivoSmart4Asia' | 'vivoactive4Small' | 'vivoactive4Large' | 'venu' | 'marqDriver' | 'marqAviator' | 'marqCaptain' | 'marqCommander' | 'marqExpedition' | 'marqAthlete' | 'descentMk2' | 'fr45' | 'gpsmap66i' | 'fenix6SSport' | 'fenix6S' | 'fenix6Sport' | 'fenix6' | 'fenix6x' | 'hrmDual' | 'hrmPro' | 'vivoMove3Premium' | 'approachS40' | 'fr245mAsia' | 'edge530Apac' | 'edge830Apac' | 'vivoMove3' | 'vivoActive4SmallAsia' | 'vivoActive4LargeAsia' | 'vivoActive4OledAsia' | 'swim2' | 'marqDriverAsia' | 'marqAviatorAsia' | 'vivoMove3Asia' | 'fr945Asia' | 'vivoActive3tChn' | 'marqCaptainAsia' | 'marqCommanderAsia' | 'marqExpeditionAsia' | 'marqAthleteAsia' | 'indexSmartScale2' | 'instinctSolar' | 'fr45Asia' | 'vivoactive3Daimler' | 'legacyRey' | 'legacyDarthVader' | 'legacyCaptainMarvel' | 'legacyFirstAvenger' | 'fenix6sSportAsia' | 'fenix6sAsia' | 'fenix6SportAsia' | 'fenix6Asia' | 'fenix6xAsia' | 'legacyCaptainMarvelAsia' | 'legacyFirstAvengerAsia' | 'legacyReyAsia' | 'legacyDarthVaderAsia' | 'descentMk2s' | 'edge130Plus' | 'edge1030Plus' | 'rally200' | 'fr745' | 'venusqMusic' | 'venusqMusicV2' | 'venusq' | 'lily' | 'marqAdventurer' | 'enduro' | 'swim2Apac' | 'marqAdventurerAsia' | 'fr945Lte' | 'descentMk2Asia' | 'venu2' | 'venu2s' | 'venuDaimlerAsia' | 'marqGolfer' | 'venuDaimler' | 'fr745Asia' | 'variaRct715' | 'lilyAsia' | 'edge1030PlusAsia' | 'edge130PlusAsia' | 'approachS12' | 'venusqAsia' | 'edge1040' | 'marqGolferAsia' | 'venu2Plus' | 'gnss' | 'fr55' | 'enduroAsia' | 'instinct2' | 'instinct2s' | 'fenix7s' | 'fenix7' | 'fenix7x' | 'fenix7sApac' | 'fenix7Apac' | 'fenix7xApac' | 'approachG12' | 'descentMk2sAsia' | 'approachS42' | 'epixGen2' | 'epixGen2Apac' | 'venu2sAsia' | 'venu2Asia' | 'fr945LteAsia' | 'vivoMoveSport' | 'vivomoveTrend' | 'approachS12Asia' | 'fr255Music' | 'fr255SmallMusic' | 'fr255' | 'fr255Small' | 'approachG12Asia' | 'approachS42Asia' | 'descentG1' | 'venu2PlusAsia' | 'fr955' | 'fr55Asia' | 'edge540' | 'edge840' | 'vivosmart5' | 'instinct2Asia' | 'marqGen2' | 'venusq2' | 'venusq2music' | 'marqGen2Aviator' | 'd2AirX10' | 'hrmProPlus' | 'descentG1Asia' | 'tactix7' | 'instinctCrossover' | 'edgeExplore2' | 'descentMk3' | 'descentMk3i' | 'approachS70' | 'fr265Large' | 'fr265Small' | 'venu3' | 'venu3s' | 'tacxNeoSmart' | 'tacxNeo2Smart' | 'tacxNeo2TSmart' | 'tacxNeoSmartBike' | 'tacxSatoriSmart' | 'tacxFlowSmart' | 'tacxVortexSmart' | 'tacxBushidoSmart' | 'tacxGeniusSmart' | 'tacxFluxFluxSSmart' | 'tacxFlux2Smart' | 'tacxMagnum' | 'edge1040Asia' | 'epixGen2Pro42' | 'epixGen2Pro47' | 'epixGen2Pro51' | 'fr965' | 'enduro2' | 'fenix7sProSolar' | 'fenix7ProSolar' | 'fenix7xProSolar' | 'lily2' | 'instinct2x' | 'vivoactive5' | 'fr165' | 'fr165Music' | 'edge1050' | 'descentT2' | 'hrmFit' | 'marqGen2Commander' | 'lilyAthlete' | 'rallyX10' | 'fenix8Solar' | 'fenix8SolarLarge' | 'fenix8Small' | 'fenix8' | 'd2Mach1Pro' | 'enduro3' | 'instinctE40mm' | 'instinctE45mm' | 'instinct3Solar45mm' | 'instinct3Amoled45mm' | 'instinct3Amoled50mm' | 'descentG2' | 'venuX1' | 'hrm200' | 'vivoactive6' | 'fenix8Pro' | 'edge550' | 'edge850' | 'venu4' | 'venu4s' | 'approachS44' | 'edgeMtb' | 'approachS50' | 'fenixE' | 'instinctCrossoverAmoled' | 'bounce2' | 'instinct3Solar50mm' | 'tactix8Amoled' | 'tactix8Solar' | 'fr170Music' | 'fr170' | 'approachJ1' | 'd2Mach2' | 'fr702026' | 'd2AirX15' | 'd2Mach2Pro' | 'sdm4' | 'edgeRemote' | 'trainingCenter' | 'tacxTrainingAppWin' | 'tacxTrainingAppMac' | 'tacxTrainingAppMacCatalyst' | 'tacxTrainingAppAndroid' | 'tacxTrainingAppIos' | 'tacxTrainingAppLegacy' | 'connectiqSimulator' | 'androidAntplusPlugin' | 'connect';
75
- export type AntplusDeviceType = 'antfs' | 'bike_power' | 'environment_sensor_legacy' | 'multi_sport_speed_distance' | 'control' | 'fitness_equipment' | 'blood_pressure' | 'geocache_node' | 'light_electric_vehicle' | 'env_sensor' | 'racquet' | 'control_hub' | 'muscle_oxygen' | 'shifting' | 'bike_light_main' | 'bike_light_shared' | 'exd' | 'bike_radar' | 'bike_aero' | 'weight_scale' | 'heart_rate' | 'bike_speed_cadence' | 'bike_cadence' | 'bike_speed' | 'stride_speed_distance';
76
- export type LocalDeviceType = 'gps' | 'glonass' | 'gps_glonass' | 'accelerometer' | 'barometer' | 'temperature' | 'whr' | 'sensor_hub';
77
- export type BleDeviceType = 'connected_gps' | 'heart_rate' | 'bike_power' | 'bike_speed_cadence' | 'bike_speed' | 'bike_cadence' | 'footpod' | 'bike_trainer';
78
- export type AntNetwork = 'public' | 'antplus' | 'antfs' | 'private';
79
- export type WorkoutCapabilities = '0' | 'interval' | 'custom' | 'fitness_equipment' | 'firstbeat' | 'new_leaf' | 'tcx' | 'speed' | 'heart_rate' | 'distance' | 'cadence' | 'power' | 'grade' | 'resistance' | 'protected';
80
- export type BatteryStatus = '0' | 'new' | 'good' | 'ok' | 'low' | 'critical' | 'charging' | 'unknown';
81
- export type HrType = 'normal' | 'irregular';
82
- export type CourseCapabilities = '0' | 'processed' | 'valid' | 'time' | 'distance' | 'position' | 'heart_rate' | 'power' | 'cadence' | 'training' | 'navigation' | 'bikeway';
83
- export type Weight = '0' | 'calculating';
84
- export type WorkoutHr = '0' | 'bpm_offset';
85
- export type WorkoutPower = '0' | 'watts_offset';
86
- export type BpStatus = 'no_error' | 'error_incomplete_data' | 'error_no_measurement' | 'error_data_out_of_range' | 'error_irregular_heart_rate';
87
- export type UserLocalId = 'local_min' | 'local_max' | 'stationary_min' | 'stationary_max' | 'portable_min' | 'portable_max';
88
- export type SwimStroke = 'freestyle' | 'backstroke' | 'breaststroke' | 'butterfly' | 'drill' | 'mixed' | 'im';
89
- export type ActivityType = 'generic' | 'running' | 'cycling' | 'transition' | 'fitness_equipment' | 'swimming' | 'walking' | 'sedentary' | 'all';
90
- export type ActivitySubtype = 'generic' | 'treadmill' | 'street' | 'trail' | 'track' | 'spin' | 'indoor_cycling' | 'road' | 'mountain' | 'downhill' | 'recumbent' | 'cyclocross' | 'hand_cycling' | 'track_cycling' | 'indoor_rowing' | 'elliptical' | 'stair_climbing' | 'lap_swimming' | 'open_water' | 'all';
91
- export type ActivityLevel = 'low' | 'medium' | 'high';
92
- export type Side = 'right' | 'left';
93
- export type LeftRightBalance = '0' | 'mask' | 'right';
94
- export type LeftRightBalance100 = '0' | 'mask' | 'right';
95
- export type LengthType = 'idle' | 'active';
96
- export type DayOfWeek = 'sunday' | 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday';
97
- export type ConnectivityCapabilities = '0' | 'bluetooth' | 'bluetooth_le' | 'ant' | 'activity_upload' | 'course_download' | 'workout_download' | 'live_track' | 'weather_conditions' | 'weather_alerts' | 'gps_ephemeris_download' | 'explicit_archive' | 'setup_incomplete' | 'continue_sync_after_software_update' | 'connect_iq_app_download' | 'golf_course_download' | 'device_initiates_sync' | 'connect_iq_watch_app_download' | 'connect_iq_widget_download' | 'connect_iq_watch_face_download' | 'connect_iq_data_field_download' | 'connect_iq_app_managment' | 'swing_sensor' | 'swing_sensor_remote' | 'incident_detection' | 'audio_prompts' | 'wifi_verification' | 'true_up' | 'find_my_watch' | 'remote_manual_sync' | 'live_track_auto_start' | 'live_track_messaging' | 'instant_input';
98
- export type WeatherReport = 'current' | 'hourly_forecast' | 'daily_forecast';
99
- export type WeatherStatus = 'clear' | 'partly_cloudy' | 'mostly_cloudy' | 'rain' | 'snow' | 'windy' | 'thunderstorms' | 'wintry_mix' | 'fog' | 'hazy' | 'hail' | 'scattered_showers' | 'scattered_thunderstorms' | 'unknown_precipitation' | 'light_rain' | 'heavy_rain' | 'light_snow' | 'heavy_snow' | 'light_rain_snow' | 'heavy_rain_snow' | 'cloudy';
100
- export type WeatherSeverity = 'unknown' | 'warning' | 'watch' | 'advisory' | 'statement';
101
- export type WeatherSevereType = 'unspecified' | 'tornado' | 'tsunami' | 'hurricane' | 'extreme_wind' | 'typhoon' | 'inland_hurricane' | 'hurricane_force_wind' | 'waterspout' | 'severe_thunderstorm' | 'wreckhouse_winds' | 'les_suetes_wind' | 'avalanche' | 'flash_flood' | 'tropical_storm' | 'inland_tropical_storm' | 'blizzard' | 'ice_storm' | 'freezing_rain' | 'debris_flow' | 'flash_freeze' | 'dust_storm' | 'high_wind' | 'winter_storm' | 'heavy_freezing_spray' | 'extreme_cold' | 'wind_chill' | 'cold_wave' | 'heavy_snow_alert' | 'lake_effect_blowing_snow' | 'snow_squall' | 'lake_effect_snow' | 'winter_weather' | 'sleet' | 'snowfall' | 'snow_and_blowing_snow' | 'blowing_snow' | 'snow_alert' | 'arctic_outflow' | 'freezing_drizzle' | 'storm' | 'storm_surge' | 'rainfall' | 'areal_flood' | 'coastal_flood' | 'lakeshore_flood' | 'excessive_heat' | 'heat' | 'weather' | 'high_heat_and_humidity' | 'humidex_and_health' | 'humidex' | 'gale' | 'freezing_spray' | 'special_marine' | 'squall' | 'strong_wind' | 'lake_wind' | 'marine_weather' | 'wind' | 'small_craft_hazardous_seas' | 'hazardous_seas' | 'small_craft' | 'small_craft_winds' | 'small_craft_rough_bar' | 'high_water_level' | 'ashfall' | 'freezing_fog' | 'dense_fog' | 'dense_smoke' | 'blowing_dust' | 'hard_freeze' | 'freeze' | 'frost' | 'fire_weather' | 'flood' | 'rip_tide' | 'high_surf' | 'smog' | 'air_quality' | 'brisk_wind' | 'air_stagnation' | 'low_water' | 'hydrological' | 'special_weather';
102
- export type StrokeType = 'no_event' | 'other' | 'serve' | 'forehand' | 'backhand' | 'smash';
103
- export type BodyLocation = 'left_leg' | 'left_calf' | 'left_shin' | 'left_hamstring' | 'left_quad' | 'left_glute' | 'right_leg' | 'right_calf' | 'right_shin' | 'right_hamstring' | 'right_quad' | 'right_glute' | 'torso_back' | 'left_lower_back' | 'left_upper_back' | 'right_lower_back' | 'right_upper_back' | 'torso_front' | 'left_abdomen' | 'left_chest' | 'right_abdomen' | 'right_chest' | 'left_arm' | 'left_shoulder' | 'left_bicep' | 'left_tricep' | 'left_brachioradialis' | 'left_forearm_extensors' | 'right_arm' | 'right_shoulder' | 'right_bicep' | 'right_tricep' | 'right_brachioradialis' | 'right_forearm_extensors' | 'neck' | 'throat' | 'waist_mid_back' | 'waist_front' | 'waist_left' | 'waist_right';
104
- export type SegmentLapStatus = 'end' | 'fail';
105
- export type SegmentLeaderboardType = 'overall' | 'personal_best' | 'connections' | 'group' | 'challenger' | 'kom' | 'qom' | 'pr' | 'goal' | 'rival' | 'club_leader';
106
- export type SegmentDeleteStatus = 'do_not_delete' | 'delete_one' | 'delete_all';
107
- export type SegmentSelectionType = 'starred' | 'suggested';
108
- export type SplitType = 'ascent_split' | 'descent_split' | 'interval_active' | 'interval_rest' | 'interval_warmup' | 'interval_cooldown' | 'interval_recovery' | 'interval_other' | 'climb_active' | 'climb_rest' | 'surf_active' | 'run_active' | 'run_rest' | 'workout_round' | 'rwd_run' | 'rwd_walk' | 'windsurf_active' | 'rwd_stand' | 'transition' | 'ski_lift_split' | 'ski_run_split';
109
- export type SourceType = 'ant' | 'antplus' | 'bluetooth' | 'bluetooth_low_energy' | 'wifi' | 'local';
110
- export type DisplayOrientation = 'auto' | 'portrait' | 'landscape' | 'portrait_flipped' | 'landscape_flipped';
111
- export type WorkoutEquipment = 'none' | 'swim_fins' | 'swim_kickboard' | 'swim_paddles' | 'swim_pull_buoy' | 'swim_snorkel';
112
- export type WatchfaceMode = 'digital' | 'analog' | 'connect_iq' | 'disabled';
113
- export type DigitalWatchfaceLayout = 'traditional' | 'modern' | 'bold';
114
- export type AnalogWatchfaceLayout = 'minimal' | 'traditional' | 'modern';
115
- export type RiderPositionType = 'seated' | 'standing' | 'transition_to_seated' | 'transition_to_standing';
116
- export type PowerPhaseType = 'power_phase_start_angle' | 'power_phase_end_angle' | 'power_phase_arc_length' | 'power_phase_center';
117
- export type CameraEventType = 'video_start' | 'video_split' | 'video_end' | 'photo_taken' | 'video_second_stream_start' | 'video_second_stream_split' | 'video_second_stream_end' | 'video_split_start' | 'video_second_stream_split_start' | 'video_pause' | 'video_second_stream_pause' | 'video_resume' | 'video_second_stream_resume';
118
- export type SensorType = 'accelerometer' | 'gyroscope' | 'compass' | 'barometer';
119
- export type BikeLightNetworkConfigType = 'auto' | 'individual' | 'high_visibility' | 'trail';
120
- export type CommTimeoutType = 'wildcard_pairing_timeout' | 'pairing_timeout' | 'connection_lost' | 'connection_timeout';
121
- export type CameraOrientationType = 'camera_orientation_0' | 'camera_orientation_90' | 'camera_orientation_180' | 'camera_orientation_270';
122
- export type AttitudeStage = 'failed' | 'aligning' | 'degraded' | 'valid';
123
- export type AttitudeValidity = '0' | 'track_angle_heading_valid' | 'pitch_valid' | 'roll_valid' | 'lateral_body_accel_valid' | 'normal_body_accel_valid' | 'turn_rate_valid' | 'hw_fail' | 'mag_invalid' | 'no_gps' | 'gps_invalid' | 'solution_coasting' | 'true_track_angle' | 'magnetic_heading';
124
- export type AutoSyncFrequency = 'never' | 'occasionally' | 'frequent' | 'once_a_day' | 'remote';
125
- export type ExdLayout = 'full_screen' | 'half_vertical' | 'half_horizontal' | 'half_vertical_right_split' | 'half_horizontal_bottom_split' | 'full_quarter_split' | 'half_vertical_left_split' | 'half_horizontal_top_split';
126
- export type ExdDisplayType = 'numerical' | 'simple' | 'graph' | 'bar' | 'circle_graph' | 'virtual_partner' | 'balance' | 'string_list' | 'string' | 'simple_dynamic_icon' | 'gauge';
127
- export type ExdDataUnits = 'no_units' | 'laps' | 'miles_per_hour' | 'kilometers_per_hour' | 'feet_per_hour' | 'meters_per_hour' | 'degrees_celsius' | 'degrees_farenheit' | 'zone' | 'gear' | 'rpm' | 'bpm' | 'degrees' | 'millimeters' | 'meters' | 'kilometers' | 'feet' | 'yards' | 'kilofeet' | 'miles' | 'time' | 'enum_turn_type' | 'percent' | 'watts' | 'watts_per_kilogram' | 'enum_battery_status' | 'enum_bike_light_beam_angle_mode' | 'enum_bike_light_battery_status' | 'enum_bike_light_network_config_type' | 'lights' | 'seconds' | 'minutes' | 'hours' | 'calories' | 'kilojoules' | 'milliseconds' | 'second_per_mile' | 'second_per_kilometer' | 'centimeter' | 'enum_course_point' | 'bradians' | 'enum_sport' | 'inches_hg' | 'mm_hg' | 'mbars' | 'hecto_pascals' | 'feet_per_min' | 'meters_per_min' | 'meters_per_sec' | 'eight_cardinal';
128
- export type ExdQualifiers = 'no_qualifier' | 'instantaneous' | 'average' | 'lap' | 'maximum' | 'maximum_average' | 'maximum_lap' | 'last_lap' | 'average_lap' | 'to_destination' | 'to_go' | 'to_next' | 'next_course_point' | 'total' | 'three_second_average' | 'ten_second_average' | 'thirty_second_average' | 'percent_maximum' | 'percent_maximum_average' | 'lap_percent_maximum' | 'elapsed' | 'sunrise' | 'sunset' | 'compared_to_virtual_partner' | 'maximum_24h' | 'minimum_24h' | 'minimum' | 'first' | 'second' | 'third' | 'shifter' | 'last_sport' | 'moving' | 'stopped' | 'estimated_total' | 'zone_9' | 'zone_8' | 'zone_7' | 'zone_6' | 'zone_5' | 'zone_4' | 'zone_3' | 'zone_2' | 'zone_1';
129
- export type ExdDescriptors = 'bike_light_battery_status' | 'beam_angle_status' | 'batery_level' | 'light_network_mode' | 'number_lights_connected' | 'cadence' | 'distance' | 'estimated_time_of_arrival' | 'heading' | 'time' | 'battery_level' | 'trainer_resistance' | 'trainer_target_power' | 'time_seated' | 'time_standing' | 'elevation' | 'grade' | 'ascent' | 'descent' | 'vertical_speed' | 'di2_battery_level' | 'front_gear' | 'rear_gear' | 'gear_ratio' | 'heart_rate' | 'heart_rate_zone' | 'time_in_heart_rate_zone' | 'heart_rate_reserve' | 'calories' | 'gps_accuracy' | 'gps_signal_strength' | 'temperature' | 'time_of_day' | 'balance' | 'pedal_smoothness' | 'power' | 'functional_threshold_power' | 'intensity_factor' | 'work' | 'power_ratio' | 'normalized_power' | 'training_stress_Score' | 'time_on_zone' | 'speed' | 'laps' | 'reps' | 'workout_step' | 'course_distance' | 'navigation_distance' | 'course_estimated_time_of_arrival' | 'navigation_estimated_time_of_arrival' | 'course_time' | 'navigation_time' | 'course_heading' | 'navigation_heading' | 'power_zone' | 'torque_effectiveness' | 'timer_time' | 'power_weight_ratio' | 'left_platform_center_offset' | 'right_platform_center_offset' | 'left_power_phase_start_angle' | 'right_power_phase_start_angle' | 'left_power_phase_finish_angle' | 'right_power_phase_finish_angle' | 'gears' | 'pace' | 'training_effect' | 'vertical_oscillation' | 'vertical_ratio' | 'ground_contact_time' | 'left_ground_contact_time_balance' | 'right_ground_contact_time_balance' | 'stride_length' | 'running_cadence' | 'performance_condition' | 'course_type' | 'time_in_power_zone' | 'navigation_turn' | 'course_location' | 'navigation_location' | 'compass' | 'gear_combo' | 'muscle_oxygen' | 'icon' | 'compass_heading' | 'gps_heading' | 'gps_elevation' | 'anaerobic_training_effect' | 'course' | 'off_course' | 'glide_ratio' | 'vertical_distance' | 'vmg' | 'ambient_pressure' | 'pressure' | 'vam';
130
- export type AutoActivityDetect = 'none' | 'running' | 'cycling' | 'swimming' | 'walking' | 'elliptical' | 'sedentary';
131
- export type SupportedExdScreenLayouts = '0' | 'full_screen' | 'half_vertical' | 'half_horizontal' | 'half_vertical_right_split' | 'half_horizontal_bottom_split' | 'full_quarter_split' | 'half_vertical_left_split' | 'half_horizontal_top_split';
132
- export type FitBaseType = 'enum' | 'sint8' | 'uint8' | 'string' | 'uint8z' | 'byte' | 'sint16' | 'uint16' | 'sint32' | 'uint32' | 'float32' | 'float64' | 'uint16z' | 'uint32z' | 'sint64' | 'uint64' | 'uint64z';
133
- export type TurnType = 'arriving_idx' | 'arriving_left_idx' | 'arriving_right_idx' | 'arriving_via_idx' | 'arriving_via_left_idx' | 'arriving_via_right_idx' | 'bear_keep_left_idx' | 'bear_keep_right_idx' | 'continue_idx' | 'exit_left_idx' | 'exit_right_idx' | 'ferry_idx' | 'roundabout_45_idx' | 'roundabout_90_idx' | 'roundabout_135_idx' | 'roundabout_180_idx' | 'roundabout_225_idx' | 'roundabout_270_idx' | 'roundabout_315_idx' | 'roundabout_360_idx' | 'roundabout_neg_45_idx' | 'roundabout_neg_90_idx' | 'roundabout_neg_135_idx' | 'roundabout_neg_180_idx' | 'roundabout_neg_225_idx' | 'roundabout_neg_270_idx' | 'roundabout_neg_315_idx' | 'roundabout_neg_360_idx' | 'roundabout_generic_idx' | 'roundabout_neg_generic_idx' | 'sharp_turn_left_idx' | 'sharp_turn_right_idx' | 'turn_left_idx' | 'turn_right_idx' | 'uturn_left_idx' | 'uturn_right_idx' | 'icon_inv_idx' | 'icon_idx_cnt';
134
- export type BikeLightBeamAngleMode = 'manual' | 'auto';
135
- export type FitBaseUnit = 'other' | 'kilogram' | 'pound';
136
- export type SetType = 'rest' | 'active';
137
- export type ExerciseCategory = 'bench_press' | 'calf_raise' | 'cardio' | 'carry' | 'chop' | 'core' | 'crunch' | 'curl' | 'deadlift' | 'flye' | 'hip_raise' | 'hip_stability' | 'hip_swing' | 'hyperextension' | 'lateral_raise' | 'leg_curl' | 'leg_raise' | 'lunge' | 'olympic_lift' | 'plank' | 'plyo' | 'pull_up' | 'push_up' | 'row' | 'shoulder_press' | 'shoulder_stability' | 'shrug' | 'sit_up' | 'squat' | 'total_body' | 'triceps_extension' | 'warm_up' | 'run' | 'unknown';
138
- export type BenchPressExerciseName = 'alternating_dumbbell_chest_press_on_swiss_ball' | 'barbell_bench_press' | 'barbell_board_bench_press' | 'barbell_floor_press' | 'close_grip_barbell_bench_press' | 'decline_dumbbell_bench_press' | 'dumbbell_bench_press' | 'dumbbell_floor_press' | 'incline_barbell_bench_press' | 'incline_dumbbell_bench_press' | 'incline_smith_machine_bench_press' | 'isometric_barbell_bench_press' | 'kettlebell_chest_press' | 'neutral_grip_dumbbell_bench_press' | 'neutral_grip_dumbbell_incline_bench_press' | 'one_arm_floor_press' | 'weighted_one_arm_floor_press' | 'partial_lockout' | 'reverse_grip_barbell_bench_press' | 'reverse_grip_incline_bench_press' | 'single_arm_cable_chest_press' | 'single_arm_dumbbell_bench_press' | 'smith_machine_bench_press' | 'swiss_ball_dumbbell_chest_press' | 'triple_stop_barbell_bench_press' | 'wide_grip_barbell_bench_press' | 'alternating_dumbbell_chest_press';
139
- export type CalfRaiseExerciseName = '3_way_calf_raise' | '3_way_weighted_calf_raise' | '3_way_single_leg_calf_raise' | '3_way_weighted_single_leg_calf_raise' | 'donkey_calf_raise' | 'weighted_donkey_calf_raise' | 'seated_calf_raise' | 'weighted_seated_calf_raise' | 'seated_dumbbell_toe_raise' | 'single_leg_bent_knee_calf_raise' | 'weighted_single_leg_bent_knee_calf_raise' | 'single_leg_decline_push_up' | 'single_leg_donkey_calf_raise' | 'weighted_single_leg_donkey_calf_raise' | 'single_leg_hip_raise_with_knee_hold' | 'single_leg_standing_calf_raise' | 'single_leg_standing_dumbbell_calf_raise' | 'standing_barbell_calf_raise' | 'standing_calf_raise' | 'weighted_standing_calf_raise' | 'standing_dumbbell_calf_raise';
140
- export type CardioExerciseName = 'bob_and_weave_circle' | 'weighted_bob_and_weave_circle' | 'cardio_core_crawl' | 'weighted_cardio_core_crawl' | 'double_under' | 'weighted_double_under' | 'jump_rope' | 'weighted_jump_rope' | 'jump_rope_crossover' | 'weighted_jump_rope_crossover' | 'jump_rope_jog' | 'weighted_jump_rope_jog' | 'jumping_jacks' | 'weighted_jumping_jacks' | 'ski_moguls' | 'weighted_ski_moguls' | 'split_jacks' | 'weighted_split_jacks' | 'squat_jacks' | 'weighted_squat_jacks' | 'triple_under' | 'weighted_triple_under';
141
- export type CarryExerciseName = 'bar_holds' | 'farmers_walk' | 'farmers_walk_on_toes' | 'hex_dumbbell_hold' | 'overhead_carry';
142
- export type ChopExerciseName = 'cable_pull_through' | 'cable_rotational_lift' | 'cable_woodchop' | 'cross_chop_to_knee' | 'weighted_cross_chop_to_knee' | 'dumbbell_chop' | 'half_kneeling_rotation' | 'weighted_half_kneeling_rotation' | 'half_kneeling_rotational_chop' | 'half_kneeling_rotational_reverse_chop' | 'half_kneeling_stability_chop' | 'half_kneeling_stability_reverse_chop' | 'kneeling_rotational_chop' | 'kneeling_rotational_reverse_chop' | 'kneeling_stability_chop' | 'kneeling_woodchopper' | 'medicine_ball_wood_chops' | 'power_squat_chops' | 'weighted_power_squat_chops' | 'standing_rotational_chop' | 'standing_split_rotational_chop' | 'standing_split_rotational_reverse_chop' | 'standing_stability_reverse_chop';
143
- export type CoreExerciseName = 'abs_jabs' | 'weighted_abs_jabs' | 'alternating_plate_reach' | 'barbell_rollout' | 'weighted_barbell_rollout' | 'body_bar_oblique_twist' | 'cable_core_press' | 'cable_side_bend' | 'side_bend' | 'weighted_side_bend' | 'crescent_circle' | 'weighted_crescent_circle' | 'cycling_russian_twist' | 'weighted_cycling_russian_twist' | 'elevated_feet_russian_twist' | 'weighted_elevated_feet_russian_twist' | 'half_turkish_get_up' | 'kettlebell_windmill' | 'kneeling_ab_wheel' | 'weighted_kneeling_ab_wheel' | 'modified_front_lever' | 'open_knee_tucks' | 'weighted_open_knee_tucks' | 'side_abs_leg_lift' | 'weighted_side_abs_leg_lift' | 'swiss_ball_jackknife' | 'weighted_swiss_ball_jackknife' | 'swiss_ball_pike' | 'weighted_swiss_ball_pike' | 'swiss_ball_rollout' | 'weighted_swiss_ball_rollout' | 'triangle_hip_press' | 'weighted_triangle_hip_press' | 'trx_suspended_jackknife' | 'weighted_trx_suspended_jackknife' | 'u_boat' | 'weighted_u_boat' | 'windmill_switches' | 'weighted_windmill_switches' | 'alternating_slide_out' | 'weighted_alternating_slide_out' | 'ghd_back_extensions' | 'weighted_ghd_back_extensions' | 'overhead_walk' | 'inchworm' | 'weighted_modified_front_lever' | 'russian_twist' | 'abdominal_leg_rotations' | 'arm_and_leg_extension_on_knees' | 'bicycle' | 'bicep_curl_with_leg_extension' | 'cat_cow' | 'corkscrew' | 'criss_cross' | 'criss_cross_with_ball' | 'double_leg_stretch' | 'knee_folds' | 'lower_lift' | 'neck_pull' | 'pelvic_clocks' | 'roll_over' | 'roll_up' | 'rolling' | 'rowing_1' | 'rowing_2' | 'scissors' | 'single_leg_circles' | 'single_leg_stretch' | 'snake_twist_1_and_2' | 'swan' | 'swimming' | 'teaser' | 'the_hundred';
144
- export type CrunchExerciseName = 'bicycle_crunch' | 'cable_crunch' | 'circular_arm_crunch' | 'crossed_arms_crunch' | 'weighted_crossed_arms_crunch' | 'cross_leg_reverse_crunch' | 'weighted_cross_leg_reverse_crunch' | 'crunch_chop' | 'weighted_crunch_chop' | 'double_crunch' | 'weighted_double_crunch' | 'elbow_to_knee_crunch' | 'weighted_elbow_to_knee_crunch' | 'flutter_kicks' | 'weighted_flutter_kicks' | 'foam_roller_reverse_crunch_on_bench' | 'weighted_foam_roller_reverse_crunch_on_bench' | 'foam_roller_reverse_crunch_with_dumbbell' | 'foam_roller_reverse_crunch_with_medicine_ball' | 'frog_press' | 'hanging_knee_raise_oblique_crunch' | 'weighted_hanging_knee_raise_oblique_crunch' | 'hip_crossover' | 'weighted_hip_crossover' | 'hollow_rock' | 'weighted_hollow_rock' | 'incline_reverse_crunch' | 'weighted_incline_reverse_crunch' | 'kneeling_cable_crunch' | 'kneeling_cross_crunch' | 'weighted_kneeling_cross_crunch' | 'kneeling_oblique_cable_crunch' | 'knees_to_elbow' | 'leg_extensions' | 'weighted_leg_extensions' | 'leg_levers' | 'mcgill_curl_up' | 'weighted_mcgill_curl_up' | 'modified_pilates_roll_up_with_ball' | 'weighted_modified_pilates_roll_up_with_ball' | 'pilates_crunch' | 'weighted_pilates_crunch' | 'pilates_roll_up_with_ball' | 'weighted_pilates_roll_up_with_ball' | 'raised_legs_crunch' | 'weighted_raised_legs_crunch' | 'reverse_crunch' | 'weighted_reverse_crunch' | 'reverse_crunch_on_a_bench' | 'weighted_reverse_crunch_on_a_bench' | 'reverse_curl_and_lift' | 'weighted_reverse_curl_and_lift' | 'rotational_lift' | 'weighted_rotational_lift' | 'seated_alternating_reverse_crunch' | 'weighted_seated_alternating_reverse_crunch' | 'seated_leg_u' | 'weighted_seated_leg_u' | 'side_to_side_crunch_and_weave' | 'weighted_side_to_side_crunch_and_weave' | 'single_leg_reverse_crunch' | 'weighted_single_leg_reverse_crunch' | 'skater_crunch_cross' | 'weighted_skater_crunch_cross' | 'standing_cable_crunch' | 'standing_side_crunch' | 'step_climb' | 'weighted_step_climb' | 'swiss_ball_crunch' | 'swiss_ball_reverse_crunch' | 'weighted_swiss_ball_reverse_crunch' | 'swiss_ball_russian_twist' | 'weighted_swiss_ball_russian_twist' | 'swiss_ball_side_crunch' | 'weighted_swiss_ball_side_crunch' | 'thoracic_crunches_on_foam_roller' | 'weighted_thoracic_crunches_on_foam_roller' | 'triceps_crunch' | 'weighted_bicycle_crunch' | 'weighted_crunch' | 'weighted_swiss_ball_crunch' | 'toes_to_bar' | 'weighted_toes_to_bar' | 'crunch' | 'straight_leg_crunch_with_ball';
145
- export type CurlExerciseName = 'alternating_dumbbell_biceps_curl' | 'alternating_dumbbell_biceps_curl_on_swiss_ball' | 'alternating_incline_dumbbell_biceps_curl' | 'barbell_biceps_curl' | 'barbell_reverse_wrist_curl' | 'barbell_wrist_curl' | 'behind_the_back_barbell_reverse_wrist_curl' | 'behind_the_back_one_arm_cable_curl' | 'cable_biceps_curl' | 'cable_hammer_curl' | 'cheating_barbell_biceps_curl' | 'close_grip_ez_bar_biceps_curl' | 'cross_body_dumbbell_hammer_curl' | 'dead_hang_biceps_curl' | 'decline_hammer_curl' | 'dumbbell_biceps_curl_with_static_hold' | 'dumbbell_hammer_curl' | 'dumbbell_reverse_wrist_curl' | 'dumbbell_wrist_curl' | 'ez_bar_preacher_curl' | 'forward_bend_biceps_curl' | 'hammer_curl_to_press' | 'incline_dumbbell_biceps_curl' | 'incline_offset_thumb_dumbbell_curl' | 'kettlebell_biceps_curl' | 'lying_concentration_cable_curl' | 'one_arm_preacher_curl' | 'plate_pinch_curl' | 'preacher_curl_with_cable' | 'reverse_ez_bar_curl' | 'reverse_grip_wrist_curl' | 'reverse_grip_barbell_biceps_curl' | 'seated_alternating_dumbbell_biceps_curl' | 'seated_dumbbell_biceps_curl' | 'seated_reverse_dumbbell_curl' | 'split_stance_offset_pinky_dumbbell_curl' | 'standing_alternating_dumbbell_curls' | 'standing_dumbbell_biceps_curl' | 'standing_ez_bar_biceps_curl' | 'static_curl' | 'swiss_ball_dumbbell_overhead_triceps_extension' | 'swiss_ball_ez_bar_preacher_curl' | 'twisting_standing_dumbbell_biceps_curl' | 'wide_grip_ez_bar_biceps_curl';
146
- export type DeadliftExerciseName = 'barbell_deadlift' | 'barbell_straight_leg_deadlift' | 'dumbbell_deadlift' | 'dumbbell_single_leg_deadlift_to_row' | 'dumbbell_straight_leg_deadlift' | 'kettlebell_floor_to_shelf' | 'one_arm_one_leg_deadlift' | 'rack_pull' | 'rotational_dumbbell_straight_leg_deadlift' | 'single_arm_deadlift' | 'single_leg_barbell_deadlift' | 'single_leg_barbell_straight_leg_deadlift' | 'single_leg_deadlift_with_barbell' | 'single_leg_rdl_circuit' | 'single_leg_romanian_deadlift_with_dumbbell' | 'sumo_deadlift' | 'sumo_deadlift_high_pull' | 'trap_bar_deadlift' | 'wide_grip_barbell_deadlift';
147
- export type FlyeExerciseName = 'cable_crossover' | 'decline_dumbbell_flye' | 'dumbbell_flye' | 'incline_dumbbell_flye' | 'kettlebell_flye' | 'kneeling_rear_flye' | 'single_arm_standing_cable_reverse_flye' | 'swiss_ball_dumbbell_flye' | 'arm_rotations' | 'hug_a_tree';
148
- export type HipRaiseExerciseName = 'barbell_hip_thrust_on_floor' | 'barbell_hip_thrust_with_bench' | 'bent_knee_swiss_ball_reverse_hip_raise' | 'weighted_bent_knee_swiss_ball_reverse_hip_raise' | 'bridge_with_leg_extension' | 'weighted_bridge_with_leg_extension' | 'clam_bridge' | 'front_kick_tabletop' | 'weighted_front_kick_tabletop' | 'hip_extension_and_cross' | 'weighted_hip_extension_and_cross' | 'hip_raise' | 'weighted_hip_raise' | 'hip_raise_with_feet_on_swiss_ball' | 'weighted_hip_raise_with_feet_on_swiss_ball' | 'hip_raise_with_head_on_bosu_ball' | 'weighted_hip_raise_with_head_on_bosu_ball' | 'hip_raise_with_head_on_swiss_ball' | 'weighted_hip_raise_with_head_on_swiss_ball' | 'hip_raise_with_knee_squeeze' | 'weighted_hip_raise_with_knee_squeeze' | 'incline_rear_leg_extension' | 'weighted_incline_rear_leg_extension' | 'kettlebell_swing' | 'marching_hip_raise' | 'weighted_marching_hip_raise' | 'marching_hip_raise_with_feet_on_a_swiss_ball' | 'weighted_marching_hip_raise_with_feet_on_a_swiss_ball' | 'reverse_hip_raise' | 'weighted_reverse_hip_raise' | 'single_leg_hip_raise' | 'weighted_single_leg_hip_raise' | 'single_leg_hip_raise_with_foot_on_bench' | 'weighted_single_leg_hip_raise_with_foot_on_bench' | 'single_leg_hip_raise_with_foot_on_bosu_ball' | 'weighted_single_leg_hip_raise_with_foot_on_bosu_ball' | 'single_leg_hip_raise_with_foot_on_foam_roller' | 'weighted_single_leg_hip_raise_with_foot_on_foam_roller' | 'single_leg_hip_raise_with_foot_on_medicine_ball' | 'weighted_single_leg_hip_raise_with_foot_on_medicine_ball' | 'single_leg_hip_raise_with_head_on_bosu_ball' | 'weighted_single_leg_hip_raise_with_head_on_bosu_ball' | 'weighted_clam_bridge' | 'single_leg_swiss_ball_hip_raise_and_leg_curl' | 'clams' | 'inner_thigh_circles' | 'inner_thigh_side_lift' | 'leg_circles' | 'leg_lift' | 'leg_lift_in_external_rotation';
149
- export type HipStabilityExerciseName = 'band_side_lying_leg_raise' | 'dead_bug' | 'weighted_dead_bug' | 'external_hip_raise' | 'weighted_external_hip_raise' | 'fire_hydrant_kicks' | 'weighted_fire_hydrant_kicks' | 'hip_circles' | 'weighted_hip_circles' | 'inner_thigh_lift' | 'weighted_inner_thigh_lift' | 'lateral_walks_with_band_at_ankles' | 'pretzel_side_kick' | 'weighted_pretzel_side_kick' | 'prone_hip_internal_rotation' | 'weighted_prone_hip_internal_rotation' | 'quadruped' | 'quadruped_hip_extension' | 'weighted_quadruped_hip_extension' | 'quadruped_with_leg_lift' | 'weighted_quadruped_with_leg_lift' | 'side_lying_leg_raise' | 'weighted_side_lying_leg_raise' | 'sliding_hip_adduction' | 'weighted_sliding_hip_adduction' | 'standing_adduction' | 'weighted_standing_adduction' | 'standing_cable_hip_abduction' | 'standing_hip_abduction' | 'weighted_standing_hip_abduction' | 'standing_rear_leg_raise' | 'weighted_standing_rear_leg_raise' | 'supine_hip_internal_rotation' | 'weighted_supine_hip_internal_rotation';
150
- export type HipSwingExcerciseName = 'single_arm_kettlebell_swing' | 'single_arm_dumbbell_swing' | 'step_out_swing';
151
- export type HyperextensionExerciseName = 'back_extension_with_opposite_arm_and_leg_reach' | 'weighted_back_extension_with_opposite_arm_and_leg_reach' | 'base_rotations' | 'weighted_base_rotations' | 'bent_knee_reverse_hyperextension' | 'weighted_bent_knee_reverse_hyperextension' | 'hollow_hold_and_roll' | 'weighted_hollow_hold_and_roll' | 'kicks' | 'weighted_kicks' | 'knee_raises' | 'weighted_knee_raises' | 'kneeling_superman' | 'weighted_kneeling_superman' | 'lat_pull_down_with_row' | 'medicine_ball_deadlift_to_reach' | 'one_arm_one_leg_row' | 'one_arm_row_with_band' | 'overhead_lunge_with_medicine_ball' | 'plank_knee_tucks' | 'weighted_plank_knee_tucks' | 'side_step' | 'weighted_side_step' | 'single_leg_back_extension' | 'weighted_single_leg_back_extension' | 'spine_extension' | 'weighted_spine_extension' | 'static_back_extension' | 'weighted_static_back_extension' | 'superman_from_floor' | 'weighted_superman_from_floor' | 'swiss_ball_back_extension' | 'weighted_swiss_ball_back_extension' | 'swiss_ball_hyperextension' | 'weighted_swiss_ball_hyperextension' | 'swiss_ball_opposite_arm_and_leg_lift' | 'weighted_swiss_ball_opposite_arm_and_leg_lift' | 'superman_on_swiss_ball' | 'cobra' | 'supine_floor_barre';
152
- export type LateralRaiseExerciseName = '45_degree_cable_external_rotation' | 'alternating_lateral_raise_with_static_hold' | 'bar_muscle_up' | 'bent_over_lateral_raise' | 'cable_diagonal_raise' | 'cable_front_raise' | 'calorie_row' | 'combo_shoulder_raise' | 'dumbbell_diagonal_raise' | 'dumbbell_v_raise' | 'front_raise' | 'leaning_dumbbell_lateral_raise' | 'lying_dumbbell_raise' | 'muscle_up' | 'one_arm_cable_lateral_raise' | 'overhand_grip_rear_lateral_raise' | 'plate_raises' | 'ring_dip' | 'weighted_ring_dip' | 'ring_muscle_up' | 'weighted_ring_muscle_up' | 'rope_climb' | 'weighted_rope_climb' | 'scaption' | 'seated_lateral_raise' | 'seated_rear_lateral_raise' | 'side_lying_lateral_raise' | 'standing_lift' | 'suspended_row' | 'underhand_grip_rear_lateral_raise' | 'wall_slide' | 'weighted_wall_slide' | 'arm_circles' | 'shaving_the_head';
153
- export type LegCurlExerciseName = 'leg_curl' | 'weighted_leg_curl' | 'good_morning' | 'seated_barbell_good_morning' | 'single_leg_barbell_good_morning' | 'single_leg_sliding_leg_curl' | 'sliding_leg_curl' | 'split_barbell_good_morning' | 'split_stance_extension' | 'staggered_stance_good_morning' | 'swiss_ball_hip_raise_and_leg_curl' | 'zercher_good_morning';
154
- export type LegRaiseExerciseName = 'hanging_knee_raise' | 'hanging_leg_raise' | 'weighted_hanging_leg_raise' | 'hanging_single_leg_raise' | 'weighted_hanging_single_leg_raise' | 'kettlebell_leg_raises' | 'leg_lowering_drill' | 'weighted_leg_lowering_drill' | 'lying_straight_leg_raise' | 'weighted_lying_straight_leg_raise' | 'medicine_ball_leg_drops' | 'quadruped_leg_raise' | 'weighted_quadruped_leg_raise' | 'reverse_leg_raise' | 'weighted_reverse_leg_raise' | 'reverse_leg_raise_on_swiss_ball' | 'weighted_reverse_leg_raise_on_swiss_ball' | 'single_leg_lowering_drill' | 'weighted_single_leg_lowering_drill' | 'weighted_hanging_knee_raise' | 'lateral_stepover' | 'weighted_lateral_stepover';
155
- export type LungeExerciseName = 'overhead_lunge' | 'lunge_matrix' | 'weighted_lunge_matrix' | 'alternating_barbell_forward_lunge' | 'alternating_dumbbell_lunge_with_reach' | 'back_foot_elevated_dumbbell_split_squat' | 'barbell_box_lunge' | 'barbell_bulgarian_split_squat' | 'barbell_crossover_lunge' | 'barbell_front_split_squat' | 'barbell_lunge' | 'barbell_reverse_lunge' | 'barbell_side_lunge' | 'barbell_split_squat' | 'core_control_rear_lunge' | 'diagonal_lunge' | 'drop_lunge' | 'dumbbell_box_lunge' | 'dumbbell_bulgarian_split_squat' | 'dumbbell_crossover_lunge' | 'dumbbell_diagonal_lunge' | 'dumbbell_lunge' | 'dumbbell_lunge_and_rotation' | 'dumbbell_overhead_bulgarian_split_squat' | 'dumbbell_reverse_lunge_to_high_knee_and_press' | 'dumbbell_side_lunge' | 'elevated_front_foot_barbell_split_squat' | 'front_foot_elevated_dumbbell_split_squat' | 'gunslinger_lunge' | 'lawnmower_lunge' | 'low_lunge_with_isometric_adduction' | 'low_side_to_side_lunge' | 'lunge' | 'weighted_lunge' | 'lunge_with_arm_reach' | 'lunge_with_diagonal_reach' | 'lunge_with_side_bend' | 'offset_dumbbell_lunge' | 'offset_dumbbell_reverse_lunge' | 'overhead_bulgarian_split_squat' | 'overhead_dumbbell_reverse_lunge' | 'overhead_dumbbell_split_squat' | 'overhead_lunge_with_rotation' | 'reverse_barbell_box_lunge' | 'reverse_box_lunge' | 'reverse_dumbbell_box_lunge' | 'reverse_dumbbell_crossover_lunge' | 'reverse_dumbbell_diagonal_lunge' | 'reverse_lunge_with_reach_back' | 'weighted_reverse_lunge_with_reach_back' | 'reverse_lunge_with_twist_and_overhead_reach' | 'weighted_reverse_lunge_with_twist_and_overhead_reach' | 'reverse_sliding_box_lunge' | 'weighted_reverse_sliding_box_lunge' | 'reverse_sliding_lunge' | 'weighted_reverse_sliding_lunge' | 'runners_lunge_to_balance' | 'weighted_runners_lunge_to_balance' | 'shifting_side_lunge' | 'side_and_crossover_lunge' | 'weighted_side_and_crossover_lunge' | 'side_lunge' | 'weighted_side_lunge' | 'side_lunge_and_press' | 'side_lunge_jump_off' | 'side_lunge_sweep' | 'weighted_side_lunge_sweep' | 'side_lunge_to_crossover_tap' | 'weighted_side_lunge_to_crossover_tap' | 'side_to_side_lunge_chops' | 'weighted_side_to_side_lunge_chops' | 'siff_jump_lunge' | 'weighted_siff_jump_lunge' | 'single_arm_reverse_lunge_and_press' | 'sliding_lateral_lunge' | 'weighted_sliding_lateral_lunge' | 'walking_barbell_lunge' | 'walking_dumbbell_lunge' | 'walking_lunge' | 'weighted_walking_lunge' | 'wide_grip_overhead_barbell_split_squat';
156
- export type OlympicLiftExerciseName = 'barbell_hang_power_clean' | 'barbell_hang_squat_clean' | 'barbell_power_clean' | 'barbell_power_snatch' | 'barbell_squat_clean' | 'clean_and_jerk' | 'barbell_hang_power_snatch' | 'barbell_hang_pull' | 'barbell_high_pull' | 'barbell_snatch' | 'barbell_split_jerk' | 'clean' | 'dumbbell_clean' | 'dumbbell_hang_pull' | 'one_hand_dumbbell_split_snatch' | 'push_jerk' | 'single_arm_dumbbell_snatch' | 'single_arm_hang_snatch' | 'single_arm_kettlebell_snatch' | 'split_jerk' | 'squat_clean_and_jerk';
157
- export type PlankExerciseName = '45_degree_plank' | 'weighted_45_degree_plank' | '90_degree_static_hold' | 'weighted_90_degree_static_hold' | 'bear_crawl' | 'weighted_bear_crawl' | 'cross_body_mountain_climber' | 'weighted_cross_body_mountain_climber' | 'elbow_plank_pike_jacks' | 'weighted_elbow_plank_pike_jacks' | 'elevated_feet_plank' | 'weighted_elevated_feet_plank' | 'elevator_abs' | 'weighted_elevator_abs' | 'extended_plank' | 'weighted_extended_plank' | 'full_plank_passe_twist' | 'weighted_full_plank_passe_twist' | 'inching_elbow_plank' | 'weighted_inching_elbow_plank' | 'inchworm_to_side_plank' | 'weighted_inchworm_to_side_plank' | 'kneeling_plank' | 'weighted_kneeling_plank' | 'kneeling_side_plank_with_leg_lift' | 'weighted_kneeling_side_plank_with_leg_lift' | 'lateral_roll' | 'weighted_lateral_roll' | 'lying_reverse_plank' | 'weighted_lying_reverse_plank' | 'medicine_ball_mountain_climber' | 'weighted_medicine_ball_mountain_climber' | 'modified_mountain_climber_and_extension' | 'weighted_modified_mountain_climber_and_extension' | 'mountain_climber' | 'weighted_mountain_climber' | 'mountain_climber_on_sliding_discs' | 'weighted_mountain_climber_on_sliding_discs' | 'mountain_climber_with_feet_on_bosu_ball' | 'weighted_mountain_climber_with_feet_on_bosu_ball' | 'mountain_climber_with_hands_on_bench' | 'mountain_climber_with_hands_on_swiss_ball' | 'weighted_mountain_climber_with_hands_on_swiss_ball' | 'plank' | 'plank_jacks_with_feet_on_sliding_discs' | 'weighted_plank_jacks_with_feet_on_sliding_discs' | 'plank_knee_twist' | 'weighted_plank_knee_twist' | 'plank_pike_jumps' | 'weighted_plank_pike_jumps' | 'plank_pikes' | 'weighted_plank_pikes' | 'plank_to_stand_up' | 'weighted_plank_to_stand_up' | 'plank_with_arm_raise' | 'weighted_plank_with_arm_raise' | 'plank_with_knee_to_elbow' | 'weighted_plank_with_knee_to_elbow' | 'plank_with_oblique_crunch' | 'weighted_plank_with_oblique_crunch' | 'plyometric_side_plank' | 'weighted_plyometric_side_plank' | 'rolling_side_plank' | 'weighted_rolling_side_plank' | 'side_kick_plank' | 'weighted_side_kick_plank' | 'side_plank' | 'weighted_side_plank' | 'side_plank_and_row' | 'weighted_side_plank_and_row' | 'side_plank_lift' | 'weighted_side_plank_lift' | 'side_plank_with_elbow_on_bosu_ball' | 'weighted_side_plank_with_elbow_on_bosu_ball' | 'side_plank_with_feet_on_bench' | 'weighted_side_plank_with_feet_on_bench' | 'side_plank_with_knee_circle' | 'weighted_side_plank_with_knee_circle' | 'side_plank_with_knee_tuck' | 'weighted_side_plank_with_knee_tuck' | 'side_plank_with_leg_lift' | 'weighted_side_plank_with_leg_lift' | 'side_plank_with_reach_under' | 'weighted_side_plank_with_reach_under' | 'single_leg_elevated_feet_plank' | 'weighted_single_leg_elevated_feet_plank' | 'single_leg_flex_and_extend' | 'weighted_single_leg_flex_and_extend' | 'single_leg_side_plank' | 'weighted_single_leg_side_plank' | 'spiderman_plank' | 'weighted_spiderman_plank' | 'straight_arm_plank' | 'weighted_straight_arm_plank' | 'straight_arm_plank_with_shoulder_touch' | 'weighted_straight_arm_plank_with_shoulder_touch' | 'swiss_ball_plank' | 'weighted_swiss_ball_plank' | 'swiss_ball_plank_leg_lift' | 'weighted_swiss_ball_plank_leg_lift' | 'swiss_ball_plank_leg_lift_and_hold' | 'swiss_ball_plank_with_feet_on_bench' | 'weighted_swiss_ball_plank_with_feet_on_bench' | 'swiss_ball_prone_jackknife' | 'weighted_swiss_ball_prone_jackknife' | 'swiss_ball_side_plank' | 'weighted_swiss_ball_side_plank' | 'three_way_plank' | 'weighted_three_way_plank' | 'towel_plank_and_knee_in' | 'weighted_towel_plank_and_knee_in' | 't_stabilization' | 'weighted_t_stabilization' | 'turkish_get_up_to_side_plank' | 'weighted_turkish_get_up_to_side_plank' | 'two_point_plank' | 'weighted_two_point_plank' | 'weighted_plank' | 'wide_stance_plank_with_diagonal_arm_lift' | 'weighted_wide_stance_plank_with_diagonal_arm_lift' | 'wide_stance_plank_with_diagonal_leg_lift' | 'weighted_wide_stance_plank_with_diagonal_leg_lift' | 'wide_stance_plank_with_leg_lift' | 'weighted_wide_stance_plank_with_leg_lift' | 'wide_stance_plank_with_opposite_arm_and_leg_lift' | 'weighted_mountain_climber_with_hands_on_bench' | 'weighted_swiss_ball_plank_leg_lift_and_hold' | 'weighted_wide_stance_plank_with_opposite_arm_and_leg_lift' | 'plank_with_feet_on_swiss_ball' | 'side_plank_to_plank_with_reach_under' | 'bridge_with_glute_lower_lift' | 'bridge_one_leg_bridge' | 'plank_with_arm_variations' | 'plank_with_leg_lift' | 'reverse_plank_with_leg_pull';
158
- export type PlyoExerciseName = 'alternating_jump_lunge' | 'weighted_alternating_jump_lunge' | 'barbell_jump_squat' | 'body_weight_jump_squat' | 'weighted_jump_squat' | 'cross_knee_strike' | 'weighted_cross_knee_strike' | 'depth_jump' | 'weighted_depth_jump' | 'dumbbell_jump_squat' | 'dumbbell_split_jump' | 'front_knee_strike' | 'weighted_front_knee_strike' | 'high_box_jump' | 'weighted_high_box_jump' | 'isometric_explosive_body_weight_jump_squat' | 'weighted_isometric_explosive_jump_squat' | 'lateral_leap_and_hop' | 'weighted_lateral_leap_and_hop' | 'lateral_plyo_squats' | 'weighted_lateral_plyo_squats' | 'lateral_slide' | 'weighted_lateral_slide' | 'medicine_ball_overhead_throws' | 'medicine_ball_side_throw' | 'medicine_ball_slam' | 'side_to_side_medicine_ball_throws' | 'side_to_side_shuffle_jump' | 'weighted_side_to_side_shuffle_jump' | 'squat_jump_onto_box' | 'weighted_squat_jump_onto_box' | 'squat_jumps_in_and_out' | 'weighted_squat_jumps_in_and_out';
159
- export type PullUpExerciseName = 'banded_pull_ups' | '30_degree_lat_pulldown' | 'band_assisted_chin_up' | 'close_grip_chin_up' | 'weighted_close_grip_chin_up' | 'close_grip_lat_pulldown' | 'crossover_chin_up' | 'weighted_crossover_chin_up' | 'ez_bar_pullover' | 'hanging_hurdle' | 'weighted_hanging_hurdle' | 'kneeling_lat_pulldown' | 'kneeling_underhand_grip_lat_pulldown' | 'lat_pulldown' | 'mixed_grip_chin_up' | 'weighted_mixed_grip_chin_up' | 'mixed_grip_pull_up' | 'weighted_mixed_grip_pull_up' | 'reverse_grip_pulldown' | 'standing_cable_pullover' | 'straight_arm_pulldown' | 'swiss_ball_ez_bar_pullover' | 'towel_pull_up' | 'weighted_towel_pull_up' | 'weighted_pull_up' | 'wide_grip_lat_pulldown' | 'wide_grip_pull_up' | 'weighted_wide_grip_pull_up' | 'burpee_pull_up' | 'weighted_burpee_pull_up' | 'jumping_pull_ups' | 'weighted_jumping_pull_ups' | 'kipping_pull_up' | 'weighted_kipping_pull_up' | 'l_pull_up' | 'weighted_l_pull_up' | 'suspended_chin_up' | 'weighted_suspended_chin_up' | 'pull_up';
160
- export type PushUpExerciseName = 'chest_press_with_band' | 'alternating_staggered_push_up' | 'weighted_alternating_staggered_push_up' | 'alternating_hands_medicine_ball_push_up' | 'weighted_alternating_hands_medicine_ball_push_up' | 'bosu_ball_push_up' | 'weighted_bosu_ball_push_up' | 'clapping_push_up' | 'weighted_clapping_push_up' | 'close_grip_medicine_ball_push_up' | 'weighted_close_grip_medicine_ball_push_up' | 'close_hands_push_up' | 'weighted_close_hands_push_up' | 'decline_push_up' | 'weighted_decline_push_up' | 'diamond_push_up' | 'weighted_diamond_push_up' | 'explosive_crossover_push_up' | 'weighted_explosive_crossover_push_up' | 'explosive_push_up' | 'weighted_explosive_push_up' | 'feet_elevated_side_to_side_push_up' | 'weighted_feet_elevated_side_to_side_push_up' | 'hand_release_push_up' | 'weighted_hand_release_push_up' | 'handstand_push_up' | 'weighted_handstand_push_up' | 'incline_push_up' | 'weighted_incline_push_up' | 'isometric_explosive_push_up' | 'weighted_isometric_explosive_push_up' | 'judo_push_up' | 'weighted_judo_push_up' | 'kneeling_push_up' | 'weighted_kneeling_push_up' | 'medicine_ball_chest_pass' | 'medicine_ball_push_up' | 'weighted_medicine_ball_push_up' | 'one_arm_push_up' | 'weighted_one_arm_push_up' | 'weighted_push_up' | 'push_up_and_row' | 'weighted_push_up_and_row' | 'push_up_plus' | 'weighted_push_up_plus' | 'push_up_with_feet_on_swiss_ball' | 'weighted_push_up_with_feet_on_swiss_ball' | 'push_up_with_one_hand_on_medicine_ball' | 'weighted_push_up_with_one_hand_on_medicine_ball' | 'shoulder_push_up' | 'weighted_shoulder_push_up' | 'single_arm_medicine_ball_push_up' | 'weighted_single_arm_medicine_ball_push_up' | 'spiderman_push_up' | 'weighted_spiderman_push_up' | 'stacked_feet_push_up' | 'weighted_stacked_feet_push_up' | 'staggered_hands_push_up' | 'weighted_staggered_hands_push_up' | 'suspended_push_up' | 'weighted_suspended_push_up' | 'swiss_ball_push_up' | 'weighted_swiss_ball_push_up' | 'swiss_ball_push_up_plus' | 'weighted_swiss_ball_push_up_plus' | 't_push_up' | 'weighted_t_push_up' | 'triple_stop_push_up' | 'weighted_triple_stop_push_up' | 'wide_hands_push_up' | 'weighted_wide_hands_push_up' | 'parallette_handstand_push_up' | 'weighted_parallette_handstand_push_up' | 'ring_handstand_push_up' | 'weighted_ring_handstand_push_up' | 'ring_push_up' | 'weighted_ring_push_up' | 'push_up' | 'pilates_pushup';
161
- export type RowExerciseName = 'barbell_straight_leg_deadlift_to_row' | 'cable_row_standing' | 'dumbbell_row' | 'elevated_feet_inverted_row' | 'weighted_elevated_feet_inverted_row' | 'face_pull' | 'face_pull_with_external_rotation' | 'inverted_row_with_feet_on_swiss_ball' | 'weighted_inverted_row_with_feet_on_swiss_ball' | 'kettlebell_row' | 'modified_inverted_row' | 'weighted_modified_inverted_row' | 'neutral_grip_alternating_dumbbell_row' | 'one_arm_bent_over_row' | 'one_legged_dumbbell_row' | 'renegade_row' | 'reverse_grip_barbell_row' | 'rope_handle_cable_row' | 'seated_cable_row' | 'seated_dumbbell_row' | 'single_arm_cable_row' | 'single_arm_cable_row_and_rotation' | 'single_arm_inverted_row' | 'weighted_single_arm_inverted_row' | 'single_arm_neutral_grip_dumbbell_row' | 'single_arm_neutral_grip_dumbbell_row_and_rotation' | 'suspended_inverted_row' | 'weighted_suspended_inverted_row' | 't_bar_row' | 'towel_grip_inverted_row' | 'weighted_towel_grip_inverted_row' | 'underhand_grip_cable_row' | 'v_grip_cable_row' | 'wide_grip_seated_cable_row';
162
- export type ShoulderPressExerciseName = 'alternating_dumbbell_shoulder_press' | 'arnold_press' | 'barbell_front_squat_to_push_press' | 'barbell_push_press' | 'barbell_shoulder_press' | 'dead_curl_press' | 'dumbbell_alternating_shoulder_press_and_twist' | 'dumbbell_hammer_curl_to_lunge_to_press' | 'dumbbell_push_press' | 'floor_inverted_shoulder_press' | 'weighted_floor_inverted_shoulder_press' | 'inverted_shoulder_press' | 'weighted_inverted_shoulder_press' | 'one_arm_push_press' | 'overhead_barbell_press' | 'overhead_dumbbell_press' | 'seated_barbell_shoulder_press' | 'seated_dumbbell_shoulder_press' | 'single_arm_dumbbell_shoulder_press' | 'single_arm_step_up_and_press' | 'smith_machine_overhead_press' | 'split_stance_hammer_curl_to_press' | 'swiss_ball_dumbbell_shoulder_press' | 'weight_plate_front_raise';
163
- export type ShoulderStabilityExerciseName = '90_degree_cable_external_rotation' | 'band_external_rotation' | 'band_internal_rotation' | 'bent_arm_lateral_raise_and_external_rotation' | 'cable_external_rotation' | 'dumbbell_face_pull_with_external_rotation' | 'floor_i_raise' | 'weighted_floor_i_raise' | 'floor_t_raise' | 'weighted_floor_t_raise' | 'floor_y_raise' | 'weighted_floor_y_raise' | 'incline_i_raise' | 'weighted_incline_i_raise' | 'incline_l_raise' | 'weighted_incline_l_raise' | 'incline_t_raise' | 'weighted_incline_t_raise' | 'incline_w_raise' | 'weighted_incline_w_raise' | 'incline_y_raise' | 'weighted_incline_y_raise' | 'lying_external_rotation' | 'seated_dumbbell_external_rotation' | 'standing_l_raise' | 'swiss_ball_i_raise' | 'weighted_swiss_ball_i_raise' | 'swiss_ball_t_raise' | 'weighted_swiss_ball_t_raise' | 'swiss_ball_w_raise' | 'weighted_swiss_ball_w_raise' | 'swiss_ball_y_raise' | 'weighted_swiss_ball_y_raise';
164
- export type ShrugExerciseName = 'barbell_jump_shrug' | 'barbell_shrug' | 'barbell_upright_row' | 'behind_the_back_smith_machine_shrug' | 'dumbbell_jump_shrug' | 'dumbbell_shrug' | 'dumbbell_upright_row' | 'incline_dumbbell_shrug' | 'overhead_barbell_shrug' | 'overhead_dumbbell_shrug' | 'scaption_and_shrug' | 'scapular_retraction' | 'serratus_chair_shrug' | 'weighted_serratus_chair_shrug' | 'serratus_shrug' | 'weighted_serratus_shrug' | 'wide_grip_jump_shrug';
165
- export type SitUpExerciseName = 'alternating_sit_up' | 'weighted_alternating_sit_up' | 'bent_knee_v_up' | 'weighted_bent_knee_v_up' | 'butterfly_sit_up' | 'weighted_butterfly_situp' | 'cross_punch_roll_up' | 'weighted_cross_punch_roll_up' | 'crossed_arms_sit_up' | 'weighted_crossed_arms_sit_up' | 'get_up_sit_up' | 'weighted_get_up_sit_up' | 'hovering_sit_up' | 'weighted_hovering_sit_up' | 'kettlebell_sit_up' | 'medicine_ball_alternating_v_up' | 'medicine_ball_sit_up' | 'medicine_ball_v_up' | 'modified_sit_up' | 'negative_sit_up' | 'one_arm_full_sit_up' | 'reclining_circle' | 'weighted_reclining_circle' | 'reverse_curl_up' | 'weighted_reverse_curl_up' | 'single_leg_swiss_ball_jackknife' | 'weighted_single_leg_swiss_ball_jackknife' | 'the_teaser' | 'the_teaser_weighted' | 'three_part_roll_down' | 'weighted_three_part_roll_down' | 'v_up' | 'weighted_v_up' | 'weighted_russian_twist_on_swiss_ball' | 'weighted_sit_up' | 'x_abs' | 'weighted_x_abs' | 'sit_up';
166
- export type SquatExerciseName = 'leg_press' | 'back_squat_with_body_bar' | 'back_squats' | 'weighted_back_squats' | 'balancing_squat' | 'weighted_balancing_squat' | 'barbell_back_squat' | 'barbell_box_squat' | 'barbell_front_squat' | 'barbell_hack_squat' | 'barbell_hang_squat_snatch' | 'barbell_lateral_step_up' | 'barbell_quarter_squat' | 'barbell_siff_squat' | 'barbell_squat_snatch' | 'barbell_squat_with_heels_raised' | 'barbell_stepover' | 'barbell_step_up' | 'bench_squat_with_rotational_chop' | 'weighted_bench_squat_with_rotational_chop' | 'body_weight_wall_squat' | 'weighted_wall_squat' | 'box_step_squat' | 'weighted_box_step_squat' | 'braced_squat' | 'crossed_arm_barbell_front_squat' | 'crossover_dumbbell_step_up' | 'dumbbell_front_squat' | 'dumbbell_split_squat' | 'dumbbell_squat' | 'dumbbell_squat_clean' | 'dumbbell_stepover' | 'dumbbell_step_up' | 'elevated_single_leg_squat' | 'weighted_elevated_single_leg_squat' | 'figure_four_squats' | 'weighted_figure_four_squats' | 'goblet_squat' | 'kettlebell_squat' | 'kettlebell_swing_overhead' | 'kettlebell_swing_with_flip_to_squat' | 'lateral_dumbbell_step_up' | 'one_legged_squat' | 'overhead_dumbbell_squat' | 'overhead_squat' | 'partial_single_leg_squat' | 'weighted_partial_single_leg_squat' | 'pistol_squat' | 'weighted_pistol_squat' | 'plie_slides' | 'weighted_plie_slides' | 'plie_squat' | 'weighted_plie_squat' | 'prisoner_squat' | 'weighted_prisoner_squat' | 'single_leg_bench_get_up' | 'weighted_single_leg_bench_get_up' | 'single_leg_bench_squat' | 'weighted_single_leg_bench_squat' | 'single_leg_squat_on_swiss_ball' | 'weighted_single_leg_squat_on_swiss_ball' | 'squat' | 'weighted_squat' | 'squats_with_band' | 'staggered_squat' | 'weighted_staggered_squat' | 'step_up' | 'weighted_step_up' | 'suitcase_squats' | 'sumo_squat' | 'sumo_squat_slide_in' | 'weighted_sumo_squat_slide_in' | 'sumo_squat_to_high_pull' | 'sumo_squat_to_stand' | 'weighted_sumo_squat_to_stand' | 'sumo_squat_with_rotation' | 'weighted_sumo_squat_with_rotation' | 'swiss_ball_body_weight_wall_squat' | 'weighted_swiss_ball_wall_squat' | 'thrusters' | 'uneven_squat' | 'weighted_uneven_squat' | 'waist_slimming_squat' | 'wall_ball' | 'wide_stance_barbell_squat' | 'wide_stance_goblet_squat' | 'zercher_squat' | 'kbs_overhead' | 'squat_and_side_kick' | 'squat_jumps_in_n_out' | 'pilates_plie_squats_parallel_turned_out_flat_and_heels' | 'releve_straight_leg_and_knee_bent_with_one_leg_variation';
167
- export type TotalBodyExerciseName = 'burpee' | 'weighted_burpee' | 'burpee_box_jump' | 'weighted_burpee_box_jump' | 'high_pull_burpee' | 'man_makers' | 'one_arm_burpee' | 'squat_thrusts' | 'weighted_squat_thrusts' | 'squat_plank_push_up' | 'weighted_squat_plank_push_up' | 'standing_t_rotation_balance' | 'weighted_standing_t_rotation_balance';
168
- export type TricepsExtensionExerciseName = 'bench_dip' | 'weighted_bench_dip' | 'body_weight_dip' | 'cable_kickback' | 'cable_lying_triceps_extension' | 'cable_overhead_triceps_extension' | 'dumbbell_kickback' | 'dumbbell_lying_triceps_extension' | 'ez_bar_overhead_triceps_extension' | 'incline_dip' | 'weighted_incline_dip' | 'incline_ez_bar_lying_triceps_extension' | 'lying_dumbbell_pullover_to_extension' | 'lying_ez_bar_triceps_extension' | 'lying_triceps_extension_to_close_grip_bench_press' | 'overhead_dumbbell_triceps_extension' | 'reclining_triceps_press' | 'reverse_grip_pressdown' | 'reverse_grip_triceps_pressdown' | 'rope_pressdown' | 'seated_barbell_overhead_triceps_extension' | 'seated_dumbbell_overhead_triceps_extension' | 'seated_ez_bar_overhead_triceps_extension' | 'seated_single_arm_overhead_dumbbell_extension' | 'single_arm_dumbbell_overhead_triceps_extension' | 'single_dumbbell_seated_overhead_triceps_extension' | 'single_leg_bench_dip_and_kick' | 'weighted_single_leg_bench_dip_and_kick' | 'single_leg_dip' | 'weighted_single_leg_dip' | 'static_lying_triceps_extension' | 'suspended_dip' | 'weighted_suspended_dip' | 'swiss_ball_dumbbell_lying_triceps_extension' | 'swiss_ball_ez_bar_lying_triceps_extension' | 'swiss_ball_ez_bar_overhead_triceps_extension' | 'tabletop_dip' | 'weighted_tabletop_dip' | 'triceps_extension_on_floor' | 'triceps_pressdown' | 'weighted_dip';
169
- export type WarmUpExerciseName = 'quadruped_rocking' | 'neck_tilts' | 'ankle_circles' | 'ankle_dorsiflexion_with_band' | 'ankle_internal_rotation' | 'arm_circles' | 'bent_over_reach_to_sky' | 'cat_camel' | 'elbow_to_foot_lunge' | 'forward_and_backward_leg_swings' | 'groiners' | 'inverted_hamstring_stretch' | 'lateral_duck_under' | 'neck_rotations' | 'opposite_arm_and_leg_balance' | 'reach_roll_and_lift' | 'scorpion' | 'shoulder_circles' | 'side_to_side_leg_swings' | 'sleeper_stretch' | 'slide_out' | 'swiss_ball_hip_crossover' | 'swiss_ball_reach_roll_and_lift' | 'swiss_ball_windshield_wipers' | 'thoracic_rotation' | 'walking_high_kicks' | 'walking_high_knees' | 'walking_knee_hugs' | 'walking_leg_cradles' | 'walkout' | 'walkout_from_push_up_position';
170
- export type RunExerciseName = 'run' | 'walk' | 'jog' | 'sprint';
171
- export type WaterType = 'fresh' | 'salt' | 'en13319' | 'custom';
172
- export type TissueModelType = 'zhl_16c';
173
- export type DiveGasStatus = 'disabled' | 'enabled' | 'backup_only';
174
- export type DiveAlarmType = 'depth' | 'time';
175
- export type DiveBacklightMode = 'at_depth' | 'always_on';
176
- export type FaveroProduct = 'assioma_uno' | 'assioma_duo';
140
+ export type MoveExerciseName = 'arch_and_curl' | 'arm_circles_with_ball_band_and_weight' | 'arm_stretch' | 'back_massage' | 'belly_breathing' | 'bridge_with_ball' | 'diamond_leg_crunch' | 'diamond_leg_lift' | 'eight_point_shoulder_opener' | 'foot_rolling' | 'footwork' | 'footwork_on_disc' | 'forward_fold' | 'frog_with_band' | 'half_roll_up' | 'hamstring_curl' | 'hamstring_stretch' | 'hip_stretch' | 'hug_a_tree_with_ball_band_and_weight' | 'knee_circles' | 'knee_folds_on_disc' | 'lateral_flexion' | 'leg_stretch_with_band' | 'leg_stretch_with_leg_circles' | 'lower_lift_on_disc' | 'lunge_squat' | 'lunges_with_knee_lift' | 'mermaid_stretch' | 'neutral_pelvic_position' | 'pelvic_clocks_on_disc' | 'pilates_plie_squats_parallel_turned_out_flat_and_heels_with_chair' | 'piriformis_stretch' | 'plank_knee_crosses' | 'plank_knee_pulls' | 'plank_up_downs' | 'prayer_mudra' | 'psoas_lunge_stretch' | 'ribcage_breathing' | 'roll_down' | 'roll_up_with_weight_and_band' | 'saw' | 'scapular_stabilization' | 'scissors_on_disc' | 'seated_hip_stretchup' | 'seated_twist' | 'shaving_the_head_with_ball_band_and_weight' | 'spinal_twist' | 'spinal_twist_stretch' | 'spine_stretch_forward' | 'squat_open_arm_twist_pose' | 'squats_with_ball' | 'stand_and_hang' | 'standing_side_stretch' | 'standing_single_leg_forward_bend_with_it_band_opener' | 'straight_leg_crunch_with_leg_lift' | 'straight_leg_crunch_with_leg_lift_with_ball' | 'straight_leg_crunch_with_legs_crossed' | 'straight_leg_crunch_with_legs_crossed_with_ball' | 'straight_leg_diagonal_crunch' | 'straight_leg_diagonal_crunch_with_ball' | 'tailbone_curl' | 'throat_lock' | 'tick_tock_side_roll' | 'twist' | 'v_leg_crunches' | 'v_sit' | 'forward_fold_wheelchair' | 'forward_fold_plus_wheelchair' | 'arm_circles_low_forward_wheelchair' | 'arm_circles_mid_forward_wheelchair' | 'arm_circles_high_forward_wheelchair' | 'arm_circles_low_backward_wheelchair' | 'arm_circles_mid_backward_wheelchair' | 'arm_circles_high_backward_wheelchair' | 'core_twists_wheelchair' | 'arm_raise_wheelchair' | 'chest_expand_wheelchair' | 'arm_extend_wheelchair' | 'forward_bend_wheelchair' | 'toe_touch_wheelchair' | 'extended_toe_touch_wheelchair' | 'seated_arm_circles' | 'trunk_rotations' | 'seated_trunk_rotations' | 'toe_touch' | number;
141
+ export type NapPeriodFeedback = 'none' | 'multiple_naps_during_day' | 'jetlag_ideal_timing_ideal_duration' | 'jetlag_ideal_timing_long_duration' | 'jetlag_late_timing_ideal_duration' | 'jetlag_late_timing_long_duration' | 'ideal_timing_ideal_duration_low_need' | 'ideal_timing_ideal_duration_high_need' | 'ideal_timing_long_duration_low_need' | 'ideal_timing_long_duration_high_need' | 'late_timing_ideal_duration_low_need' | 'late_timing_ideal_duration_high_need' | 'late_timing_long_duration_low_need' | 'late_timing_long_duration_high_need' | 'ideal_duration_low_need' | 'ideal_duration_high_need' | 'long_duration_low_need' | 'long_duration_high_need' | number;
142
+ export type NapSource = 'automatic' | 'manual_device' | 'manual_gc' | number;
143
+ export type NoFlyTimeMode = 'standard' | 'flat24_hours' | number;
144
+ export type OlympicLiftExerciseName = 'barbell_hang_power_clean' | 'barbell_hang_squat_clean' | 'barbell_power_clean' | 'barbell_power_snatch' | 'barbell_squat_clean' | 'clean_and_jerk' | 'barbell_hang_power_snatch' | 'barbell_hang_pull' | 'barbell_high_pull' | 'barbell_snatch' | 'barbell_split_jerk' | 'clean' | 'dumbbell_clean' | 'dumbbell_hang_pull' | 'one_hand_dumbbell_split_snatch' | 'push_jerk' | 'single_arm_dumbbell_snatch' | 'single_arm_hang_snatch' | 'single_arm_kettlebell_snatch' | 'split_jerk' | 'squat_clean_and_jerk' | 'dumbbell_hang_snatch' | 'dumbbell_power_clean_and_jerk' | 'dumbbell_power_clean_and_push_press' | 'dumbbell_power_clean_and_strict_press' | 'dumbbell_snatch' | 'medicine_ball_clean' | 'clean_and_press' | 'snatch' | number;
145
+ export type PlankExerciseName = '45_degree_plank' | 'weighted45_degree_plank' | '90_degree_static_hold' | 'weighted90_degree_static_hold' | 'bear_crawl' | 'weighted_bear_crawl' | 'cross_body_mountain_climber' | 'weighted_cross_body_mountain_climber' | 'elbow_plank_pike_jacks' | 'weighted_elbow_plank_pike_jacks' | 'elevated_feet_plank' | 'weighted_elevated_feet_plank' | 'elevator_abs' | 'weighted_elevator_abs' | 'extended_plank' | 'weighted_extended_plank' | 'full_plank_passe_twist' | 'weighted_full_plank_passe_twist' | 'inching_elbow_plank' | 'weighted_inching_elbow_plank' | 'inchworm_to_side_plank' | 'weighted_inchworm_to_side_plank' | 'kneeling_plank' | 'weighted_kneeling_plank' | 'kneeling_side_plank_with_leg_lift' | 'weighted_kneeling_side_plank_with_leg_lift' | 'lateral_roll' | 'weighted_lateral_roll' | 'lying_reverse_plank' | 'weighted_lying_reverse_plank' | 'medicine_ball_mountain_climber' | 'weighted_medicine_ball_mountain_climber' | 'modified_mountain_climber_and_extension' | 'weighted_modified_mountain_climber_and_extension' | 'mountain_climber' | 'weighted_mountain_climber' | 'mountain_climber_on_sliding_discs' | 'weighted_mountain_climber_on_sliding_discs' | 'mountain_climber_with_feet_on_bosu_ball' | 'weighted_mountain_climber_with_feet_on_bosu_ball' | 'mountain_climber_with_hands_on_bench' | 'mountain_climber_with_hands_on_swiss_ball' | 'weighted_mountain_climber_with_hands_on_swiss_ball' | 'plank' | 'plank_jacks_with_feet_on_sliding_discs' | 'weighted_plank_jacks_with_feet_on_sliding_discs' | 'plank_knee_twist' | 'weighted_plank_knee_twist' | 'plank_pike_jumps' | 'weighted_plank_pike_jumps' | 'plank_pikes' | 'weighted_plank_pikes' | 'plank_to_stand_up' | 'weighted_plank_to_stand_up' | 'plank_with_arm_raise' | 'weighted_plank_with_arm_raise' | 'plank_with_knee_to_elbow' | 'weighted_plank_with_knee_to_elbow' | 'plank_with_oblique_crunch' | 'weighted_plank_with_oblique_crunch' | 'plyometric_side_plank' | 'weighted_plyometric_side_plank' | 'rolling_side_plank' | 'weighted_rolling_side_plank' | 'side_kick_plank' | 'weighted_side_kick_plank' | 'side_plank' | 'weighted_side_plank' | 'side_plank_and_row' | 'weighted_side_plank_and_row' | 'side_plank_lift' | 'weighted_side_plank_lift' | 'side_plank_with_elbow_on_bosu_ball' | 'weighted_side_plank_with_elbow_on_bosu_ball' | 'side_plank_with_feet_on_bench' | 'weighted_side_plank_with_feet_on_bench' | 'side_plank_with_knee_circle' | 'weighted_side_plank_with_knee_circle' | 'side_plank_with_knee_tuck' | 'weighted_side_plank_with_knee_tuck' | 'side_plank_with_leg_lift' | 'weighted_side_plank_with_leg_lift' | 'side_plank_with_reach_under' | 'weighted_side_plank_with_reach_under' | 'single_leg_elevated_feet_plank' | 'weighted_single_leg_elevated_feet_plank' | 'single_leg_flex_and_extend' | 'weighted_single_leg_flex_and_extend' | 'single_leg_side_plank' | 'weighted_single_leg_side_plank' | 'spiderman_plank' | 'weighted_spiderman_plank' | 'straight_arm_plank' | 'weighted_straight_arm_plank' | 'straight_arm_plank_with_shoulder_touch' | 'weighted_straight_arm_plank_with_shoulder_touch' | 'swiss_ball_plank' | 'weighted_swiss_ball_plank' | 'swiss_ball_plank_leg_lift' | 'weighted_swiss_ball_plank_leg_lift' | 'swiss_ball_plank_leg_lift_and_hold' | 'swiss_ball_plank_with_feet_on_bench' | 'weighted_swiss_ball_plank_with_feet_on_bench' | 'swiss_ball_prone_jackknife' | 'weighted_swiss_ball_prone_jackknife' | 'swiss_ball_side_plank' | 'weighted_swiss_ball_side_plank' | 'three_way_plank' | 'weighted_three_way_plank' | 'towel_plank_and_knee_in' | 'weighted_towel_plank_and_knee_in' | 't_stabilization' | 'weighted_t_stabilization' | 'turkish_get_up_to_side_plank' | 'weighted_turkish_get_up_to_side_plank' | 'two_point_plank' | 'weighted_two_point_plank' | 'weighted_plank' | 'wide_stance_plank_with_diagonal_arm_lift' | 'weighted_wide_stance_plank_with_diagonal_arm_lift' | 'wide_stance_plank_with_diagonal_leg_lift' | 'weighted_wide_stance_plank_with_diagonal_leg_lift' | 'wide_stance_plank_with_leg_lift' | 'weighted_wide_stance_plank_with_leg_lift' | 'wide_stance_plank_with_opposite_arm_and_leg_lift' | 'weighted_mountain_climber_with_hands_on_bench' | 'weighted_swiss_ball_plank_leg_lift_and_hold' | 'weighted_wide_stance_plank_with_opposite_arm_and_leg_lift' | 'plank_with_feet_on_swiss_ball' | 'side_plank_to_plank_with_reach_under' | 'bridge_with_glute_lower_lift' | 'bridge_one_leg_bridge' | 'plank_with_arm_variations' | 'plank_with_leg_lift' | 'reverse_plank_with_leg_pull' | 'ring_plank_sprawls' | number;
146
+ export type PlyoExerciseName = 'alternating_jump_lunge' | 'weighted_alternating_jump_lunge' | 'barbell_jump_squat' | 'body_weight_jump_squat' | 'weighted_jump_squat' | 'cross_knee_strike' | 'weighted_cross_knee_strike' | 'depth_jump' | 'weighted_depth_jump' | 'dumbbell_jump_squat' | 'dumbbell_split_jump' | 'front_knee_strike' | 'weighted_front_knee_strike' | 'high_box_jump' | 'weighted_high_box_jump' | 'isometric_explosive_body_weight_jump_squat' | 'weighted_isometric_explosive_jump_squat' | 'lateral_leap_and_hop' | 'weighted_lateral_leap_and_hop' | 'lateral_plyo_squats' | 'weighted_lateral_plyo_squats' | 'lateral_slide' | 'weighted_lateral_slide' | 'medicine_ball_overhead_throws' | 'medicine_ball_side_throw' | 'medicine_ball_slam' | 'side_to_side_medicine_ball_throws' | 'side_to_side_shuffle_jump' | 'weighted_side_to_side_shuffle_jump' | 'squat_jump_onto_box' | 'weighted_squat_jump_onto_box' | 'squat_jumps_in_and_out' | 'weighted_squat_jumps_in_and_out' | 'box_jump' | 'box_jump_overs' | 'box_jump_overs_over_the_box' | 'star_jump_squats' | 'jump_squat' | number;
147
+ export type PoseExerciseName = 'all_fours' | 'ankle_to_knee' | 'baby_cobra' | 'boat' | 'bound_angle' | 'bound_seated_single_leg_forward_bend' | 'bow' | 'bowed_half_moon' | 'bridge' | 'cat' | 'chair' | 'childs' | 'corpse' | 'cow_face' | 'cow' | 'devotional_warrior' | 'dolphin_plank' | 'dolphin' | 'down_dog_knee_to_nose' | 'down_dog_split' | 'down_dog_split_open_hip_bent_knee' | 'downward_facing_dog' | 'eagle' | 'easy_seated' | 'extended_puppy' | 'extended_side_angle' | 'fish' | 'four_limbed_staff' | 'full_split' | 'gate' | 'half_chair_half_ankle_to_knee' | 'half_moon' | 'head_to_knee' | 'heron' | 'heros' | 'high_lunge' | 'knees_chest_chin' | 'lizard' | 'locust' | 'low_lunge' | 'low_lunge_twist' | 'low_lunge_with_knee_down' | 'mermaid' | 'mountain' | 'one_legged_downward_facing_pose_open_hip_bent_knee' | 'one_legged_pigeon' | 'peaceful_warrior' | 'plank' | 'plow' | 'reclined_hand_to_foot' | 'revolved_half_moon' | 'revolved_head_to_knee' | 'revolved_triangle' | 'runners_lunge' | 'seated_easy_side_bend' | 'seated_easy_twist' | 'seated_long_leg_forward_bend' | 'seated_wide_leg_forward_bend' | 'shoulder_stand' | 'side_boat' | 'side_plank' | 'sphinx' | 'squat_open_arm_twist' | 'squat_palm_press' | 'staff' | 'standing_arms_up' | 'standing_forward_bend_halfway_up' | 'standing_forward_bend' | 'standing_side_opener' | 'standing_single_leg_forward_bend' | 'standing_split' | 'standing_wide_leg_forward_bend' | 'standing_wide_leg_forward_bend_with_twist' | 'supine_spinal_twist' | 'table_top' | 'thread_the_needle' | 'thunderbolt' | 'thunderbolt_pose_both_sides_arm_stretch' | 'tree' | 'triangle' | 'up_dog' | 'upward_facing_plank' | 'warrior_one' | 'warrior_three' | 'warrior_two' | 'wheel' | 'wide_side_lunge' | 'deep_breathing_wheelchair' | 'deep_breathing_low_wheelchair' | 'deep_breathing_mid_wheelchair' | 'deep_breathing_high_wheelchair' | 'prayer_wheelchair' | 'overhead_prayer_wheelchair' | 'cactus_wheelchair' | 'breathing_punches_wheelchair' | 'breathing_punches_extended_wheelchair' | 'breathing_punches_overhead_wheelchair' | 'breathing_punches_overhead_and_down_wheelchair' | 'breathing_punches_side_wheelchair' | 'breathing_punches_extended_side_wheelchair' | 'breathing_punches_overhead_side_wheelchair' | 'breathing_punches_overhead_and_down_side_wheelchair' | 'left_hand_back_wheelchair' | 'triangle_wheelchair' | 'thread_the_needle_wheelchair' | 'neck_flexion_and_extension_wheelchair' | 'neck_lateral_flexion_wheelchair' | 'spine_flexion_and_extension_wheelchair' | 'spine_rotation_wheelchair' | 'spine_lateral_flexion_wheelchair' | 'alternative_skiing_wheelchair' | 'reach_forward_wheelchair' | 'warrior_wheelchair' | 'reverse_warrior_wheelchair' | 'downward_facing_dog_to_cobra' | 'seated_cat_cow' | number;
148
+ export type PowerPhaseType = 'power_phase_start_angle' | 'power_phase_end_angle' | 'power_phase_arc_length' | 'power_phase_center' | number;
149
+ export type ProjectileType = 'arrow' | 'rifle_cartridge' | 'pistol_cartridge' | 'shotshell' | 'air_rifle_pellet' | 'other' | number;
150
+ export type PullUpExerciseName = 'banded_pull_ups' | '30_degree_lat_pulldown' | 'band_assisted_chin_up' | 'close_grip_chin_up' | 'weighted_close_grip_chin_up' | 'close_grip_lat_pulldown' | 'crossover_chin_up' | 'weighted_crossover_chin_up' | 'ez_bar_pullover' | 'hanging_hurdle' | 'weighted_hanging_hurdle' | 'kneeling_lat_pulldown' | 'kneeling_underhand_grip_lat_pulldown' | 'lat_pulldown' | 'mixed_grip_chin_up' | 'weighted_mixed_grip_chin_up' | 'mixed_grip_pull_up' | 'weighted_mixed_grip_pull_up' | 'reverse_grip_pulldown' | 'standing_cable_pullover' | 'straight_arm_pulldown' | 'swiss_ball_ez_bar_pullover' | 'towel_pull_up' | 'weighted_towel_pull_up' | 'weighted_pull_up' | 'wide_grip_lat_pulldown' | 'wide_grip_pull_up' | 'weighted_wide_grip_pull_up' | 'burpee_pull_up' | 'weighted_burpee_pull_up' | 'jumping_pull_ups' | 'weighted_jumping_pull_ups' | 'kipping_pull_up' | 'weighted_kipping_pull_up' | 'l_pull_up' | 'weighted_l_pull_up' | 'suspended_chin_up' | 'weighted_suspended_chin_up' | 'pull_up' | 'chin_up' | 'neutral_grip_chin_up' | 'weighted_chin_up' | 'band_assisted_pull_up' | 'neutral_grip_pull_up' | 'weighted_neutral_grip_chin_up' | 'weighted_neutral_grip_pull_up' | number;
151
+ export type PushUpExerciseName = 'chest_press_with_band' | 'alternating_staggered_push_up' | 'weighted_alternating_staggered_push_up' | 'alternating_hands_medicine_ball_push_up' | 'weighted_alternating_hands_medicine_ball_push_up' | 'bosu_ball_push_up' | 'weighted_bosu_ball_push_up' | 'clapping_push_up' | 'weighted_clapping_push_up' | 'close_grip_medicine_ball_push_up' | 'weighted_close_grip_medicine_ball_push_up' | 'close_hands_push_up' | 'weighted_close_hands_push_up' | 'decline_push_up' | 'weighted_decline_push_up' | 'diamond_push_up' | 'weighted_diamond_push_up' | 'explosive_crossover_push_up' | 'weighted_explosive_crossover_push_up' | 'explosive_push_up' | 'weighted_explosive_push_up' | 'feet_elevated_side_to_side_push_up' | 'weighted_feet_elevated_side_to_side_push_up' | 'hand_release_push_up' | 'weighted_hand_release_push_up' | 'handstand_push_up' | 'weighted_handstand_push_up' | 'incline_push_up' | 'weighted_incline_push_up' | 'isometric_explosive_push_up' | 'weighted_isometric_explosive_push_up' | 'judo_push_up' | 'weighted_judo_push_up' | 'kneeling_push_up' | 'weighted_kneeling_push_up' | 'medicine_ball_chest_pass' | 'medicine_ball_push_up' | 'weighted_medicine_ball_push_up' | 'one_arm_push_up' | 'weighted_one_arm_push_up' | 'weighted_push_up' | 'push_up_and_row' | 'weighted_push_up_and_row' | 'push_up_plus' | 'weighted_push_up_plus' | 'push_up_with_feet_on_swiss_ball' | 'weighted_push_up_with_feet_on_swiss_ball' | 'push_up_with_one_hand_on_medicine_ball' | 'weighted_push_up_with_one_hand_on_medicine_ball' | 'shoulder_push_up' | 'weighted_shoulder_push_up' | 'single_arm_medicine_ball_push_up' | 'weighted_single_arm_medicine_ball_push_up' | 'spiderman_push_up' | 'weighted_spiderman_push_up' | 'stacked_feet_push_up' | 'weighted_stacked_feet_push_up' | 'staggered_hands_push_up' | 'weighted_staggered_hands_push_up' | 'suspended_push_up' | 'weighted_suspended_push_up' | 'swiss_ball_push_up' | 'weighted_swiss_ball_push_up' | 'swiss_ball_push_up_plus' | 'weighted_swiss_ball_push_up_plus' | 't_push_up' | 'weighted_t_push_up' | 'triple_stop_push_up' | 'weighted_triple_stop_push_up' | 'wide_hands_push_up' | 'weighted_wide_hands_push_up' | 'parallette_handstand_push_up' | 'weighted_parallette_handstand_push_up' | 'ring_handstand_push_up' | 'weighted_ring_handstand_push_up' | 'ring_push_up' | 'weighted_ring_push_up' | 'push_up' | 'pilates_pushup' | 'dynamic_push_up' | 'kipping_handstand_push_up' | 'shoulder_tapping_push_up' | 'biceps_push_up' | 'hindu_push_up' | 'pike_push_up' | 'wide_grip_push_up' | 'weighted_biceps_push_up' | 'weighted_hindu_push_up' | 'weighted_pike_push_up' | 'kipping_parallette_handstand_push_up' | 'wall_push_up' | number;
152
+ export type PwrZoneCalc = 'custom' | 'percent_ftp' | number;
153
+ export type RadarThreatLevelType = 'threat_unknown' | 'threat_none' | 'threat_approaching' | 'threat_approaching_fast' | number;
154
+ export type RiderPositionType = 'seated' | 'standing' | 'transition_to_seated' | 'transition_to_standing' | number;
155
+ export type RowExerciseName = 'barbell_straight_leg_deadlift_to_row' | 'cable_row_standing' | 'dumbbell_row' | 'elevated_feet_inverted_row' | 'weighted_elevated_feet_inverted_row' | 'face_pull' | 'face_pull_with_external_rotation' | 'inverted_row_with_feet_on_swiss_ball' | 'weighted_inverted_row_with_feet_on_swiss_ball' | 'kettlebell_row' | 'modified_inverted_row' | 'weighted_modified_inverted_row' | 'neutral_grip_alternating_dumbbell_row' | 'one_arm_bent_over_row' | 'one_legged_dumbbell_row' | 'renegade_row' | 'reverse_grip_barbell_row' | 'rope_handle_cable_row' | 'seated_cable_row' | 'seated_dumbbell_row' | 'single_arm_cable_row' | 'single_arm_cable_row_and_rotation' | 'single_arm_inverted_row' | 'weighted_single_arm_inverted_row' | 'single_arm_neutral_grip_dumbbell_row' | 'single_arm_neutral_grip_dumbbell_row_and_rotation' | 'suspended_inverted_row' | 'weighted_suspended_inverted_row' | 't_bar_row' | 'towel_grip_inverted_row' | 'weighted_towel_grip_inverted_row' | 'underhand_grip_cable_row' | 'v_grip_cable_row' | 'wide_grip_seated_cable_row' | 'alternating_dumbbell_row' | 'inverted_row' | 'row' | 'weighted_row' | 'indoor_row' | 'banded_face_pulls' | 'chest_supported_dumbbell_row' | 'decline_ring_row' | 'elevated_ring_row' | 'rdl_bent_over_row_with_barbell_dumbbell' | 'ring_row' | 'barbell_row' | 'bent_over_row_with_barbell' | 'bent_over_row_with_dumbell' | 'seated_underhand_grip_cable_row' | 'trx_inverted_row' | 'weighted_inverted_row' | 'weighted_trx_inverted_row' | 'dumbbell_row_wheelchair' | number;
156
+ export type RunExerciseName = 'run' | 'walk' | 'jog' | 'sprint' | 'run_or_walk' | 'speed_walk' | 'warm_up' | number;
157
+ export type RunIndoorExerciseName = 'indoor_track_run' | 'treadmill' | number;
158
+ export type SandbagExerciseName = 'around_the_world' | 'back_squat' | 'bear_crawl_pull_through' | 'bear_hug_squat' | 'clean' | 'clean_and_press' | 'curl' | 'front_carry' | 'front_squat' | 'lunge' | 'overhead_press' | 'plank_pull_through' | 'rotational_lunge' | 'row' | 'russian_twist' | 'shouldering' | 'shoveling' | 'side_lunge' | 'sprint' | 'zercher_squat' | number;
159
+ export type Schedule = 'workout' | 'course' | number;
160
+ export type SegmentDeleteStatus = 'do_not_delete' | 'delete_one' | 'delete_all' | number;
161
+ export type SegmentLapStatus = 'end' | 'fail' | number;
162
+ export type SegmentLeaderboardType = 'overall' | 'personal_best' | 'connections' | 'group' | 'challenger' | 'kom' | 'qom' | 'pr' | 'goal' | 'carrot' | 'club_leader' | 'rival' | 'last' | 'recent_best' | 'course_record' | number;
163
+ export type SegmentSelectionType = 'starred' | 'suggested' | number;
164
+ export type SensorType = 'accelerometer' | 'gyroscope' | 'compass' | 'barometer' | number;
165
+ export type SessionTrigger = 'activity_end' | 'manual' | 'auto_multi_sport' | 'fitness_equipment' | number;
166
+ export type SetType = 'rest' | 'active' | number;
167
+ export type ShoulderPressExerciseName = 'alternating_dumbbell_shoulder_press' | 'arnold_press' | 'barbell_front_squat_to_push_press' | 'barbell_push_press' | 'barbell_shoulder_press' | 'dead_curl_press' | 'dumbbell_alternating_shoulder_press_and_twist' | 'dumbbell_hammer_curl_to_lunge_to_press' | 'dumbbell_push_press' | 'floor_inverted_shoulder_press' | 'weighted_floor_inverted_shoulder_press' | 'inverted_shoulder_press' | 'weighted_inverted_shoulder_press' | 'one_arm_push_press' | 'overhead_barbell_press' | 'overhead_dumbbell_press' | 'seated_barbell_shoulder_press' | 'seated_dumbbell_shoulder_press' | 'single_arm_dumbbell_shoulder_press' | 'single_arm_step_up_and_press' | 'smith_machine_overhead_press' | 'split_stance_hammer_curl_to_press' | 'swiss_ball_dumbbell_shoulder_press' | 'weight_plate_front_raise' | 'dumbbell_shoulder_press' | 'military_press' | 'strict_press' | 'dumbbell_front_raise' | 'dumbbell_curl_to_overhead_press_wheelchair' | 'arnold_press_wheelchair' | 'overhead_dumbbell_press_wheelchair' | number;
168
+ export type ShoulderStabilityExerciseName = '90_degree_cable_external_rotation' | 'band_external_rotation' | 'band_internal_rotation' | 'bent_arm_lateral_raise_and_external_rotation' | 'cable_external_rotation' | 'dumbbell_face_pull_with_external_rotation' | 'floor_i_raise' | 'weighted_floor_i_raise' | 'floor_t_raise' | 'weighted_floor_t_raise' | 'floor_y_raise' | 'weighted_floor_y_raise' | 'incline_i_raise' | 'weighted_incline_i_raise' | 'incline_l_raise' | 'weighted_incline_l_raise' | 'incline_t_raise' | 'weighted_incline_t_raise' | 'incline_w_raise' | 'weighted_incline_w_raise' | 'incline_y_raise' | 'weighted_incline_y_raise' | 'lying_external_rotation' | 'seated_dumbbell_external_rotation' | 'standing_l_raise' | 'swiss_ball_i_raise' | 'weighted_swiss_ball_i_raise' | 'swiss_ball_t_raise' | 'weighted_swiss_ball_t_raise' | 'swiss_ball_w_raise' | 'weighted_swiss_ball_w_raise' | 'swiss_ball_y_raise' | 'weighted_swiss_ball_y_raise' | 'cable_internal_rotation' | 'lying_internal_rotation' | 'seated_dumbbell_internal_rotation' | number;
169
+ export type ShrugExerciseName = 'barbell_jump_shrug' | 'barbell_shrug' | 'barbell_upright_row' | 'behind_the_back_smith_machine_shrug' | 'dumbbell_jump_shrug' | 'dumbbell_shrug' | 'dumbbell_upright_row' | 'incline_dumbbell_shrug' | 'overhead_barbell_shrug' | 'overhead_dumbbell_shrug' | 'scaption_and_shrug' | 'scapular_retraction' | 'serratus_chair_shrug' | 'weighted_serratus_chair_shrug' | 'serratus_shrug' | 'weighted_serratus_shrug' | 'wide_grip_jump_shrug' | 'wide_grip_barbell_shrug' | 'behind_the_back_shrug' | 'dumbbell_shrug_wheelchair' | 'shrug_wheelchair' | 'shrug_arm_down_wheelchair' | 'shrug_arm_mid_wheelchair' | 'shrug_arm_up_wheelchair' | 'upright_row' | number;
170
+ export type Side = 'right' | 'left' | number;
171
+ export type SitUpExerciseName = 'alternating_sit_up' | 'weighted_alternating_sit_up' | 'bent_knee_v_up' | 'weighted_bent_knee_v_up' | 'butterfly_sit_up' | 'weighted_butterfly_situp' | 'cross_punch_roll_up' | 'weighted_cross_punch_roll_up' | 'crossed_arms_sit_up' | 'weighted_crossed_arms_sit_up' | 'get_up_sit_up' | 'weighted_get_up_sit_up' | 'hovering_sit_up' | 'weighted_hovering_sit_up' | 'kettlebell_sit_up' | 'medicine_ball_alternating_v_up' | 'medicine_ball_sit_up' | 'medicine_ball_v_up' | 'modified_sit_up' | 'negative_sit_up' | 'one_arm_full_sit_up' | 'reclining_circle' | 'weighted_reclining_circle' | 'reverse_curl_up' | 'weighted_reverse_curl_up' | 'single_leg_swiss_ball_jackknife' | 'weighted_single_leg_swiss_ball_jackknife' | 'the_teaser' | 'the_teaser_weighted' | 'three_part_roll_down' | 'weighted_three_part_roll_down' | 'v_up' | 'weighted_v_up' | 'weighted_russian_twist_on_swiss_ball' | 'weighted_sit_up' | 'x_abs' | 'weighted_x_abs' | 'sit_up' | 'ghd_sit_ups' | 'sit_up_turkish_get_up' | 'russian_twist_on_swiss_ball' | number;
172
+ export type SledExerciseName = 'backward_drag' | 'chest_press' | 'forward_drag' | 'low_push' | 'push' | 'row' | number;
173
+ export type SledgeHammerExerciseName = 'lateral_swing' | 'hammer_slam' | number;
174
+ export type SleepDisruptionSeverity = 'none' | 'low' | 'medium' | 'high' | number;
175
+ export type SleepLevel = 'unmeasurable' | 'awake' | 'light' | 'deep' | 'rem' | number;
176
+ export type SourceType = 'ant' | 'antplus' | 'bluetooth' | 'bluetooth_low_energy' | 'wifi' | 'local' | number;
177
+ export type SplitType = 'ascent_split' | 'descent_split' | 'interval_active' | 'interval_rest' | 'interval_warmup' | 'interval_cooldown' | 'interval_recovery' | 'interval_other' | 'climb_active' | 'climb_rest' | 'surf_active' | 'run_active' | 'run_rest' | 'workout_round' | 'rwd_run' | 'rwd_walk' | 'windsurf_active' | 'rwd_stand' | 'transition' | 'ski_lift_split' | 'ski_run_split' | number;
178
+ export type Spo2MeasurementType = 'off_wrist' | 'spot_check' | 'continuous_check' | 'periodic' | number;
179
+ export type Sport = 'generic' | 'running' | 'cycling' | 'transition' | 'fitness_equipment' | 'swimming' | 'basketball' | 'soccer' | 'tennis' | 'american_football' | 'training' | 'walking' | 'cross_country_skiing' | 'alpine_skiing' | 'snowboarding' | 'rowing' | 'mountaineering' | 'hiking' | 'multisport' | 'paddling' | 'flying' | 'e_biking' | 'motorcycling' | 'boating' | 'driving' | 'golf' | 'hang_gliding' | 'horseback_riding' | 'hunting' | 'fishing' | 'inline_skating' | 'rock_climbing' | 'sailing' | 'ice_skating' | 'sky_diving' | 'snowshoeing' | 'snowmobiling' | 'stand_up_paddleboarding' | 'surfing' | 'wakeboarding' | 'water_skiing' | 'kayaking' | 'rafting' | 'windsurfing' | 'kitesurfing' | 'tactical' | 'jumpmaster' | 'boxing' | 'floor_climbing' | 'baseball' | 'diving' | 'shooting' | 'winter_sport' | 'grinding' | 'hiit' | 'video_gaming' | 'racket' | 'wheelchair_push_walk' | 'wheelchair_push_run' | 'meditation' | 'para_sport' | 'disc_golf' | 'team_sport' | 'cricket' | 'rugby' | 'hockey' | 'lacrosse' | 'volleyball' | 'water_tubing' | 'wakesurfing' | 'water_sport' | 'archery' | 'mixed_martial_arts' | 'motor_sports' | 'snorkeling' | 'dance' | 'jump_rope' | 'pool_apnea' | 'mobility' | 'geocaching' | 'canoeing' | 'all' | number;
180
+ export type SportBits0 = 'generic' | 'running' | 'cycling' | 'transition' | 'fitness_equipment' | 'swimming' | 'basketball' | 'soccer' | number;
181
+ export type SportBits1 = 'tennis' | 'american_football' | 'training' | 'walking' | 'cross_country_skiing' | 'alpine_skiing' | 'snowboarding' | 'rowing' | number;
182
+ export type SportBits2 = 'mountaineering' | 'hiking' | 'multisport' | 'paddling' | 'flying' | 'e_biking' | 'motorcycling' | 'boating' | number;
183
+ export type SportBits3 = 'driving' | 'golf' | 'hang_gliding' | 'horseback_riding' | 'hunting' | 'fishing' | 'inline_skating' | 'rock_climbing' | number;
184
+ export type SportBits4 = 'sailing' | 'ice_skating' | 'sky_diving' | 'snowshoeing' | 'snowmobiling' | 'stand_up_paddleboarding' | 'surfing' | 'wakeboarding' | number;
185
+ export type SportBits5 = 'water_skiing' | 'kayaking' | 'rafting' | 'windsurfing' | 'kitesurfing' | 'tactical' | 'jumpmaster' | 'boxing' | number;
186
+ export type SportBits6 = 'floor_climbing' | number;
187
+ export type SportEvent = 'uncategorized' | 'geocaching' | 'fitness' | 'recreation' | 'race' | 'special_event' | 'training' | 'transportation' | 'touring' | number;
188
+ export type SquatExerciseName = 'leg_press' | 'back_squat_with_body_bar' | 'back_squats' | 'weighted_back_squats' | 'balancing_squat' | 'weighted_balancing_squat' | 'barbell_back_squat' | 'barbell_box_squat' | 'barbell_front_squat' | 'barbell_hack_squat' | 'barbell_hang_squat_snatch' | 'barbell_lateral_step_up' | 'barbell_quarter_squat' | 'barbell_siff_squat' | 'barbell_squat_snatch' | 'barbell_squat_with_heels_raised' | 'barbell_stepover' | 'barbell_step_up' | 'bench_squat_with_rotational_chop' | 'weighted_bench_squat_with_rotational_chop' | 'body_weight_wall_squat' | 'weighted_wall_squat' | 'box_step_squat' | 'weighted_box_step_squat' | 'braced_squat' | 'crossed_arm_barbell_front_squat' | 'crossover_dumbbell_step_up' | 'dumbbell_front_squat' | 'dumbbell_split_squat' | 'dumbbell_squat' | 'dumbbell_squat_clean' | 'dumbbell_stepover' | 'dumbbell_step_up' | 'elevated_single_leg_squat' | 'weighted_elevated_single_leg_squat' | 'figure_four_squats' | 'weighted_figure_four_squats' | 'goblet_squat' | 'kettlebell_squat' | 'kettlebell_swing_overhead' | 'kettlebell_swing_with_flip_to_squat' | 'lateral_dumbbell_step_up' | 'one_legged_squat' | 'overhead_dumbbell_squat' | 'overhead_squat' | 'partial_single_leg_squat' | 'weighted_partial_single_leg_squat' | 'pistol_squat' | 'weighted_pistol_squat' | 'plie_slides' | 'weighted_plie_slides' | 'plie_squat' | 'weighted_plie_squat' | 'prisoner_squat' | 'weighted_prisoner_squat' | 'single_leg_bench_get_up' | 'weighted_single_leg_bench_get_up' | 'single_leg_bench_squat' | 'weighted_single_leg_bench_squat' | 'single_leg_squat_on_swiss_ball' | 'weighted_single_leg_squat_on_swiss_ball' | 'squat' | 'weighted_squat' | 'squats_with_band' | 'staggered_squat' | 'weighted_staggered_squat' | 'step_up' | 'weighted_step_up' | 'suitcase_squats' | 'sumo_squat' | 'sumo_squat_slide_in' | 'weighted_sumo_squat_slide_in' | 'sumo_squat_to_high_pull' | 'sumo_squat_to_stand' | 'weighted_sumo_squat_to_stand' | 'sumo_squat_with_rotation' | 'weighted_sumo_squat_with_rotation' | 'swiss_ball_body_weight_wall_squat' | 'weighted_swiss_ball_wall_squat' | 'thrusters' | 'uneven_squat' | 'weighted_uneven_squat' | 'waist_slimming_squat' | 'wall_ball' | 'wide_stance_barbell_squat' | 'wide_stance_goblet_squat' | 'zercher_squat' | 'kbs_overhead' | 'squat_and_side_kick' | 'squat_jumps_in_n_out' | 'pilates_plie_squats_parallel_turned_out_flat_and_heels' | 'releve_straight_leg_and_knee_bent_with_one_leg_variation' | 'alternating_box_dumbbell_step_ups' | 'dumbbell_overhead_squat_single_arm' | 'dumbbell_squat_snatch' | 'medicine_ball_squat' | 'wall_ball_squat_and_press' | 'squat_american_swing' | 'air_squat' | 'dumbbell_thrusters' | 'overhead_barbell_squat' | number;
189
+ export type StairStepperExerciseName = 'stair_stepper' | number;
190
+ export type StrokeType = 'no_event' | 'other' | 'serve' | 'forehand' | 'backhand' | 'smash' | number;
191
+ export type SubSport = 'generic' | 'treadmill' | 'street' | 'trail' | 'track' | 'spin' | 'indoor_cycling' | 'road' | 'mountain' | 'downhill' | 'recumbent' | 'cyclocross' | 'hand_cycling' | 'track_cycling' | 'indoor_rowing' | 'elliptical' | 'stair_climbing' | 'lap_swimming' | 'open_water' | 'flexibility_training' | 'strength_training' | 'warm_up' | 'match' | 'exercise' | 'challenge' | 'indoor_skiing' | 'cardio_training' | 'indoor_walking' | 'e_bike_fitness' | 'bmx' | 'casual_walking' | 'speed_walking' | 'bike_to_run_transition' | 'run_to_bike_transition' | 'swim_to_bike_transition' | 'atv' | 'motocross' | 'backcountry' | 'resort' | 'rc_drone' | 'wingsuit' | 'whitewater' | 'skate_skiing' | 'yoga' | 'pilates' | 'indoor_running' | 'gravel_cycling' | 'e_bike_mountain' | 'commuting' | 'mixed_surface' | 'navigate' | 'track_me' | 'map' | 'single_gas_diving' | 'multi_gas_diving' | 'gauge_diving' | 'apnea_diving' | 'apnea_hunting' | 'virtual_activity' | 'obstacle' | 'breathing' | 'ccr_diving' | 'sail_race' | 'expedition' | 'ultra' | 'indoor_climbing' | 'bouldering' | 'hiit' | 'indoor_grinding' | 'hunting_with_dogs' | 'amrap' | 'emom' | 'tabata' | 'esport' | 'triathlon' | 'duathlon' | 'brick' | 'swim_run' | 'adventure_race' | 'trucker_workout' | 'pickleball' | 'padel' | 'indoor_wheelchair_walk' | 'indoor_wheelchair_run' | 'indoor_hand_cycling' | 'field' | 'ice' | 'ultimate' | 'platform' | 'squash' | 'badminton' | 'racquetball' | 'table_tennis' | 'overland' | 'trolling_motor' | 'fly_canopy' | 'fly_paraglide' | 'fly_paramotor' | 'fly_pressurized' | 'fly_navigate' | 'fly_timer' | 'fly_altimeter' | 'fly_wx' | 'fly_vfr' | 'fly_ifr' | 'dynamic_apnea' | 'enduro' | 'rucking' | 'rally' | 'pool_triathlon' | 'e_bike_enduro' | 'all' | number;
192
+ export type SupportedExdScreenLayouts = 'full_screen' | 'half_vertical' | 'half_horizontal' | 'half_vertical_right_split' | 'half_horizontal_bottom_split' | 'full_quarter_split' | 'half_vertical_left_split' | 'half_horizontal_top_split' | number;
193
+ export type SuspensionExerciseName = 'chest_fly' | 'chest_press' | 'crunch' | 'curl' | 'dip' | 'face_pull' | 'glute_bridge' | 'hamstring_curl' | 'hip_drop' | 'inverted_row' | 'knee_drive_jump' | 'knee_to_chest' | 'lat_pullover' | 'lunge' | 'mountain_climber' | 'pendulum' | 'pike' | 'plank' | 'power_pull' | 'pull_up' | 'push_up' | 'reverse_mountain_climber' | 'reverse_plank' | 'rollout' | 'row' | 'side_lunge' | 'side_plank' | 'single_leg_deadlift' | 'single_leg_squat' | 'sit_up' | 'split' | 'squat' | 'squat_jump' | 'tricep_press' | 'y_fly' | number;
194
+ export type SwimStroke = 'freestyle' | 'backstroke' | 'breaststroke' | 'butterfly' | 'drill' | 'mixed' | 'im' | 'im_by_round' | 'rimo' | number;
195
+ export type Switch = 'off' | 'on' | 'auto' | number;
196
+ export type TapSensitivity = 'high' | 'medium' | 'low' | number;
197
+ export type TimeIntoDay = number;
198
+ export type TimeMode = 'hour12' | 'hour24' | 'military' | 'hour12_with_seconds' | 'hour24_with_seconds' | 'utc' | number;
199
+ export type TimerTrigger = 'manual' | 'auto' | 'fitness_equipment' | number;
200
+ export type TimeZone = 'almaty' | 'bangkok' | 'bombay' | 'brasilia' | 'cairo' | 'cape_verde_is' | 'darwin' | 'eniwetok' | 'fiji' | 'hong_kong' | 'islamabad' | 'kabul' | 'magadan' | 'mid_atlantic' | 'moscow' | 'muscat' | 'newfoundland' | 'samoa' | 'sydney' | 'tehran' | 'tokyo' | 'us_alaska' | 'us_atlantic' | 'us_central' | 'us_eastern' | 'us_hawaii' | 'us_mountain' | 'us_pacific' | 'other' | 'auckland' | 'kathmandu' | 'europe_western_wet' | 'europe_central_cet' | 'europe_eastern_eet' | 'jakarta' | 'perth' | 'adelaide' | 'brisbane' | 'tasmania' | 'iceland' | 'amsterdam' | 'athens' | 'barcelona' | 'berlin' | 'brussels' | 'budapest' | 'copenhagen' | 'dublin' | 'helsinki' | 'lisbon' | 'london' | 'madrid' | 'munich' | 'oslo' | 'paris' | 'prague' | 'reykjavik' | 'rome' | 'stockholm' | 'vienna' | 'warsaw' | 'zurich' | 'quebec' | 'ontario' | 'manitoba' | 'saskatchewan' | 'alberta' | 'british_columbia' | 'boise' | 'boston' | 'chicago' | 'dallas' | 'denver' | 'kansas_city' | 'las_vegas' | 'los_angeles' | 'miami' | 'minneapolis' | 'new_york' | 'new_orleans' | 'phoenix' | 'santa_fe' | 'seattle' | 'washington_dc' | 'us_arizona' | 'chita' | 'ekaterinburg' | 'irkutsk' | 'kaliningrad' | 'krasnoyarsk' | 'novosibirsk' | 'petropavlovsk_kamchatskiy' | 'samara' | 'vladivostok' | 'mexico_central' | 'mexico_mountain' | 'mexico_pacific' | 'cape_town' | 'winkhoek' | 'lagos' | 'riyahd' | 'venezuela' | 'australia_lh' | 'santiago' | 'manual' | 'automatic' | number;
201
+ export type TireExerciseName = 'flip' | number;
202
+ export type TissueModelType = 'zhl16c' | number;
203
+ export type Tone = 'off' | 'tone' | 'vibrate' | 'tone_and_vibrate' | number;
204
+ export type TotalBodyExerciseName = 'burpee' | 'weighted_burpee' | 'burpee_box_jump' | 'weighted_burpee_box_jump' | 'high_pull_burpee' | 'man_makers' | 'one_arm_burpee' | 'squat_thrusts' | 'weighted_squat_thrusts' | 'squat_plank_push_up' | 'weighted_squat_plank_push_up' | 'standing_t_rotation_balance' | 'weighted_standing_t_rotation_balance' | 'barbell_burpee' | 'burpee_box_jump_over_yes_literally_jumping_over_the_box' | 'burpee_box_jump_step_up_over' | 'lateral_barbell_burpee' | 'total_body_burpee_over_bar' | 'burpee_box_jump_over' | 'burpee_wheelchair' | number;
205
+ export type TricepsExtensionExerciseName = 'bench_dip' | 'weighted_bench_dip' | 'body_weight_dip' | 'cable_kickback' | 'cable_lying_triceps_extension' | 'cable_overhead_triceps_extension' | 'dumbbell_kickback' | 'dumbbell_lying_triceps_extension' | 'ez_bar_overhead_triceps_extension' | 'incline_dip' | 'weighted_incline_dip' | 'incline_ez_bar_lying_triceps_extension' | 'lying_dumbbell_pullover_to_extension' | 'lying_ez_bar_triceps_extension' | 'lying_triceps_extension_to_close_grip_bench_press' | 'overhead_dumbbell_triceps_extension' | 'reclining_triceps_press' | 'reverse_grip_pressdown' | 'reverse_grip_triceps_pressdown' | 'rope_pressdown' | 'seated_barbell_overhead_triceps_extension' | 'seated_dumbbell_overhead_triceps_extension' | 'seated_ez_bar_overhead_triceps_extension' | 'seated_single_arm_overhead_dumbbell_extension' | 'single_arm_dumbbell_overhead_triceps_extension' | 'single_dumbbell_seated_overhead_triceps_extension' | 'single_leg_bench_dip_and_kick' | 'weighted_single_leg_bench_dip_and_kick' | 'single_leg_dip' | 'weighted_single_leg_dip' | 'static_lying_triceps_extension' | 'suspended_dip' | 'weighted_suspended_dip' | 'swiss_ball_dumbbell_lying_triceps_extension' | 'swiss_ball_ez_bar_lying_triceps_extension' | 'swiss_ball_ez_bar_overhead_triceps_extension' | 'tabletop_dip' | 'weighted_tabletop_dip' | 'triceps_extension_on_floor' | 'triceps_pressdown' | 'weighted_dip' | 'alternating_dumbbell_lying_triceps_extension' | 'triceps_press' | 'dumbbell_kickback_wheelchair' | 'overhead_dumbbell_triceps_extension_wheelchair' | number;
206
+ export type TurnType = 'arriving_idx' | 'arriving_left_idx' | 'arriving_right_idx' | 'arriving_via_idx' | 'arriving_via_left_idx' | 'arriving_via_right_idx' | 'bear_keep_left_idx' | 'bear_keep_right_idx' | 'continue_idx' | 'exit_left_idx' | 'exit_right_idx' | 'ferry_idx' | 'roundabout45_idx' | 'roundabout90_idx' | 'roundabout135_idx' | 'roundabout180_idx' | 'roundabout225_idx' | 'roundabout270_idx' | 'roundabout315_idx' | 'roundabout360_idx' | 'roundabout_neg45_idx' | 'roundabout_neg90_idx' | 'roundabout_neg135_idx' | 'roundabout_neg180_idx' | 'roundabout_neg225_idx' | 'roundabout_neg270_idx' | 'roundabout_neg315_idx' | 'roundabout_neg360_idx' | 'roundabout_generic_idx' | 'roundabout_neg_generic_idx' | 'sharp_turn_left_idx' | 'sharp_turn_right_idx' | 'turn_left_idx' | 'turn_right_idx' | 'uturn_left_idx' | 'uturn_right_idx' | 'icon_inv_idx' | 'icon_idx_cnt' | number;
207
+ export type UserLocalId = 'local_min' | 'local_max' | 'stationary_min' | 'stationary_max' | 'portable_min' | 'portable_max' | number;
208
+ export type WarmUpExerciseName = 'quadruped_rocking' | 'neck_tilts' | 'ankle_circles' | 'ankle_dorsiflexion_with_band' | 'ankle_internal_rotation' | 'arm_circles' | 'bent_over_reach_to_sky' | 'cat_camel' | 'elbow_to_foot_lunge' | 'forward_and_backward_leg_swings' | 'groiners' | 'inverted_hamstring_stretch' | 'lateral_duck_under' | 'neck_rotations' | 'opposite_arm_and_leg_balance' | 'reach_roll_and_lift' | 'scorpion' | 'shoulder_circles' | 'side_to_side_leg_swings' | 'sleeper_stretch' | 'slide_out' | 'swiss_ball_hip_crossover' | 'swiss_ball_reach_roll_and_lift' | 'swiss_ball_windshield_wipers' | 'thoracic_rotation' | 'walking_high_kicks' | 'walking_high_knees' | 'walking_knee_hugs' | 'walking_leg_cradles' | 'walkout' | 'walkout_from_push_up_position' | 'biceps_stretch' | 'glutes_stretch' | 'standing_hamstring_stretch' | 'stretch90_90' | 'stretch_abs' | 'stretch_butterfly' | 'stretch_calf' | 'stretch_cat_cow' | 'stretch_childs_pose' | 'stretch_cobra' | 'stretch_forearms' | 'stretch_forward_glutes' | 'stretch_front_split' | 'stretch_hamstring' | 'stretch_hip_flexor_and_quad' | 'stretch_lat' | 'stretch_levator_scapulae' | 'stretch_lunge_with_spinal_twist' | 'stretch_lunging_hip_flexor' | 'stretch_lying_abduction' | 'stretch_lying_it_band' | 'stretch_lying_knee_to_chest' | 'stretch_lying_piriformis' | 'stretch_lying_spinal_twist' | 'stretch_neck' | 'stretch_obliques' | 'stretch_over_under_shoulder' | 'stretch_pectoral' | 'stretch_pigeon_pose' | 'stretch_piriformis' | 'stretch_quad' | 'stretch_scorpion' | 'stretch_shoulder' | 'stretch_side' | 'stretch_side_lunge' | 'stretch_side_split' | 'stretch_standing_it_band' | 'stretch_straddle' | 'stretch_triceps' | 'stretch_wall_chest_and_shoulder' | 'neck_rotations_wheelchair' | 'half_kneeling_arm_rotation' | 'three_way_ankle_mobilization' | 'ninety_ninety_hip_switch' | 'active_frog' | 'shoulder_sweeps' | 'ankle_lunges' | 'back_roll_foam_roller' | 'bear_crawl' | 'latissimus_dorsi_foam_roll' | 'reverse_t_hip_opener' | 'shoulder_rolls' | 'chest_openers' | 'triceps_stretch' | 'upper_back_stretch' | 'hip_circles' | 'ankle_stretch' | 'marching_in_place' | 'triceps_stretch_wheelchair' | 'upper_back_stretch_wheelchair' | number;
209
+ export type WatchfaceMode = 'digital' | 'analog' | 'connect_iq' | 'disabled' | number;
210
+ export type WaterType = 'fresh' | 'salt' | 'en13319' | 'custom' | number;
211
+ export type WeatherReport = 'current' | 'hourly_forecast' | 'daily_forecast' | number;
212
+ export type WeatherSevereType = 'unspecified' | 'tornado' | 'tsunami' | 'hurricane' | 'extreme_wind' | 'typhoon' | 'inland_hurricane' | 'hurricane_force_wind' | 'waterspout' | 'severe_thunderstorm' | 'wreckhouse_winds' | 'les_suetes_wind' | 'avalanche' | 'flash_flood' | 'tropical_storm' | 'inland_tropical_storm' | 'blizzard' | 'ice_storm' | 'freezing_rain' | 'debris_flow' | 'flash_freeze' | 'dust_storm' | 'high_wind' | 'winter_storm' | 'heavy_freezing_spray' | 'extreme_cold' | 'wind_chill' | 'cold_wave' | 'heavy_snow_alert' | 'lake_effect_blowing_snow' | 'snow_squall' | 'lake_effect_snow' | 'winter_weather' | 'sleet' | 'snowfall' | 'snow_and_blowing_snow' | 'blowing_snow' | 'snow_alert' | 'arctic_outflow' | 'freezing_drizzle' | 'storm' | 'storm_surge' | 'rainfall' | 'areal_flood' | 'coastal_flood' | 'lakeshore_flood' | 'excessive_heat' | 'heat' | 'weather' | 'high_heat_and_humidity' | 'humidex_and_health' | 'humidex' | 'gale' | 'freezing_spray' | 'special_marine' | 'squall' | 'strong_wind' | 'lake_wind' | 'marine_weather' | 'wind' | 'small_craft_hazardous_seas' | 'hazardous_seas' | 'small_craft' | 'small_craft_winds' | 'small_craft_rough_bar' | 'high_water_level' | 'ashfall' | 'freezing_fog' | 'dense_fog' | 'dense_smoke' | 'blowing_dust' | 'hard_freeze' | 'freeze' | 'frost' | 'fire_weather' | 'flood' | 'rip_tide' | 'high_surf' | 'smog' | 'air_quality' | 'brisk_wind' | 'air_stagnation' | 'low_water' | 'hydrological' | 'special_weather' | number;
213
+ export type WeatherSeverity = 'unknown' | 'warning' | 'watch' | 'advisory' | 'statement' | number;
214
+ export type WeatherStatus = 'clear' | 'partly_cloudy' | 'mostly_cloudy' | 'rain' | 'snow' | 'windy' | 'thunderstorms' | 'wintry_mix' | 'fog' | 'hazy' | 'hail' | 'scattered_showers' | 'scattered_thunderstorms' | 'unknown_precipitation' | 'light_rain' | 'heavy_rain' | 'light_snow' | 'heavy_snow' | 'light_rain_snow' | 'heavy_rain_snow' | 'cloudy' | number;
215
+ export type Weight = 'calculating' | number;
216
+ export type WktStepDuration = 'time' | 'distance' | 'hr_less_than' | 'hr_greater_than' | 'calories' | 'open' | 'repeat_until_steps_cmplt' | 'repeat_until_time' | 'repeat_until_distance' | 'repeat_until_calories' | 'repeat_until_hr_less_than' | 'repeat_until_hr_greater_than' | 'repeat_until_power_less_than' | 'repeat_until_power_greater_than' | 'power_less_than' | 'power_greater_than' | 'training_peaks_tss' | 'repeat_until_power_last_lap_less_than' | 'repeat_until_max_power_last_lap_less_than' | 'power3s_less_than' | 'power10s_less_than' | 'power30s_less_than' | 'power3s_greater_than' | 'power10s_greater_than' | 'power30s_greater_than' | 'power_lap_less_than' | 'power_lap_greater_than' | 'repeat_until_training_peaks_tss' | 'repetition_time' | 'reps' | 'time_only' | number;
217
+ export type WktStepTarget = 'speed' | 'heart_rate' | 'open' | 'cadence' | 'power' | 'grade' | 'resistance' | 'power3s' | 'power10s' | 'power30s' | 'power_lap' | 'swim_stroke' | 'speed_lap' | 'heart_rate_lap' | number;
218
+ export type WorkoutCapabilities = 'interval' | 'custom' | 'fitness_equipment' | 'firstbeat' | 'new_leaf' | 'tcx' | 'speed' | 'heart_rate' | 'distance' | 'cadence' | 'power' | 'grade' | 'resistance' | 'protected' | number;
219
+ export type WorkoutEquipment = 'none' | 'swim_fins' | 'swim_kickboard' | 'swim_paddles' | 'swim_pull_buoy' | 'swim_snorkel' | number;
220
+ export type WorkoutHr = 'bpm_offset' | number;
221
+ export type WorkoutPower = 'watts_offset' | number;
177
222
  export type SpeedUnits = 'm/s' | 'mph' | 'km/h';
178
223
  export type LengthUnits = 'm' | 'mi' | 'km';
179
- export type TemperatureUnits = '\u00B0C' | 'kelvin' | 'fahrenheit';
224
+ export type TemperatureUnits = 'celsius' | '\u00B0C' | 'kelvin' | 'fahrenheit';
180
225
  export type PressureUnits = 'cbar' | 'bar' | 'psi';
181
226
  export interface FitOptions {
182
227
  speedUnits: Unit<SpeedUnits>;
@@ -189,25 +234,41 @@ export interface ParsedFileId {
189
234
  manufacturer?: Manufacturer;
190
235
  product?: number;
191
236
  serial_number?: number;
192
- time_created?: string;
237
+ time_created?: Date;
193
238
  number?: number;
194
239
  product_name?: string;
195
240
  }
196
241
  export interface ParsedCapabilities {
197
- languages?: number;
198
- sports?: SportBits0;
242
+ languages?: (number | null)[];
243
+ sports?: (SportBits0 | null)[];
199
244
  workouts_supported?: WorkoutCapabilities;
200
245
  connectivity_supported?: ConnectivityCapabilities;
201
246
  }
202
247
  export interface ParsedDeviceSettings {
203
248
  active_time_zone?: number;
204
249
  utc_offset?: number;
205
- time_offset?: number;
206
- time_zone_offset?: number;
250
+ time_offset?: (number | null)[];
251
+ time_mode?: (TimeMode | null)[];
252
+ time_zone_offset?: (number | null)[];
253
+ backlight_mode?: BacklightMode;
254
+ activity_tracker_enabled?: number;
255
+ clock_time?: Date;
256
+ pages_enabled?: (number | null)[];
257
+ move_alert_enabled?: number;
258
+ date_mode?: DateMode;
207
259
  display_orientation?: DisplayOrientation;
208
260
  mounting_side?: Side;
261
+ default_page?: (number | null)[];
262
+ autosync_min_steps?: number;
263
+ autosync_min_time?: number;
264
+ lactate_threshold_autodetect_enabled?: number;
265
+ ble_auto_upload_enabled?: number;
266
+ auto_sync_frequency?: AutoSyncFrequency;
267
+ auto_activity_detect?: AutoActivityDetect;
209
268
  number_of_screens?: number;
210
269
  smart_notification_display_orientation?: DisplayOrientation;
270
+ tap_interface?: Switch;
271
+ tap_sensitivity?: TapSensitivity;
211
272
  }
212
273
  export interface ParsedUserProfile {
213
274
  friendly_name?: string;
@@ -230,25 +291,29 @@ export interface ParsedUserProfile {
230
291
  position_setting?: DisplayPosition;
231
292
  temperature_setting?: DisplayMeasure;
232
293
  local_id?: UserLocalId;
233
- global_id?: number;
294
+ global_id?: (number | null)[];
234
295
  wake_time?: number;
235
296
  sleep_time?: number;
236
297
  height_setting?: DisplayMeasure;
298
+ user_running_step_length?: number;
299
+ user_walking_step_length?: number;
300
+ depth_setting?: DisplayMeasure;
301
+ dive_count?: number;
237
302
  message_index?: MessageIndex;
238
303
  }
239
304
  export interface ParsedHrmProfile {
240
- enabled?: boolean;
305
+ enabled?: number;
241
306
  hrm_ant_id?: number;
242
- log_hrv?: boolean;
307
+ log_hrv?: number;
243
308
  hrm_ant_id_trans_type?: number;
244
309
  message_index?: MessageIndex;
245
310
  }
246
311
  export interface ParsedSdmProfile {
247
- enabled?: boolean;
312
+ enabled?: number;
248
313
  sdm_ant_id?: number;
249
314
  sdm_cal_factor?: number;
250
315
  odometer?: number;
251
- speed_source?: boolean;
316
+ speed_source?: number;
252
317
  sdm_ant_id_trans_type?: number;
253
318
  odometer_rollover?: number;
254
319
  message_index?: MessageIndex;
@@ -266,25 +331,25 @@ export interface ParsedBikeProfile {
266
331
  auto_wheelsize?: number;
267
332
  bike_weight?: number;
268
333
  power_cal_factor?: number;
269
- auto_wheel_cal?: boolean;
270
- auto_power_zero?: boolean;
334
+ auto_wheel_cal?: number;
335
+ auto_power_zero?: number;
271
336
  id?: number;
272
- spd_enabled?: boolean;
273
- cad_enabled?: boolean;
274
- spdcad_enabled?: boolean;
275
- power_enabled?: boolean;
337
+ spd_enabled?: number;
338
+ cad_enabled?: number;
339
+ spdcad_enabled?: number;
340
+ power_enabled?: number;
276
341
  crank_length?: number;
277
- enabled?: boolean;
342
+ enabled?: number;
278
343
  bike_spd_ant_id_trans_type?: number;
279
344
  bike_cad_ant_id_trans_type?: number;
280
345
  bike_spdcad_ant_id_trans_type?: number;
281
346
  bike_power_ant_id_trans_type?: number;
282
347
  odometer_rollover?: number;
283
348
  front_gear_num?: number;
284
- front_gear?: number;
349
+ front_gear?: (number | null)[];
285
350
  rear_gear_num?: number;
286
- rear_gear?: number;
287
- shimano_di2_enabled?: boolean;
351
+ rear_gear?: (number | null)[];
352
+ shimano_di2_enabled?: number;
288
353
  message_index?: MessageIndex;
289
354
  }
290
355
  export interface ParsedZonesTarget {
@@ -315,24 +380,31 @@ export interface ParsedSport {
315
380
  sub_sport?: SubSport;
316
381
  name?: string;
317
382
  }
383
+ export interface ParsedTrainingSettings {
384
+ target_distance?: number;
385
+ target_speed?: number;
386
+ target_time?: number;
387
+ precise_target_speed?: number;
388
+ }
318
389
  export interface ParsedGoal {
319
390
  sport?: Sport;
320
391
  sub_sport?: SubSport;
321
- start_date?: string;
322
- end_date?: string;
392
+ start_date?: Date;
393
+ end_date?: Date;
323
394
  type?: Goal;
324
395
  value?: number;
325
- repeat?: boolean;
396
+ repeat?: number;
326
397
  target_value?: number;
327
398
  recurrence?: GoalRecurrence;
328
399
  recurrence_value?: number;
329
- enabled?: boolean;
400
+ enabled?: number;
401
+ source?: GoalSource;
330
402
  message_index?: MessageIndex;
331
403
  }
332
404
  export interface ParsedSession {
333
405
  event?: Event;
334
406
  event_type?: EventType;
335
- start_time: string;
407
+ start_time?: Date;
336
408
  start_position_lat?: number;
337
409
  start_position_long?: number;
338
410
  sport?: Sport;
@@ -362,6 +434,7 @@ export interface ParsedSession {
362
434
  nec_long?: number;
363
435
  swc_lat?: number;
364
436
  swc_long?: number;
437
+ num_lengths?: number;
365
438
  normalized_power?: number;
366
439
  training_stress_score?: number;
367
440
  intensity_factor?: number;
@@ -392,18 +465,19 @@ export interface ParsedSession {
392
465
  max_pos_vertical_speed?: number;
393
466
  max_neg_vertical_speed?: number;
394
467
  min_heart_rate?: number;
395
- time_in_hr_zone?: number[];
396
- time_in_speed_zone?: number[];
397
- time_in_cadence_zone?: number[];
398
- time_in_power_zone?: number[];
468
+ time_in_hr_zone?: (number | null)[];
469
+ time_in_speed_zone?: (number | null)[];
470
+ time_in_cadence_zone?: (number | null)[];
471
+ time_in_power_zone?: (number | null)[];
399
472
  avg_lap_time?: number;
400
473
  best_lap_index?: number;
401
474
  min_altitude?: number;
475
+ active_time?: number;
402
476
  player_score?: number;
403
477
  opponent_score?: number;
404
478
  opponent_name?: string;
405
- stroke_count?: number;
406
- zone_count?: number;
479
+ stroke_count?: (number | null)[];
480
+ zone_count?: (number | null)[];
407
481
  max_ball_speed?: number;
408
482
  avg_ball_speed?: number;
409
483
  avg_vertical_oscillation?: number;
@@ -412,12 +486,12 @@ export interface ParsedSession {
412
486
  avg_fractional_cadence?: number;
413
487
  max_fractional_cadence?: number;
414
488
  total_fractional_cycles?: number;
415
- avg_total_hemoglobin_conc?: number;
416
- min_total_hemoglobin_conc?: number;
417
- max_total_hemoglobin_conc?: number;
418
- avg_saturated_hemoglobin_percent?: number;
419
- min_saturated_hemoglobin_percent?: number;
420
- max_saturated_hemoglobin_percent?: number;
489
+ avg_total_hemoglobin_conc?: (number | null)[];
490
+ min_total_hemoglobin_conc?: (number | null)[];
491
+ max_total_hemoglobin_conc?: (number | null)[];
492
+ avg_saturated_hemoglobin_percent?: (number | null)[];
493
+ min_saturated_hemoglobin_percent?: (number | null)[];
494
+ max_saturated_hemoglobin_percent?: (number | null)[];
421
495
  avg_left_torque_effectiveness?: number;
422
496
  avg_right_torque_effectiveness?: number;
423
497
  avg_left_pedal_smoothness?: number;
@@ -429,14 +503,14 @@ export interface ParsedSession {
429
503
  stand_count?: number;
430
504
  avg_left_pco?: number;
431
505
  avg_right_pco?: number;
432
- avg_left_power_phase?: number;
433
- avg_left_power_phase_peak?: number;
434
- avg_right_power_phase?: number;
435
- avg_right_power_phase_peak?: number;
436
- avg_power_position?: number;
437
- max_power_position?: number;
438
- avg_cadence_position?: number;
439
- max_cadence_position?: number;
506
+ avg_left_power_phase?: (number | null)[];
507
+ avg_left_power_phase_peak?: (number | null)[];
508
+ avg_right_power_phase?: (number | null)[];
509
+ avg_right_power_phase_peak?: (number | null)[];
510
+ avg_power_position?: (number | null)[];
511
+ max_power_position?: (number | null)[];
512
+ avg_cadence_position?: (number | null)[];
513
+ max_cadence_position?: (number | null)[];
440
514
  enhanced_avg_speed?: number;
441
515
  enhanced_max_speed?: number;
442
516
  enhanced_avg_altitude?: number;
@@ -450,8 +524,19 @@ export interface ParsedSession {
450
524
  avg_step_length?: number;
451
525
  total_anaerobic_training_effect?: number;
452
526
  avg_vam?: number;
453
- recovery_advisor?: number;
527
+ avg_depth?: number;
528
+ max_depth?: number;
529
+ surface_interval?: number;
530
+ start_cns?: number;
531
+ end_cns?: number;
532
+ start_n2?: number;
533
+ end_n2?: number;
534
+ avg_respiration_rate?: number;
535
+ max_respiration_rate?: number;
536
+ min_respiration_rate?: number;
454
537
  min_temperature?: number;
538
+ o2_toxicity?: number;
539
+ dive_number?: number;
455
540
  training_load_peak?: number;
456
541
  enhanced_avg_respiration_rate?: number;
457
542
  enhanced_max_respiration_rate?: number;
@@ -465,18 +550,27 @@ export interface ParsedSession {
465
550
  primary_benefit?: number;
466
551
  workout_feel?: number;
467
552
  workout_rpe?: number;
468
- resting_calories?: number;
553
+ avg_spo2?: number;
554
+ avg_stress?: number;
555
+ metabolic_calories?: number;
556
+ sdrr_hrv?: number;
557
+ rmssd_hrv?: number;
558
+ total_fractional_ascent?: number;
559
+ total_fractional_descent?: number;
469
560
  beginning_potential_stamina?: number;
470
561
  ending_potential_stamina?: number;
471
562
  min_stamina?: number;
472
- timestamp: string;
563
+ avg_core_temperature?: number;
564
+ min_core_temperature?: number;
565
+ max_core_temperature?: number;
566
+ timestamp?: Date;
473
567
  message_index?: MessageIndex;
474
568
  laps?: ParsedLap[];
475
569
  }
476
570
  export interface ParsedLap {
477
571
  event?: Event;
478
572
  event_type?: EventType;
479
- start_time: string;
573
+ start_time?: Date;
480
574
  start_position_lat?: number;
481
575
  start_position_long?: number;
482
576
  end_position_lat?: number;
@@ -525,17 +619,18 @@ export interface ParsedLap {
525
619
  avg_neg_vertical_speed?: number;
526
620
  max_pos_vertical_speed?: number;
527
621
  max_neg_vertical_speed?: number;
528
- time_in_hr_zone?: number[];
529
- time_in_speed_zone?: number[];
530
- time_in_cadence_zone?: number[];
531
- time_in_power_zone?: number[];
622
+ time_in_hr_zone?: (number | null)[];
623
+ time_in_speed_zone?: (number | null)[];
624
+ time_in_cadence_zone?: (number | null)[];
625
+ time_in_power_zone?: (number | null)[];
532
626
  repetition_num?: number;
533
627
  min_altitude?: number;
534
628
  min_heart_rate?: number;
629
+ active_time?: number;
535
630
  wkt_step_index?: MessageIndex;
536
631
  opponent_score?: number;
537
- stroke_count?: number;
538
- zone_count?: number;
632
+ stroke_count?: (number | null)[];
633
+ zone_count?: (number | null)[];
539
634
  avg_vertical_oscillation?: number;
540
635
  avg_stance_time_percent?: number;
541
636
  avg_stance_time?: number;
@@ -543,12 +638,12 @@ export interface ParsedLap {
543
638
  max_fractional_cadence?: number;
544
639
  total_fractional_cycles?: number;
545
640
  player_score?: number;
546
- avg_total_hemoglobin_conc?: number;
547
- min_total_hemoglobin_conc?: number;
548
- max_total_hemoglobin_conc?: number;
549
- avg_saturated_hemoglobin_percent?: number;
550
- min_saturated_hemoglobin_percent?: number;
551
- max_saturated_hemoglobin_percent?: number;
641
+ avg_total_hemoglobin_conc?: (number | null)[];
642
+ min_total_hemoglobin_conc?: (number | null)[];
643
+ max_total_hemoglobin_conc?: (number | null)[];
644
+ avg_saturated_hemoglobin_percent?: (number | null)[];
645
+ min_saturated_hemoglobin_percent?: (number | null)[];
646
+ max_saturated_hemoglobin_percent?: (number | null)[];
552
647
  avg_left_torque_effectiveness?: number;
553
648
  avg_right_torque_effectiveness?: number;
554
649
  avg_left_pedal_smoothness?: number;
@@ -558,14 +653,14 @@ export interface ParsedLap {
558
653
  stand_count?: number;
559
654
  avg_left_pco?: number;
560
655
  avg_right_pco?: number;
561
- avg_left_power_phase?: number;
562
- avg_left_power_phase_peak?: number;
563
- avg_right_power_phase?: number;
564
- avg_right_power_phase_peak?: number;
565
- avg_power_position?: number;
566
- max_power_position?: number;
567
- avg_cadence_position?: number;
568
- max_cadence_position?: number;
656
+ avg_left_power_phase?: (number | null)[];
657
+ avg_left_power_phase_peak?: (number | null)[];
658
+ avg_right_power_phase?: (number | null)[];
659
+ avg_right_power_phase_peak?: (number | null)[];
660
+ avg_power_position?: (number | null)[];
661
+ max_power_position?: (number | null)[];
662
+ avg_cadence_position?: (number | null)[];
663
+ max_cadence_position?: (number | null)[];
569
664
  enhanced_avg_speed?: number;
570
665
  enhanced_max_speed?: number;
571
666
  enhanced_avg_altitude?: number;
@@ -578,7 +673,24 @@ export interface ParsedLap {
578
673
  avg_stance_time_balance?: number;
579
674
  avg_step_length?: number;
580
675
  avg_vam?: number;
581
- timestamp: string;
676
+ avg_depth?: number;
677
+ max_depth?: number;
678
+ min_temperature?: number;
679
+ enhanced_avg_respiration_rate?: number;
680
+ enhanced_max_respiration_rate?: number;
681
+ avg_respiration_rate?: number;
682
+ max_respiration_rate?: number;
683
+ total_grit?: number;
684
+ total_flow?: number;
685
+ jump_count?: number;
686
+ avg_grit?: number;
687
+ avg_flow?: number;
688
+ total_fractional_ascent?: number;
689
+ total_fractional_descent?: number;
690
+ avg_core_temperature?: number;
691
+ min_core_temperature?: number;
692
+ max_core_temperature?: number;
693
+ timestamp?: Date;
582
694
  message_index?: MessageIndex;
583
695
  records?: ParsedRecord[];
584
696
  lengths?: ParsedLength[];
@@ -592,13 +704,13 @@ export interface ParsedRecord {
592
704
  distance?: number;
593
705
  speed?: number;
594
706
  power?: number;
595
- compressed_speed_distance?: number;
707
+ compressed_speed_distance?: (number | null)[];
596
708
  grade?: number;
597
709
  resistance?: number;
598
710
  time_from_course?: number;
599
711
  cycle_length?: number;
600
712
  temperature?: number;
601
- speed_1s?: number;
713
+ speed1s?: (number | null)[];
602
714
  cycles?: number;
603
715
  total_cycles?: number;
604
716
  compressed_accumulated_power?: number;
@@ -631,10 +743,10 @@ export interface ParsedRecord {
631
743
  device_index?: number;
632
744
  left_pco?: number;
633
745
  right_pco?: number;
634
- left_power_phase?: number;
635
- left_power_phase_peak?: number;
636
- right_power_phase?: number;
637
- right_power_phase_peak?: number;
746
+ left_power_phase?: (number | null)[];
747
+ left_power_phase_peak?: (number | null)[];
748
+ right_power_phase?: (number | null)[];
749
+ right_power_phase_peak?: (number | null)[];
638
750
  enhanced_speed?: number;
639
751
  enhanced_altitude?: number;
640
752
  battery_soc?: number;
@@ -642,6 +754,7 @@ export interface ParsedRecord {
642
754
  vertical_ratio?: number;
643
755
  stance_time_balance?: number;
644
756
  step_length?: number;
757
+ cycle_length16?: number;
645
758
  garmin_performance_condition?: number;
646
759
  absolute_pressure?: number;
647
760
  depth?: number;
@@ -651,11 +764,25 @@ export interface ParsedRecord {
651
764
  ndl_time?: number;
652
765
  cns_load?: number;
653
766
  n2_load?: number;
767
+ respiration_rate?: number;
768
+ enhanced_respiration_rate?: number;
654
769
  grit?: number;
655
770
  flow?: number;
771
+ current_stress?: number;
772
+ ebike_travel_range?: number;
773
+ ebike_battery_level?: number;
774
+ ebike_assist_mode?: number;
775
+ ebike_assist_level_percent?: number;
776
+ air_time_remaining?: number;
777
+ pressure_sac?: number;
778
+ volume_sac?: number;
779
+ rmv?: number;
780
+ ascent_rate?: number;
781
+ po2?: number;
656
782
  potential_stamina?: number;
657
783
  stamina?: number;
658
- timestamp: string;
784
+ core_temperature?: number;
785
+ timestamp?: Date;
659
786
  }
660
787
  export interface ParsedEvent {
661
788
  event?: Event;
@@ -670,7 +797,13 @@ export interface ParsedEvent {
670
797
  rear_gear_num?: number;
671
798
  rear_gear?: number;
672
799
  device_index?: number;
673
- timestamp: string;
800
+ activity_type?: ActivityType;
801
+ start_timestamp?: Date;
802
+ radar_threat_level_max?: RadarThreatLevelType;
803
+ radar_threat_count?: number;
804
+ radar_threat_avg_approach_speed?: number;
805
+ radar_threat_max_approach_speed?: number;
806
+ timestamp?: Date;
674
807
  }
675
808
  export interface ParsedDeviceInfo {
676
809
  device_index?: number;
@@ -692,13 +825,18 @@ export interface ParsedDeviceInfo {
692
825
  source_type?: SourceType;
693
826
  product_name?: string;
694
827
  battery_level?: number;
695
- timestamp: string;
828
+ timestamp?: Date;
696
829
  }
697
830
  export interface ParsedWorkout {
698
831
  sport?: Sport;
699
832
  capabilities?: WorkoutCapabilities;
700
833
  num_valid_steps?: number;
701
834
  wkt_name?: string;
835
+ sub_sport?: SubSport;
836
+ pool_length?: number;
837
+ pool_length_unit?: DisplayMeasure;
838
+ wkt_description?: string;
839
+ message_index?: MessageIndex;
702
840
  }
703
841
  export interface ParsedWorkoutStep {
704
842
  wkt_step_name?: string;
@@ -709,10 +847,29 @@ export interface ParsedWorkoutStep {
709
847
  custom_target_value_low?: number;
710
848
  custom_target_value_high?: number;
711
849
  intensity?: Intensity;
850
+ notes?: string;
851
+ equipment?: WorkoutEquipment;
852
+ exercise_category?: ExerciseCategory;
853
+ exercise_name?: number;
854
+ exercise_weight?: number;
855
+ weight_display_unit?: FitBaseUnit;
856
+ secondary_target_type?: WktStepTarget;
857
+ secondary_target_value?: number;
858
+ secondary_custom_target_value_low?: number;
859
+ secondary_custom_target_value_high?: number;
712
860
  message_index?: MessageIndex;
713
861
  }
862
+ export interface ParsedSchedule {
863
+ manufacturer?: Manufacturer;
864
+ product?: number;
865
+ serial_number?: number;
866
+ time_created?: Date;
867
+ completed?: number;
868
+ type?: Schedule;
869
+ scheduled_time?: Date;
870
+ }
714
871
  export interface ParsedWeightScale {
715
- weight?: Weight;
872
+ weight?: number;
716
873
  percent_fat?: number;
717
874
  percent_hydration?: number;
718
875
  visceral_fat_mass?: number;
@@ -724,7 +881,8 @@ export interface ParsedWeightScale {
724
881
  metabolic_age?: number;
725
882
  visceral_fat_rating?: number;
726
883
  user_profile_index?: MessageIndex;
727
- timestamp: string;
884
+ bmi?: number;
885
+ timestamp?: Date;
728
886
  }
729
887
  export interface ParsedCourse {
730
888
  sport?: Sport;
@@ -733,13 +891,13 @@ export interface ParsedCourse {
733
891
  sub_sport?: SubSport;
734
892
  }
735
893
  export interface ParsedCoursePoint {
736
- timestamp: string;
894
+ timestamp?: Date;
737
895
  position_lat?: number;
738
896
  position_long?: number;
739
897
  distance?: number;
740
898
  type?: CoursePoint;
741
899
  name?: string;
742
- favorite?: boolean;
900
+ favorite?: number;
743
901
  message_index?: MessageIndex;
744
902
  }
745
903
  export interface ParsedTotals {
@@ -751,7 +909,7 @@ export interface ParsedTotals {
751
909
  sessions?: number;
752
910
  active_time?: number;
753
911
  sport_index?: number;
754
- timestamp: string;
912
+ timestamp?: Date;
755
913
  message_index?: MessageIndex;
756
914
  }
757
915
  export interface ParsedActivity {
@@ -760,9 +918,9 @@ export interface ParsedActivity {
760
918
  type?: Activity;
761
919
  event?: Event;
762
920
  event_type?: EventType;
763
- local_timestamp?: LocalDateTime;
921
+ local_timestamp?: Date;
764
922
  event_group?: number;
765
- timestamp: string;
923
+ timestamp?: Date;
766
924
  sessions?: ParsedSession[];
767
925
  events?: ParsedEvent[];
768
926
  hrv?: ParsedHrv[];
@@ -770,6 +928,7 @@ export interface ParsedActivity {
770
928
  developer_data_ids?: ParsedDeveloperDataId[];
771
929
  field_descriptions?: ParsedFieldDescription[];
772
930
  sports?: ParsedSport[];
931
+ sets?: ParsedSet[];
773
932
  splits?: ParsedSplit[];
774
933
  split_summaries?: ParsedSplitSummary[];
775
934
  }
@@ -808,14 +967,19 @@ export interface ParsedBloodPressure {
808
967
  systolic_pressure?: number;
809
968
  diastolic_pressure?: number;
810
969
  mean_arterial_pressure?: number;
811
- map_3_sample_mean?: number;
970
+ map3_sample_mean?: number;
812
971
  map_morning_values?: number;
813
972
  map_evening_values?: number;
814
973
  heart_rate?: number;
815
974
  heart_rate_type?: HrType;
816
975
  status?: BpStatus;
817
976
  user_profile_index?: MessageIndex;
818
- timestamp: string;
977
+ timestamp?: Date;
978
+ }
979
+ export interface ParsedSpeedZone {
980
+ high_value?: number;
981
+ name?: string;
982
+ message_index?: MessageIndex;
819
983
  }
820
984
  export interface ParsedMonitoring {
821
985
  device_index?: number;
@@ -829,11 +993,11 @@ export interface ParsedMonitoring {
829
993
  distance16?: number;
830
994
  cycles16?: number;
831
995
  active_time16?: number;
832
- local_timestamp?: number;
996
+ local_timestamp?: Date;
833
997
  temperature?: number;
834
998
  temperature_min?: number;
835
999
  temperature_max?: number;
836
- activity_time?: number;
1000
+ activity_time?: (number | null)[];
837
1001
  active_calories?: number;
838
1002
  current_activity_type_intensity?: number;
839
1003
  timestamp_min8?: number;
@@ -845,11 +1009,19 @@ export interface ParsedMonitoring {
845
1009
  ascent?: number;
846
1010
  descent?: number;
847
1011
  moderate_activity_minutes?: number;
848
- vigorous_activity_inutes?: number;
849
- timestamp: number;
1012
+ vigorous_activity_minutes?: number;
1013
+ timestamp?: Date;
1014
+ }
1015
+ export interface ParsedTrainingFile {
1016
+ type?: File;
1017
+ manufacturer?: Manufacturer;
1018
+ product?: number;
1019
+ serial_number?: number;
1020
+ time_created?: Date;
1021
+ timestamp?: Date;
850
1022
  }
851
1023
  export interface ParsedHrv {
852
- time?: number[];
1024
+ time?: (number | null)[];
853
1025
  }
854
1026
  export interface ParsedUserMetrics {
855
1027
  vo2_max?: number;
@@ -862,15 +1034,38 @@ export interface ParsedUserMetrics {
862
1034
  lthr?: number;
863
1035
  ltpower?: number;
864
1036
  ltspeed?: number;
865
- start_of_activity?: string;
1037
+ start_of_activity?: Date;
866
1038
  first_vo2_max?: number;
867
- end_of_previous_activity?: string;
868
- timestamp: string;
1039
+ end_of_previous_activity?: Date;
1040
+ timestamp?: Date;
1041
+ }
1042
+ export interface ParsedAntRx {
1043
+ fractional_timestamp?: number;
1044
+ mesg_id?: number;
1045
+ mesg_data?: (number | null)[];
1046
+ channel_number?: number;
1047
+ data?: (number | null)[];
1048
+ timestamp?: Date;
1049
+ }
1050
+ export interface ParsedAntTx {
1051
+ fractional_timestamp?: number;
1052
+ mesg_id?: number;
1053
+ mesg_data?: (number | null)[];
1054
+ channel_number?: number;
1055
+ data?: (number | null)[];
1056
+ timestamp?: Date;
1057
+ }
1058
+ export interface ParsedAntChannelId {
1059
+ channel_number?: number;
1060
+ device_type?: number;
1061
+ device_number?: number;
1062
+ transmission_type?: number;
1063
+ device_index?: number;
869
1064
  }
870
1065
  export interface ParsedLength {
871
1066
  event?: Event;
872
1067
  event_type?: EventType;
873
- start_time: string;
1068
+ start_time?: Date;
874
1069
  total_elapsed_time?: number;
875
1070
  total_timer_time?: number;
876
1071
  total_strokes?: number;
@@ -882,22 +1077,82 @@ export interface ParsedLength {
882
1077
  length_type?: LengthType;
883
1078
  player_score?: number;
884
1079
  opponent_score?: number;
885
- stroke_count?: number;
886
- zone_count?: number;
887
- timestamp: string;
1080
+ stroke_count?: (number | null)[];
1081
+ zone_count?: (number | null)[];
1082
+ enhanced_avg_respiration_rate?: number;
1083
+ enhanced_max_respiration_rate?: number;
1084
+ avg_respiration_rate?: number;
1085
+ max_respiration_rate?: number;
1086
+ timestamp?: Date;
888
1087
  message_index?: MessageIndex;
889
1088
  }
890
1089
  export interface ParsedMonitoringInfo {
891
- local_timestamp?: number;
892
- activity_type?: ActivityType;
893
- cycles_to_distance?: number;
894
- cycles_to_calories?: number;
1090
+ local_timestamp?: Date;
1091
+ activity_type?: (ActivityType | null)[];
1092
+ cycles_to_distance?: (number | null)[];
1093
+ cycles_to_calories?: (number | null)[];
895
1094
  resting_metabolic_rate?: number;
896
- timestamp: string;
1095
+ timestamp?: Date;
897
1096
  }
898
- export interface ParsedOHrSettings {
899
- enabled?: number;
900
- timestamp: string;
1097
+ export interface ParsedPad {
1098
+ }
1099
+ export interface ParsedSlaveDevice {
1100
+ manufacturer?: Manufacturer;
1101
+ product?: number;
1102
+ }
1103
+ export interface ParsedConnectivity {
1104
+ bluetooth_enabled?: number;
1105
+ bluetooth_le_enabled?: number;
1106
+ ant_enabled?: number;
1107
+ name?: string;
1108
+ live_tracking_enabled?: number;
1109
+ weather_conditions_enabled?: number;
1110
+ weather_alerts_enabled?: number;
1111
+ auto_activity_upload_enabled?: number;
1112
+ course_download_enabled?: number;
1113
+ workout_download_enabled?: number;
1114
+ gps_ephemeris_download_enabled?: number;
1115
+ incident_detection_enabled?: number;
1116
+ grouptrack_enabled?: number;
1117
+ }
1118
+ export interface ParsedWeatherConditions {
1119
+ weather_report?: WeatherReport;
1120
+ temperature?: number;
1121
+ condition?: WeatherStatus;
1122
+ wind_direction?: number;
1123
+ wind_speed?: number;
1124
+ precipitation_probability?: number;
1125
+ temperature_feels_like?: number;
1126
+ relative_humidity?: number;
1127
+ location?: string;
1128
+ observed_at_time?: Date;
1129
+ observed_location_lat?: number;
1130
+ observed_location_long?: number;
1131
+ day_of_week?: DayOfWeek;
1132
+ high_temperature?: number;
1133
+ low_temperature?: number;
1134
+ timestamp?: Date;
1135
+ }
1136
+ export interface ParsedWeatherAlert {
1137
+ report_id?: string;
1138
+ issue_time?: Date;
1139
+ expire_time?: Date;
1140
+ severity?: WeatherSeverity;
1141
+ type?: WeatherSevereType;
1142
+ timestamp?: Date;
1143
+ }
1144
+ export interface ParsedCadenceZone {
1145
+ high_value?: number;
1146
+ name?: string;
1147
+ message_index?: MessageIndex;
1148
+ }
1149
+ export interface ParsedHr {
1150
+ fractional_timestamp?: number;
1151
+ time256?: number;
1152
+ filtered_bpm?: (number | null)[];
1153
+ event_timestamp?: (number | null)[];
1154
+ event_timestamp12?: (number | null)[];
1155
+ timestamp?: Date;
901
1156
  }
902
1157
  export interface ParsedActivityMetrics {
903
1158
  new_max_heart_rate?: number;
@@ -913,46 +1168,414 @@ export interface ParsedActivityMetrics {
913
1168
  avg_power?: number;
914
1169
  avg_heart_rate?: number;
915
1170
  }
1171
+ export interface ParsedSegmentLap {
1172
+ event?: Event;
1173
+ event_type?: EventType;
1174
+ start_time?: Date;
1175
+ start_position_lat?: number;
1176
+ start_position_long?: number;
1177
+ end_position_lat?: number;
1178
+ end_position_long?: number;
1179
+ total_elapsed_time?: number;
1180
+ total_timer_time?: number;
1181
+ total_distance?: number;
1182
+ total_cycles?: number;
1183
+ total_calories?: number;
1184
+ total_fat_calories?: number;
1185
+ avg_speed?: number;
1186
+ max_speed?: number;
1187
+ avg_heart_rate?: number;
1188
+ max_heart_rate?: number;
1189
+ avg_cadence?: number;
1190
+ max_cadence?: number;
1191
+ avg_power?: number;
1192
+ max_power?: number;
1193
+ total_ascent?: number;
1194
+ total_descent?: number;
1195
+ sport?: Sport;
1196
+ event_group?: number;
1197
+ nec_lat?: number;
1198
+ nec_long?: number;
1199
+ swc_lat?: number;
1200
+ swc_long?: number;
1201
+ name?: string;
1202
+ normalized_power?: number;
1203
+ left_right_balance?: LeftRightBalance100;
1204
+ sub_sport?: SubSport;
1205
+ total_work?: number;
1206
+ avg_altitude?: number;
1207
+ max_altitude?: number;
1208
+ gps_accuracy?: number;
1209
+ avg_grade?: number;
1210
+ avg_pos_grade?: number;
1211
+ avg_neg_grade?: number;
1212
+ max_pos_grade?: number;
1213
+ max_neg_grade?: number;
1214
+ avg_temperature?: number;
1215
+ max_temperature?: number;
1216
+ total_moving_time?: number;
1217
+ avg_pos_vertical_speed?: number;
1218
+ avg_neg_vertical_speed?: number;
1219
+ max_pos_vertical_speed?: number;
1220
+ max_neg_vertical_speed?: number;
1221
+ time_in_hr_zone?: (number | null)[];
1222
+ time_in_speed_zone?: (number | null)[];
1223
+ time_in_cadence_zone?: (number | null)[];
1224
+ time_in_power_zone?: (number | null)[];
1225
+ repetition_num?: number;
1226
+ min_altitude?: number;
1227
+ min_heart_rate?: number;
1228
+ active_time?: number;
1229
+ wkt_step_index?: MessageIndex;
1230
+ sport_event?: SportEvent;
1231
+ avg_left_torque_effectiveness?: number;
1232
+ avg_right_torque_effectiveness?: number;
1233
+ avg_left_pedal_smoothness?: number;
1234
+ avg_right_pedal_smoothness?: number;
1235
+ avg_combined_pedal_smoothness?: number;
1236
+ status?: SegmentLapStatus;
1237
+ uuid?: string;
1238
+ avg_fractional_cadence?: number;
1239
+ max_fractional_cadence?: number;
1240
+ total_fractional_cycles?: number;
1241
+ front_gear_shift_count?: number;
1242
+ rear_gear_shift_count?: number;
1243
+ time_standing?: number;
1244
+ stand_count?: number;
1245
+ avg_left_pco?: number;
1246
+ avg_right_pco?: number;
1247
+ avg_left_power_phase?: (number | null)[];
1248
+ avg_left_power_phase_peak?: (number | null)[];
1249
+ avg_right_power_phase?: (number | null)[];
1250
+ avg_right_power_phase_peak?: (number | null)[];
1251
+ avg_power_position?: (number | null)[];
1252
+ max_power_position?: (number | null)[];
1253
+ avg_cadence_position?: (number | null)[];
1254
+ max_cadence_position?: (number | null)[];
1255
+ manufacturer?: Manufacturer;
1256
+ total_grit?: number;
1257
+ total_flow?: number;
1258
+ avg_grit?: number;
1259
+ avg_flow?: number;
1260
+ total_fractional_ascent?: number;
1261
+ total_fractional_descent?: number;
1262
+ enhanced_avg_altitude?: number;
1263
+ enhanced_max_altitude?: number;
1264
+ enhanced_min_altitude?: number;
1265
+ timestamp?: Date;
1266
+ message_index?: MessageIndex;
1267
+ }
1268
+ export interface ParsedMemoGlob {
1269
+ memo?: (number | null)[];
1270
+ mesg_num?: MesgNum;
1271
+ parent_index?: MessageIndex;
1272
+ field_num?: number;
1273
+ data?: (number | null)[];
1274
+ part_index?: number;
1275
+ }
1276
+ export interface ParsedSegmentId {
1277
+ name?: string;
1278
+ uuid?: string;
1279
+ sport?: Sport;
1280
+ enabled?: number;
1281
+ user_profile_primary_key?: number;
1282
+ device_id?: number;
1283
+ default_race_leader?: number;
1284
+ delete_status?: SegmentDeleteStatus;
1285
+ selection_type?: SegmentSelectionType;
1286
+ }
1287
+ export interface ParsedSegmentLeaderboardEntry {
1288
+ name?: string;
1289
+ type?: SegmentLeaderboardType;
1290
+ group_primary_key?: number;
1291
+ activity_id?: number;
1292
+ segment_time?: number;
1293
+ activity_id_string?: string;
1294
+ message_index?: MessageIndex;
1295
+ }
1296
+ export interface ParsedSegmentPoint {
1297
+ position_lat?: number;
1298
+ position_long?: number;
1299
+ distance?: number;
1300
+ altitude?: number;
1301
+ leader_time?: (number | null)[];
1302
+ enhanced_altitude?: number;
1303
+ message_index?: MessageIndex;
1304
+ }
1305
+ export interface ParsedSegmentFile {
1306
+ file_uuid?: string;
1307
+ enabled?: number;
1308
+ user_profile_primary_key?: number;
1309
+ leader_type?: (SegmentLeaderboardType | null)[];
1310
+ leader_group_primary_key?: (number | null)[];
1311
+ leader_activity_id?: (number | null)[];
1312
+ leader_activity_id_string?: string;
1313
+ default_race_leader?: number;
1314
+ message_index?: MessageIndex;
1315
+ }
1316
+ export interface ParsedWorkoutSession {
1317
+ sport?: Sport;
1318
+ sub_sport?: SubSport;
1319
+ num_valid_steps?: number;
1320
+ first_step_index?: number;
1321
+ pool_length?: number;
1322
+ pool_length_unit?: DisplayMeasure;
1323
+ message_index?: MessageIndex;
1324
+ }
1325
+ export interface ParsedWatchfaceSettings {
1326
+ mode?: WatchfaceMode;
1327
+ layout?: number;
1328
+ message_index?: MessageIndex;
1329
+ }
1330
+ export interface ParsedGpsMetadata {
1331
+ timestamp_ms?: number;
1332
+ position_lat?: number;
1333
+ position_long?: number;
1334
+ enhanced_altitude?: number;
1335
+ enhanced_speed?: number;
1336
+ heading?: number;
1337
+ utc_timestamp?: Date;
1338
+ velocity?: (number | null)[];
1339
+ timestamp?: Date;
1340
+ }
1341
+ export interface ParsedCameraEvent {
1342
+ timestamp_ms?: number;
1343
+ camera_event_type?: CameraEventType;
1344
+ camera_file_uuid?: string;
1345
+ camera_orientation?: CameraOrientationType;
1346
+ timestamp?: Date;
1347
+ }
1348
+ export interface ParsedTimestampCorrelation {
1349
+ fractional_timestamp?: number;
1350
+ system_timestamp?: Date;
1351
+ fractional_system_timestamp?: number;
1352
+ local_timestamp?: Date;
1353
+ timestamp_ms?: number;
1354
+ system_timestamp_ms?: number;
1355
+ timestamp?: Date;
1356
+ }
1357
+ export interface ParsedGyroscopeData {
1358
+ timestamp_ms?: number;
1359
+ sample_time_offset?: (number | null)[];
1360
+ gyro_x?: (number | null)[];
1361
+ gyro_y?: (number | null)[];
1362
+ gyro_z?: (number | null)[];
1363
+ calibrated_gyro_x?: (number | null)[];
1364
+ calibrated_gyro_y?: (number | null)[];
1365
+ calibrated_gyro_z?: (number | null)[];
1366
+ timestamp?: Date;
1367
+ }
1368
+ export interface ParsedAccelerometerData {
1369
+ timestamp_ms?: number;
1370
+ sample_time_offset?: (number | null)[];
1371
+ accel_x?: (number | null)[];
1372
+ accel_y?: (number | null)[];
1373
+ accel_z?: (number | null)[];
1374
+ calibrated_accel_x?: (number | null)[];
1375
+ calibrated_accel_y?: (number | null)[];
1376
+ calibrated_accel_z?: (number | null)[];
1377
+ compressed_calibrated_accel_x?: (number | null)[];
1378
+ compressed_calibrated_accel_y?: (number | null)[];
1379
+ compressed_calibrated_accel_z?: (number | null)[];
1380
+ timestamp?: Date;
1381
+ }
1382
+ export interface ParsedThreeDSensorCalibration {
1383
+ sensor_type?: SensorType;
1384
+ calibration_factor?: number;
1385
+ calibration_divisor?: number;
1386
+ level_shift?: number;
1387
+ offset_cal?: (number | null)[];
1388
+ orientation_matrix?: (number | null)[];
1389
+ timestamp?: Date;
1390
+ }
1391
+ export interface ParsedVideoFrame {
1392
+ timestamp_ms?: number;
1393
+ frame_number?: number;
1394
+ timestamp?: Date;
1395
+ }
1396
+ export interface ParsedObdiiData {
1397
+ timestamp_ms?: number;
1398
+ time_offset?: (number | null)[];
1399
+ pid?: number;
1400
+ raw_data?: (number | null)[];
1401
+ pid_data_size?: (number | null)[];
1402
+ system_time?: (number | null)[];
1403
+ start_timestamp?: Date;
1404
+ start_timestamp_ms?: number;
1405
+ timestamp?: Date;
1406
+ }
1407
+ export interface ParsedNmeaSentence {
1408
+ timestamp_ms?: number;
1409
+ sentence?: string;
1410
+ timestamp?: Date;
1411
+ }
1412
+ export interface ParsedAviationAttitude {
1413
+ timestamp_ms?: number;
1414
+ system_time?: (number | null)[];
1415
+ pitch?: (number | null)[];
1416
+ roll?: (number | null)[];
1417
+ accel_lateral?: (number | null)[];
1418
+ accel_normal?: (number | null)[];
1419
+ turn_rate?: (number | null)[];
1420
+ stage?: (AttitudeStage | null)[];
1421
+ attitude_stage_complete?: (number | null)[];
1422
+ track?: (number | null)[];
1423
+ validity?: (AttitudeValidity | null)[];
1424
+ timestamp?: Date;
1425
+ }
1426
+ export interface ParsedVideo {
1427
+ url?: string;
1428
+ hosting_provider?: string;
1429
+ duration?: number;
1430
+ }
1431
+ export interface ParsedVideoTitle {
1432
+ message_count?: number;
1433
+ text?: string;
1434
+ message_index?: MessageIndex;
1435
+ }
1436
+ export interface ParsedVideoDescription {
1437
+ message_count?: number;
1438
+ text?: string;
1439
+ message_index?: MessageIndex;
1440
+ }
1441
+ export interface ParsedVideoClip {
1442
+ clip_number?: number;
1443
+ start_timestamp?: Date;
1444
+ start_timestamp_ms?: number;
1445
+ end_timestamp?: Date;
1446
+ end_timestamp_ms?: number;
1447
+ clip_start?: number;
1448
+ clip_end?: number;
1449
+ }
1450
+ export interface ParsedOhrSettings {
1451
+ enabled?: Switch;
1452
+ timestamp?: Date;
1453
+ }
1454
+ export interface ParsedExdScreenConfiguration {
1455
+ screen_index?: number;
1456
+ field_count?: number;
1457
+ layout?: ExdLayout;
1458
+ screen_enabled?: number;
1459
+ }
1460
+ export interface ParsedExdDataFieldConfiguration {
1461
+ screen_index?: number;
1462
+ concept_field?: number;
1463
+ field_id?: number;
1464
+ concept_count?: number;
1465
+ display_type?: ExdDisplayType;
1466
+ title?: string;
1467
+ }
1468
+ export interface ParsedExdDataConceptConfiguration {
1469
+ screen_index?: number;
1470
+ concept_field?: number;
1471
+ field_id?: number;
1472
+ concept_index?: number;
1473
+ data_page?: number;
1474
+ concept_key?: number;
1475
+ scaling?: number;
1476
+ data_units?: ExdDataUnits;
1477
+ qualifier?: ExdQualifiers;
1478
+ descriptor?: ExdDescriptors;
1479
+ is_signed?: number;
1480
+ }
916
1481
  export interface ParsedFieldDescription {
917
1482
  developer_data_index?: number;
918
1483
  field_definition_number?: number;
919
- fit_base_type_id?: number;
1484
+ fit_base_type_id?: FitBaseType;
920
1485
  field_name?: string;
1486
+ array?: number;
1487
+ components?: string;
921
1488
  scale?: number;
922
1489
  offset?: number;
923
1490
  units?: string;
1491
+ bits?: string;
1492
+ accumulate?: string;
1493
+ fit_base_unit_id?: FitBaseUnit;
1494
+ native_mesg_num?: MesgNum;
924
1495
  native_field_num?: number;
925
1496
  }
926
1497
  export interface ParsedDeveloperDataId {
927
- developer_id?: number;
928
- application_id?: number[];
1498
+ developer_id?: (number | null)[];
1499
+ application_id?: (number | null)[];
929
1500
  manufacturer_id?: Manufacturer;
930
1501
  developer_data_index?: number;
931
1502
  application_version?: number;
932
1503
  }
1504
+ export interface ParsedMagnetometerData {
1505
+ timestamp_ms?: number;
1506
+ sample_time_offset?: (number | null)[];
1507
+ mag_x?: (number | null)[];
1508
+ mag_y?: (number | null)[];
1509
+ mag_z?: (number | null)[];
1510
+ calibrated_mag_x?: (number | null)[];
1511
+ calibrated_mag_y?: (number | null)[];
1512
+ calibrated_mag_z?: (number | null)[];
1513
+ timestamp?: Date;
1514
+ }
1515
+ export interface ParsedBarometerData {
1516
+ timestamp_ms?: number;
1517
+ sample_time_offset?: (number | null)[];
1518
+ baro_pres?: (number | null)[];
1519
+ timestamp?: Date;
1520
+ }
1521
+ export interface ParsedOneDSensorCalibration {
1522
+ sensor_type?: SensorType;
1523
+ calibration_factor?: number;
1524
+ calibration_divisor?: number;
1525
+ level_shift?: number;
1526
+ offset_cal?: number;
1527
+ timestamp?: Date;
1528
+ }
1529
+ export interface ParsedMonitoringHrData {
1530
+ resting_heart_rate?: number;
1531
+ current_day_resting_heart_rate?: number;
1532
+ timestamp?: Date;
1533
+ }
933
1534
  export interface ParsedTimeInZone {
934
- reference_mesg?: number;
935
- reference_index?: number;
936
- time_in_hr_zone?: number[];
937
- time_in_speed_zone?: number[];
938
- time_in_power_zone?: number[];
939
- hr_zone_high_boundary?: number[];
940
- speed_zone_high_boundary?: number[];
941
- power_zone_high_boundary?: number[];
942
- max_heart_rate_deprecated?: number;
1535
+ reference_mesg?: MesgNum;
1536
+ reference_index?: MessageIndex;
1537
+ time_in_hr_zone?: (number | null)[];
1538
+ time_in_speed_zone?: (number | null)[];
1539
+ time_in_cadence_zone?: (number | null)[];
1540
+ time_in_power_zone?: (number | null)[];
1541
+ hr_zone_high_boundary?: (number | null)[];
1542
+ speed_zone_high_boundary?: (number | null)[];
1543
+ cadence_zone_high_bondary?: (number | null)[];
1544
+ power_zone_high_boundary?: (number | null)[];
1545
+ hr_calc_type?: HrZoneCalc;
943
1546
  max_heart_rate?: number;
944
1547
  resting_heart_rate?: number;
945
1548
  threshold_heart_rate?: number;
946
1549
  pwr_calc_type?: PwrZoneCalc;
947
1550
  functional_threshold_power?: number;
948
- timestamp: string;
1551
+ timestamp?: Date;
1552
+ }
1553
+ export interface ParsedSet {
1554
+ duration?: number;
1555
+ repetitions?: number;
1556
+ weight?: number;
1557
+ set_type?: SetType;
1558
+ start_time?: Date;
1559
+ category?: (ExerciseCategory | null)[];
1560
+ category_subtype?: (number | null)[];
1561
+ weight_display_unit?: FitBaseUnit;
1562
+ message_index?: MessageIndex;
1563
+ wkt_step_index?: MessageIndex;
1564
+ timestamp?: Date;
949
1565
  }
950
1566
  export interface ParsedStressLevel {
951
1567
  stress_level_value?: number;
952
- stress_level_time?: string;
953
- field_two?: number;
954
- body_battery?: number;
955
- field_four?: number;
1568
+ stress_level_time?: Date;
1569
+ }
1570
+ export interface ParsedMaxMetData {
1571
+ update_time?: Date;
1572
+ vo2_max?: number;
1573
+ sport?: Sport;
1574
+ sub_sport?: SubSport;
1575
+ max_met_category?: MaxMetCategory;
1576
+ calibrated_data?: number;
1577
+ hr_source?: MaxMetHeartRateSource;
1578
+ speed_source?: MaxMetSpeedSource;
956
1579
  }
957
1580
  export interface ParsedDiveSettings {
958
1581
  name?: string;
@@ -964,33 +1587,59 @@ export interface ParsedDiveSettings {
964
1587
  po2_warn?: number;
965
1588
  po2_critical?: number;
966
1589
  po2_deco?: number;
967
- safety_stop_enabled?: boolean;
1590
+ safety_stop_enabled?: number;
968
1591
  bottom_depth?: number;
969
1592
  bottom_time?: number;
970
- apnea_countdown_enabled?: boolean;
1593
+ apnea_countdown_enabled?: number;
971
1594
  apnea_countdown_time?: number;
972
1595
  backlight_mode?: DiveBacklightMode;
973
1596
  backlight_brightness?: number;
974
1597
  backlight_timeout?: BacklightTimeout;
975
- repeat_dive_time?: number;
1598
+ repeat_dive_interval?: number;
976
1599
  safety_stop_time?: number;
977
1600
  heart_rate_source_type?: SourceType;
978
1601
  heart_rate_source?: number;
1602
+ travel_gas?: MessageIndex;
1603
+ ccr_low_setpoint_switch_mode?: CcrSetpointSwitchMode;
1604
+ ccr_low_setpoint?: number;
1605
+ ccr_low_setpoint_depth?: number;
1606
+ ccr_high_setpoint_switch_mode?: CcrSetpointSwitchMode;
1607
+ ccr_high_setpoint?: number;
1608
+ ccr_high_setpoint_depth?: number;
1609
+ gas_consumption_display?: GasConsumptionRateType;
1610
+ up_key_enabled?: number;
1611
+ dive_sounds?: Tone;
1612
+ last_stop_multiple?: number;
1613
+ no_fly_time_mode?: NoFlyTimeMode;
1614
+ timestamp?: Date;
979
1615
  message_index?: MessageIndex;
980
1616
  }
981
1617
  export interface ParsedDiveGas {
982
1618
  helium_content?: number;
983
1619
  oxygen_content?: number;
984
1620
  status?: DiveGasStatus;
1621
+ mode?: DiveGasMode;
985
1622
  message_index?: MessageIndex;
986
1623
  }
987
1624
  export interface ParsedDiveAlarm {
988
1625
  depth?: number;
989
1626
  time?: number;
990
- enabled?: boolean;
1627
+ enabled?: number;
991
1628
  alarm_type?: DiveAlarmType;
992
1629
  sound?: Tone;
993
- dive_types?: SubSport;
1630
+ dive_types?: (SubSport | null)[];
1631
+ id?: number;
1632
+ popup_enabled?: number;
1633
+ trigger_on_descent?: number;
1634
+ trigger_on_ascent?: number;
1635
+ repeating?: number;
1636
+ speed?: number;
1637
+ message_index?: MessageIndex;
1638
+ }
1639
+ export interface ParsedExerciseTitle {
1640
+ exercise_category?: ExerciseCategory;
1641
+ exercise_name?: number;
1642
+ wkt_step_name?: string;
994
1643
  message_index?: MessageIndex;
995
1644
  }
996
1645
  export interface ParsedDiveSummary {
@@ -1006,7 +1655,27 @@ export interface ParsedDiveSummary {
1006
1655
  o2_toxicity?: number;
1007
1656
  dive_number?: number;
1008
1657
  bottom_time?: number;
1009
- timestamp: string;
1658
+ avg_pressure_sac?: number;
1659
+ avg_volume_sac?: number;
1660
+ avg_rmv?: number;
1661
+ descent_time?: number;
1662
+ ascent_time?: number;
1663
+ avg_ascent_rate?: number;
1664
+ avg_descent_rate?: number;
1665
+ max_ascent_rate?: number;
1666
+ max_descent_rate?: number;
1667
+ hang_time?: number;
1668
+ timestamp?: Date;
1669
+ }
1670
+ export interface ParsedSpo2Data {
1671
+ reading_spo2?: number;
1672
+ reading_confidence?: number;
1673
+ mode?: Spo2MeasurementType;
1674
+ timestamp?: Date;
1675
+ }
1676
+ export interface ParsedSleepLevel {
1677
+ sleep_level?: SleepLevel;
1678
+ timestamp?: Date;
1010
1679
  }
1011
1680
  export interface ParsedJump {
1012
1681
  distance?: number;
@@ -1018,7 +1687,60 @@ export interface ParsedJump {
1018
1687
  position_long?: number;
1019
1688
  speed?: number;
1020
1689
  enhanced_speed?: number;
1021
- timestamp: string;
1690
+ timestamp?: Date;
1691
+ }
1692
+ export interface ParsedAadAccelFeatures {
1693
+ time?: number;
1694
+ energy_total?: number;
1695
+ zero_cross_cnt?: number;
1696
+ instance?: number;
1697
+ time_above_threshold?: number;
1698
+ timestamp?: Date;
1699
+ }
1700
+ export interface ParsedBeatIntervals {
1701
+ timestamp_ms?: number;
1702
+ time?: (number | null)[];
1703
+ timestamp?: Date;
1704
+ }
1705
+ export interface ParsedRespirationRate {
1706
+ respiration_rate?: number;
1707
+ timestamp?: Date;
1708
+ }
1709
+ export interface ParsedHsaAccelerometerData {
1710
+ timestamp_ms?: number;
1711
+ sampling_interval?: number;
1712
+ accel_x?: (number | null)[];
1713
+ accel_y?: (number | null)[];
1714
+ accel_z?: (number | null)[];
1715
+ timestamp32k?: number;
1716
+ timestamp?: Date;
1717
+ }
1718
+ export interface ParsedHsaStepData {
1719
+ processing_interval?: number;
1720
+ steps?: (number | null)[];
1721
+ timestamp?: Date;
1722
+ }
1723
+ export interface ParsedHsaSpo2Data {
1724
+ processing_interval?: number;
1725
+ reading_spo2?: (number | null)[];
1726
+ confidence?: (number | null)[];
1727
+ timestamp?: Date;
1728
+ }
1729
+ export interface ParsedHsaStressData {
1730
+ processing_interval?: number;
1731
+ stress_level?: (number | null)[];
1732
+ timestamp?: Date;
1733
+ }
1734
+ export interface ParsedHsaRespirationData {
1735
+ processing_interval?: number;
1736
+ respiration_rate?: (number | null)[];
1737
+ timestamp?: Date;
1738
+ }
1739
+ export interface ParsedHsaHeartRateData {
1740
+ processing_interval?: number;
1741
+ status?: number;
1742
+ heart_rate?: (number | null)[];
1743
+ timestamp?: Date;
1022
1744
  }
1023
1745
  export interface ParsedSplit {
1024
1746
  split_type?: SplitType;
@@ -1026,7 +1748,7 @@ export interface ParsedSplit {
1026
1748
  total_timer_time?: number;
1027
1749
  total_distance?: number;
1028
1750
  avg_speed?: number;
1029
- start_time: string;
1751
+ start_time?: Date;
1030
1752
  total_ascent?: number;
1031
1753
  total_descent?: number;
1032
1754
  start_position_lat?: number;
@@ -1035,7 +1757,7 @@ export interface ParsedSplit {
1035
1757
  end_position_long?: number;
1036
1758
  max_speed?: number;
1037
1759
  avg_vert_speed?: number;
1038
- end_time?: string;
1760
+ end_time?: Date;
1039
1761
  total_calories?: number;
1040
1762
  start_elevation?: number;
1041
1763
  active_time?: number;
@@ -1062,20 +1784,292 @@ export interface ParsedSplitSummary {
1062
1784
  total_moving_time?: number;
1063
1785
  message_index?: MessageIndex;
1064
1786
  }
1787
+ export interface ParsedHsaBodyBatteryData {
1788
+ processing_interval?: number;
1789
+ level?: (number | null)[];
1790
+ charged?: (number | null)[];
1791
+ uncharged?: (number | null)[];
1792
+ timestamp?: Date;
1793
+ }
1794
+ export interface ParsedHsaEvent {
1795
+ event_id?: number;
1796
+ timestamp?: Date;
1797
+ }
1798
+ export interface ParsedClimbPro {
1799
+ position_lat?: number;
1800
+ position_long?: number;
1801
+ climb_pro_event?: ClimbProEvent;
1802
+ climb_number?: number;
1803
+ climb_category?: number;
1804
+ current_dist?: number;
1805
+ timestamp?: Date;
1806
+ }
1065
1807
  export interface ParsedTankUpdate {
1066
- sensor?: number;
1808
+ sensor?: AntChannelId;
1067
1809
  pressure?: number;
1068
- timestamp: string;
1810
+ timestamp?: Date;
1069
1811
  }
1070
1812
  export interface ParsedTankSummary {
1071
- sensor?: number;
1813
+ sensor?: AntChannelId;
1072
1814
  start_pressure?: number;
1073
1815
  end_pressure?: number;
1074
1816
  volume_used?: number;
1817
+ timestamp?: Date;
1818
+ }
1819
+ export interface ParsedSleepAssessment {
1820
+ combined_awake_score?: number;
1821
+ awake_time_score?: number;
1822
+ awakenings_count_score?: number;
1823
+ deep_sleep_score?: number;
1824
+ sleep_duration_score?: number;
1825
+ light_sleep_score?: number;
1826
+ overall_sleep_score?: number;
1827
+ sleep_quality_score?: number;
1828
+ sleep_recovery_score?: number;
1829
+ rem_sleep_score?: number;
1830
+ sleep_restlessness_score?: number;
1831
+ awakenings_count?: number;
1832
+ interruptions_score?: number;
1833
+ average_stress_during_sleep?: number;
1834
+ }
1835
+ export interface ParsedHrvStatusSummary {
1836
+ weekly_average?: number;
1837
+ last_night_average?: number;
1838
+ last_night5_min_high?: number;
1839
+ baseline_low_upper?: number;
1840
+ baseline_balanced_lower?: number;
1841
+ baseline_balanced_upper?: number;
1842
+ status?: HrvStatus;
1843
+ timestamp?: Date;
1844
+ }
1845
+ export interface ParsedHrvValue {
1846
+ value?: number;
1847
+ timestamp?: Date;
1848
+ }
1849
+ export interface ParsedRawBbi {
1850
+ timestamp_ms?: number;
1851
+ data?: (number | null)[];
1852
+ time?: (number | null)[];
1853
+ quality?: (number | null)[];
1854
+ gap?: (number | null)[];
1855
+ timestamp?: Date;
1856
+ }
1857
+ export interface ParsedDeviceAuxBatteryInfo {
1858
+ device_index?: number;
1859
+ battery_voltage?: number;
1860
+ battery_status?: BatteryStatus;
1861
+ battery_identifier?: number;
1862
+ timestamp?: Date;
1863
+ }
1864
+ export interface ParsedHsaGyroscopeData {
1865
+ timestamp_ms?: number;
1866
+ sampling_interval?: number;
1867
+ gyro_x?: (number | null)[];
1868
+ gyro_y?: (number | null)[];
1869
+ gyro_z?: (number | null)[];
1870
+ timestamp32k?: number;
1871
+ timestamp?: Date;
1872
+ }
1873
+ export interface ParsedChronoShotSession {
1874
+ min_speed?: number;
1875
+ max_speed?: number;
1876
+ avg_speed?: number;
1877
+ shot_count?: number;
1878
+ projectile_type?: ProjectileType;
1879
+ grain_weight?: number;
1880
+ standard_deviation?: number;
1881
+ timestamp?: Date;
1882
+ }
1883
+ export interface ParsedChronoShotData {
1884
+ shot_speed?: number;
1885
+ shot_num?: number;
1886
+ timestamp?: Date;
1887
+ }
1888
+ export interface ParsedHsaConfigurationData {
1889
+ data?: (number | null)[];
1890
+ data_size?: number;
1891
+ timestamp?: Date;
1892
+ }
1893
+ export interface ParsedDiveApneaAlarm {
1894
+ depth?: number;
1895
+ time?: number;
1896
+ enabled?: number;
1897
+ alarm_type?: DiveAlarmType;
1898
+ sound?: Tone;
1899
+ dive_types?: (SubSport | null)[];
1900
+ id?: number;
1901
+ popup_enabled?: number;
1902
+ trigger_on_descent?: number;
1903
+ trigger_on_ascent?: number;
1904
+ repeating?: number;
1905
+ speed?: number;
1906
+ message_index?: MessageIndex;
1907
+ }
1908
+ export interface ParsedSkinTempOvernight {
1909
+ local_timestamp?: Date;
1910
+ average_deviation?: number;
1911
+ average7_day_deviation?: number;
1912
+ nightly_value?: number;
1913
+ timestamp?: Date;
1914
+ }
1915
+ export interface ParsedHsaWristTemperatureData {
1916
+ processing_interval?: number;
1917
+ value?: (number | null)[];
1918
+ timestamp?: Date;
1919
+ }
1920
+ export interface ParsedNapEvent {
1921
+ start_time?: Date;
1922
+ start_timezone_offset?: number;
1923
+ end_time?: Date;
1924
+ end_timezone_offset?: number;
1925
+ feedback?: NapPeriodFeedback;
1926
+ is_deleted?: number;
1927
+ source?: NapSource;
1928
+ update_timestamp?: Date;
1929
+ timestamp?: Date;
1930
+ message_index?: MessageIndex;
1931
+ }
1932
+ export interface ParsedSleepDisruptionSeverityPeriod {
1933
+ severity?: SleepDisruptionSeverity;
1934
+ timestamp?: Date;
1935
+ message_index?: MessageIndex;
1936
+ }
1937
+ export interface ParsedSleepDisruptionOvernightSeverity {
1938
+ severity?: SleepDisruptionSeverity;
1939
+ timestamp?: Date;
1940
+ }
1941
+ export interface ParsedMessages {
1942
+ file_id?: ParsedFileId[];
1943
+ capabilities?: ParsedCapabilities[];
1944
+ device_settings?: ParsedDeviceSettings[];
1945
+ user_profile?: ParsedUserProfile[];
1946
+ hrm_profile?: ParsedHrmProfile[];
1947
+ sdm_profile?: ParsedSdmProfile[];
1948
+ bike_profile?: ParsedBikeProfile[];
1949
+ zones_target?: ParsedZonesTarget[];
1950
+ hr_zone?: ParsedHrZone[];
1951
+ power_zone?: ParsedPowerZone[];
1952
+ met_zone?: ParsedMetZone[];
1953
+ sport?: ParsedSport[];
1954
+ training_settings?: ParsedTrainingSettings[];
1955
+ goal?: ParsedGoal[];
1956
+ session?: ParsedSession[];
1957
+ lap?: ParsedLap[];
1958
+ record?: ParsedRecord[];
1959
+ event?: ParsedEvent[];
1960
+ device_info?: ParsedDeviceInfo[];
1961
+ workout?: ParsedWorkout[];
1962
+ workout_step?: ParsedWorkoutStep[];
1963
+ schedule?: ParsedSchedule[];
1964
+ weight_scale?: ParsedWeightScale[];
1965
+ course?: ParsedCourse[];
1966
+ course_point?: ParsedCoursePoint[];
1967
+ totals?: ParsedTotals[];
1968
+ activity?: ParsedActivity[];
1969
+ software?: ParsedSoftware[];
1970
+ file_capabilities?: ParsedFileCapabilities[];
1971
+ mesg_capabilities?: ParsedMesgCapabilities[];
1972
+ field_capabilities?: ParsedFieldCapabilities[];
1973
+ file_creator?: ParsedFileCreator[];
1974
+ blood_pressure?: ParsedBloodPressure[];
1975
+ speed_zone?: ParsedSpeedZone[];
1976
+ monitoring?: ParsedMonitoring[];
1977
+ training_file?: ParsedTrainingFile[];
1978
+ hrv?: ParsedHrv[];
1979
+ user_metrics?: ParsedUserMetrics[];
1980
+ ant_rx?: ParsedAntRx[];
1981
+ ant_tx?: ParsedAntTx[];
1982
+ ant_channel_id?: ParsedAntChannelId[];
1983
+ length?: ParsedLength[];
1984
+ monitoring_info?: ParsedMonitoringInfo[];
1985
+ pad?: ParsedPad[];
1986
+ slave_device?: ParsedSlaveDevice[];
1987
+ connectivity?: ParsedConnectivity[];
1988
+ weather_conditions?: ParsedWeatherConditions[];
1989
+ weather_alert?: ParsedWeatherAlert[];
1990
+ cadence_zone?: ParsedCadenceZone[];
1991
+ hr?: ParsedHr[];
1992
+ activity_metrics?: ParsedActivityMetrics[];
1993
+ segment_lap?: ParsedSegmentLap[];
1994
+ memo_glob?: ParsedMemoGlob[];
1995
+ segment_id?: ParsedSegmentId[];
1996
+ segment_leaderboard_entry?: ParsedSegmentLeaderboardEntry[];
1997
+ segment_point?: ParsedSegmentPoint[];
1998
+ segment_file?: ParsedSegmentFile[];
1999
+ workout_session?: ParsedWorkoutSession[];
2000
+ watchface_settings?: ParsedWatchfaceSettings[];
2001
+ gps_metadata?: ParsedGpsMetadata[];
2002
+ camera_event?: ParsedCameraEvent[];
2003
+ timestamp_correlation?: ParsedTimestampCorrelation[];
2004
+ gyroscope_data?: ParsedGyroscopeData[];
2005
+ accelerometer_data?: ParsedAccelerometerData[];
2006
+ three_d_sensor_calibration?: ParsedThreeDSensorCalibration[];
2007
+ video_frame?: ParsedVideoFrame[];
2008
+ obdii_data?: ParsedObdiiData[];
2009
+ nmea_sentence?: ParsedNmeaSentence[];
2010
+ aviation_attitude?: ParsedAviationAttitude[];
2011
+ video?: ParsedVideo[];
2012
+ video_title?: ParsedVideoTitle[];
2013
+ video_description?: ParsedVideoDescription[];
2014
+ video_clip?: ParsedVideoClip[];
2015
+ ohr_settings?: ParsedOhrSettings[];
2016
+ exd_screen_configuration?: ParsedExdScreenConfiguration[];
2017
+ exd_data_field_configuration?: ParsedExdDataFieldConfiguration[];
2018
+ exd_data_concept_configuration?: ParsedExdDataConceptConfiguration[];
2019
+ field_description?: ParsedFieldDescription[];
2020
+ developer_data_id?: ParsedDeveloperDataId[];
2021
+ magnetometer_data?: ParsedMagnetometerData[];
2022
+ barometer_data?: ParsedBarometerData[];
2023
+ one_d_sensor_calibration?: ParsedOneDSensorCalibration[];
2024
+ monitoring_hr_data?: ParsedMonitoringHrData[];
2025
+ time_in_zone?: ParsedTimeInZone[];
2026
+ set?: ParsedSet[];
2027
+ stress_level?: ParsedStressLevel[];
2028
+ max_met_data?: ParsedMaxMetData[];
2029
+ dive_settings?: ParsedDiveSettings[];
2030
+ dive_gas?: ParsedDiveGas[];
2031
+ dive_alarm?: ParsedDiveAlarm[];
2032
+ exercise_title?: ParsedExerciseTitle[];
2033
+ dive_summary?: ParsedDiveSummary[];
2034
+ spo2_data?: ParsedSpo2Data[];
2035
+ sleep_level?: ParsedSleepLevel[];
2036
+ jump?: ParsedJump[];
2037
+ aad_accel_features?: ParsedAadAccelFeatures[];
2038
+ beat_intervals?: ParsedBeatIntervals[];
2039
+ respiration_rate?: ParsedRespirationRate[];
2040
+ hsa_accelerometer_data?: ParsedHsaAccelerometerData[];
2041
+ hsa_step_data?: ParsedHsaStepData[];
2042
+ hsa_spo2_data?: ParsedHsaSpo2Data[];
2043
+ hsa_stress_data?: ParsedHsaStressData[];
2044
+ hsa_respiration_data?: ParsedHsaRespirationData[];
2045
+ hsa_heart_rate_data?: ParsedHsaHeartRateData[];
2046
+ split?: ParsedSplit[];
2047
+ split_summary?: ParsedSplitSummary[];
2048
+ hsa_body_battery_data?: ParsedHsaBodyBatteryData[];
2049
+ hsa_event?: ParsedHsaEvent[];
2050
+ climb_pro?: ParsedClimbPro[];
2051
+ tank_update?: ParsedTankUpdate[];
2052
+ tank_summary?: ParsedTankSummary[];
2053
+ sleep_assessment?: ParsedSleepAssessment[];
2054
+ hrv_status_summary?: ParsedHrvStatusSummary[];
2055
+ hrv_value?: ParsedHrvValue[];
2056
+ raw_bbi?: ParsedRawBbi[];
2057
+ device_aux_battery_info?: ParsedDeviceAuxBatteryInfo[];
2058
+ hsa_gyroscope_data?: ParsedHsaGyroscopeData[];
2059
+ chrono_shot_session?: ParsedChronoShotSession[];
2060
+ chrono_shot_data?: ParsedChronoShotData[];
2061
+ hsa_configuration_data?: ParsedHsaConfigurationData[];
2062
+ dive_apnea_alarm?: ParsedDiveApneaAlarm[];
2063
+ skin_temp_overnight?: ParsedSkinTempOvernight[];
2064
+ hsa_wrist_temperature_data?: ParsedHsaWristTemperatureData[];
2065
+ nap_event?: ParsedNapEvent[];
2066
+ sleep_disruption_severity_period?: ParsedSleepDisruptionSeverityPeriod[];
2067
+ sleep_disruption_overnight_severity?: ParsedSleepDisruptionOvernightSeverity[];
1075
2068
  }
1076
2069
  export interface ParsedFit {
1077
2070
  protocolVersion?: number;
1078
2071
  profileVersion?: number;
2072
+ messages?: ParsedMessages;
1079
2073
  file_creator: ParsedFileCreator;
1080
2074
  device_settings: ParsedDeviceSettings;
1081
2075
  dive_summary?: ParsedDiveSummary;
@@ -1106,9 +2100,101 @@ export interface ParsedFit {
1106
2100
  tank_updates?: ParsedTankUpdate[];
1107
2101
  tank_summaries?: ParsedTankSummary[];
1108
2102
  jumps?: ParsedJump[];
2103
+ sets?: ParsedSet[];
1109
2104
  splits?: ParsedSplit[];
1110
2105
  split_summaries?: ParsedSplitSummary[];
1111
2106
  time_in_zone?: ParsedTimeInZone[];
1112
2107
  activity_metrics?: ParsedActivityMetrics[];
1113
2108
  user_metrics?: ParsedUserMetrics[];
2109
+ capabilities?: ParsedCapabilities;
2110
+ hrm_profile?: ParsedHrmProfile;
2111
+ sdm_profile?: ParsedSdmProfile;
2112
+ bike_profile?: ParsedBikeProfile;
2113
+ met_zone?: ParsedMetZone;
2114
+ training_settings?: ParsedTrainingSettings;
2115
+ goal?: ParsedGoal;
2116
+ workout?: ParsedWorkout;
2117
+ workout_step?: ParsedWorkoutStep;
2118
+ schedule?: ParsedSchedule;
2119
+ weight_scale?: ParsedWeightScale;
2120
+ course?: ParsedCourse;
2121
+ totals?: ParsedTotals;
2122
+ file_capabilities?: ParsedFileCapabilities;
2123
+ mesg_capabilities?: ParsedMesgCapabilities;
2124
+ field_capabilities?: ParsedFieldCapabilities;
2125
+ blood_pressure?: ParsedBloodPressure;
2126
+ speed_zone?: ParsedSpeedZone;
2127
+ training_file?: ParsedTrainingFile;
2128
+ ant_rx?: ParsedAntRx;
2129
+ ant_tx?: ParsedAntTx;
2130
+ ant_channel_id?: ParsedAntChannelId;
2131
+ pad?: ParsedPad;
2132
+ slave_device?: ParsedSlaveDevice;
2133
+ connectivity?: ParsedConnectivity;
2134
+ weather_conditions?: ParsedWeatherConditions;
2135
+ weather_alert?: ParsedWeatherAlert;
2136
+ cadence_zone?: ParsedCadenceZone;
2137
+ hr?: ParsedHr;
2138
+ segment_lap?: ParsedSegmentLap;
2139
+ memo_glob?: ParsedMemoGlob;
2140
+ segment_id?: ParsedSegmentId;
2141
+ segment_leaderboard_entry?: ParsedSegmentLeaderboardEntry;
2142
+ segment_point?: ParsedSegmentPoint;
2143
+ segment_file?: ParsedSegmentFile;
2144
+ workout_session?: ParsedWorkoutSession;
2145
+ watchface_settings?: ParsedWatchfaceSettings;
2146
+ gps_metadata?: ParsedGpsMetadata;
2147
+ camera_event?: ParsedCameraEvent;
2148
+ timestamp_correlation?: ParsedTimestampCorrelation;
2149
+ gyroscope_data?: ParsedGyroscopeData;
2150
+ accelerometer_data?: ParsedAccelerometerData;
2151
+ three_d_sensor_calibration?: ParsedThreeDSensorCalibration;
2152
+ video_frame?: ParsedVideoFrame;
2153
+ obdii_data?: ParsedObdiiData;
2154
+ nmea_sentence?: ParsedNmeaSentence;
2155
+ aviation_attitude?: ParsedAviationAttitude;
2156
+ video?: ParsedVideo;
2157
+ video_title?: ParsedVideoTitle;
2158
+ video_description?: ParsedVideoDescription;
2159
+ video_clip?: ParsedVideoClip;
2160
+ ohr_settings?: ParsedOhrSettings;
2161
+ exd_screen_configuration?: ParsedExdScreenConfiguration;
2162
+ exd_data_field_configuration?: ParsedExdDataFieldConfiguration;
2163
+ exd_data_concept_configuration?: ParsedExdDataConceptConfiguration;
2164
+ magnetometer_data?: ParsedMagnetometerData;
2165
+ barometer_data?: ParsedBarometerData;
2166
+ one_d_sensor_calibration?: ParsedOneDSensorCalibration;
2167
+ monitoring_hr_data?: ParsedMonitoringHrData;
2168
+ max_met_data?: ParsedMaxMetData;
2169
+ dive_alarm?: ParsedDiveAlarm;
2170
+ exercise_title?: ParsedExerciseTitle;
2171
+ spo2_data?: ParsedSpo2Data;
2172
+ sleep_level?: ParsedSleepLevel;
2173
+ aad_accel_features?: ParsedAadAccelFeatures;
2174
+ beat_intervals?: ParsedBeatIntervals;
2175
+ respiration_rate?: ParsedRespirationRate;
2176
+ hsa_accelerometer_data?: ParsedHsaAccelerometerData;
2177
+ hsa_step_data?: ParsedHsaStepData;
2178
+ hsa_spo2_data?: ParsedHsaSpo2Data;
2179
+ hsa_stress_data?: ParsedHsaStressData;
2180
+ hsa_respiration_data?: ParsedHsaRespirationData;
2181
+ hsa_heart_rate_data?: ParsedHsaHeartRateData;
2182
+ hsa_body_battery_data?: ParsedHsaBodyBatteryData;
2183
+ hsa_event?: ParsedHsaEvent;
2184
+ climb_pro?: ParsedClimbPro;
2185
+ sleep_assessment?: ParsedSleepAssessment;
2186
+ hrv_status_summary?: ParsedHrvStatusSummary;
2187
+ hrv_value?: ParsedHrvValue;
2188
+ raw_bbi?: ParsedRawBbi;
2189
+ device_aux_battery_info?: ParsedDeviceAuxBatteryInfo;
2190
+ hsa_gyroscope_data?: ParsedHsaGyroscopeData;
2191
+ chrono_shot_session?: ParsedChronoShotSession;
2192
+ chrono_shot_data?: ParsedChronoShotData;
2193
+ hsa_configuration_data?: ParsedHsaConfigurationData;
2194
+ dive_apnea_alarm?: ParsedDiveApneaAlarm;
2195
+ skin_temp_overnight?: ParsedSkinTempOvernight;
2196
+ hsa_wrist_temperature_data?: ParsedHsaWristTemperatureData;
2197
+ nap_event?: ParsedNapEvent;
2198
+ sleep_disruption_severity_period?: ParsedSleepDisruptionSeverityPeriod;
2199
+ sleep_disruption_overnight_severity?: ParsedSleepDisruptionOvernightSeverity;
1114
2200
  }