fit-file-parser 4.1.0 → 5.0.2

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,212 +9,216 @@ 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 Activity = 'manual' | 'auto_multi_sport';
19
- export type ActivityClass = '0' | 'level_max' | 'level' | 'athlete';
20
- export type ActivityLevel = 'low' | 'medium' | 'high';
21
- 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';
22
- export type ActivityType = 'generic' | 'running' | 'cycling' | 'transition' | 'fitness_equipment' | 'swimming' | 'walking' | 'sedentary' | 'all';
23
- export type AnalogWatchfaceLayout = 'minimal' | 'traditional' | 'modern';
24
- export type AntChannelId = 'ant_device_number' | 'ant_device_type' | 'ant_transmission_type_lower_nibble' | 'ant_extended_device_number_upper_nibble';
25
- export type AntNetwork = 'public' | 'antplus' | 'antfs' | 'private';
26
- 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';
27
- export type AttitudeStage = 'failed' | 'aligning' | 'degraded' | 'valid';
28
- 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';
29
- export type AutoActivityDetect = 'none' | 'running' | 'cycling' | 'swimming' | 'walking' | 'elliptical' | 'elliptical' | 'sedentary';
30
- export type AutolapTrigger = 'time' | 'distance' | 'position_start' | 'position_lap' | 'position_waypoint' | 'position_marked' | 'off' | 'auto_select';
31
- export type Autoscroll = 'none' | 'slow' | 'medium' | 'fast';
32
- export type AutoSyncFrequency = 'never' | 'occasionally' | 'frequent' | 'once_a_day' | 'remote';
33
- export type BacklightMode = 'off' | 'manual' | 'key_and_messages' | 'auto_brightness' | 'smart_notifications' | 'key_and_messages_night' | 'key_and_messages_and_smart_notifications';
34
- export type BacklightTimeout = 'infinite';
35
- export type BandedExercisesExerciseName = 'ab_twist' | 'back_extension' | 'bicycle_crunch' | 'calf_raises' | 'chest_press' | 'clam_shells' | 'curl' | 'deadbug' | 'deadlift' | 'donkey_kick' | 'external_rotation' | 'external_rotation_at_90_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_to_90_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';
36
- export type BatteryStatus = '0' | 'new' | 'good' | 'ok' | 'low' | 'critical' | 'charging' | 'unknown';
37
- 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';
38
- 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';
39
- export type BikeExerciseName = 'bike' | 'ride' | 'sprint';
40
- export type BikeLightBeamAngleMode = 'manual' | 'auto';
41
- export type BikeLightNetworkConfigType = 'auto' | 'individual' | 'high_visibility' | 'trail';
42
- export type BikeOutdoorExerciseName = 'bike';
43
- export type BleDeviceType = 'connected_gps' | 'heart_rate' | 'bike_power' | 'bike_speed_cadence' | 'bike_speed' | 'bike_cadence' | 'footpod' | 'bike_trainer';
44
- 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';
45
- export type BpStatus = 'no_error' | 'error_incomplete_data' | 'error_no_measurement' | 'error_data_out_of_range' | 'error_irregular_heart_rate';
46
- 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';
47
- 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';
48
- export type CameraOrientationType = 'camera_orientation_0' | 'camera_orientation_90' | 'camera_orientation_180' | 'camera_orientation_270';
49
- 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';
50
- 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';
51
- export type CcrSetpointSwitchMode = 'manual' | 'automatic';
52
- export type Checksum = 'clear' | 'ok';
53
- 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';
54
- export type ClimbProEvent = 'approach' | 'start' | 'complete';
55
- export type CommTimeoutType = 'wildcard_pairing_timeout' | 'pairing_timeout' | 'connection_lost' | 'connection_timeout';
56
- 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';
57
- 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' | 'bicep_curl_with_leg_extension_with_weights' | 'hanging_l_sit' | 'lower_lift_with_weights' | 'ring_l_sit' | 'rowing_1_with_weights' | 'rowing_2_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';
58
- export type CourseCapabilities = '0' | 'processed' | 'valid' | 'time' | 'distance' | 'position' | 'heart_rate' | 'power' | 'cadence' | 'training' | 'navigation' | 'bikeway' | 'aviation';
59
- 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';
60
- 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';
61
- 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';
62
- export type DateMode = 'day_month' | 'month_day';
63
- export type DateTime = '0' | 'min';
64
- export type DayOfWeek = 'sunday' | 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday';
65
- 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';
66
- export type DeviceIndex = 'creator';
67
- export type DigitalWatchfaceLayout = 'traditional' | 'modern' | 'bold';
68
- export type DisplayHeart = 'bpm' | 'max' | 'reserve';
69
- export type DisplayMeasure = 'metric' | 'statute' | 'nautical';
70
- export type DisplayOrientation = 'auto' | 'portrait' | 'landscape' | 'portrait_flipped' | 'landscape_flipped';
71
- 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';
72
- export type DisplayPower = 'watts' | 'percent_ftp';
73
- export type DiveAlarmType = 'depth' | 'time' | 'speed';
74
- export type DiveAlert = 'ndl_reached' | 'gas_switch_prompted' | 'near_surface' | 'approaching_ndl' | 'po_2_warn' | 'po_2_crit_high' | 'po_2_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' | 'po_2_ccr_dil_low' | 'deco_stop_cleared' | 'apnea_neutral_buoyancy' | 'apnea_target_depth' | 'apnea_surface' | 'apnea_high_speed' | 'apnea_low_speed';
75
- export type DiveBacklightMode = 'at_depth' | 'always_on';
76
- export type DiveGasMode = 'open_circuit' | 'closed_circuit_diluent';
77
- export type DiveGasStatus = 'disabled' | 'enabled' | 'backup_only';
78
- export type EllipticalExerciseName = 'elliptical';
79
- 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';
80
- export type EventType = 'start' | 'stop' | 'consecutive_depreciated' | 'marker' | 'stop_all' | 'begin_depreciated' | 'end_depreciated' | 'end_all_depreciated' | 'stop_disable' | 'stop_disable_all';
81
- 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';
82
- 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';
83
- export type ExdDisplayType = 'numerical' | 'simple' | 'graph' | 'bar' | 'circle_graph' | 'virtual_partner' | 'balance' | 'string_list' | 'string' | 'simple_dynamic_icon' | 'gauge';
84
- 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';
85
- 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';
86
- 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';
87
- export type FaveroProduct = 'assioma_uno' | 'assioma_duo';
88
- 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';
89
- export type FileFlags = '0' | 'read' | 'write' | 'erase';
90
- export type FitBaseType = 'enum' | 'sint8' | 'uint8' | 'string' | 'uint8z' | 'byte' | 'sint16' | 'uint16' | 'sint32' | 'uint32' | 'float32' | 'float64' | 'uint16z' | 'uint32z' | 'sint64' | 'uint64' | 'uint64z';
91
- export type FitBaseUnit = 'other' | 'kilogram' | 'pound';
92
- export type FitnessEquipmentState = 'ready' | 'in_use' | 'paused' | 'unknown';
93
- export type FloorClimbExerciseName = 'floor_climb';
94
- 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';
95
- 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';
96
- export type GasConsumptionRateType = 'pressure_sac' | 'volume_sac' | 'rmv';
97
- export type Gender = 'female' | 'male';
98
- export type Goal = 'time' | 'distance' | 'calories' | 'frequency' | 'steps' | 'ascent' | 'active_minutes';
99
- export type GoalRecurrence = 'off' | 'daily' | 'weekly' | 'monthly' | 'yearly' | 'custom';
100
- export type GoalSource = 'auto' | 'community' | 'user';
101
- 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';
102
- 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';
103
- export type HipSwingExerciseName = 'single_arm_kettlebell_swing' | 'single_arm_dumbbell_swing' | 'step_out_swing' | 'one_arm_swing';
104
- export type HrType = 'normal' | 'irregular';
105
- export type HrvStatus = 'none' | 'poor' | 'low' | 'unbalanced' | 'balanced';
106
- export type HrZoneCalc = 'custom' | 'percent_max_hr' | 'percent_hrr' | 'percent_lthr';
107
- 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';
108
- export type IndoorBikeExerciseName = 'air_bike' | 'assault_bike' | 'stationary_bike';
109
- export type IndoorRowExerciseName = 'rowing_machine';
110
- export type Intensity = 'active' | 'rest' | 'warmup' | 'cooldown' | 'recovery' | 'interval' | 'other';
111
- export type LadderExerciseName = 'agility' | 'speed';
112
- 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';
113
- export type LanguageBits0 = '0' | 'english' | 'french' | 'italian' | 'german' | 'spanish' | 'croatian' | 'czech' | 'danish';
114
- export type LanguageBits1 = '0' | 'dutch' | 'finnish' | 'greek' | 'hungarian' | 'norwegian' | 'polish' | 'portuguese' | 'slovakian';
115
- export type LanguageBits2 = '0' | 'slovenian' | 'swedish' | 'russian' | 'turkish' | 'latvian' | 'ukrainian' | 'arabic' | 'farsi';
116
- export type LanguageBits3 = '0' | 'bulgarian' | 'romanian' | 'chinese' | 'japanese' | 'korean' | 'taiwanese' | 'thai' | 'hebrew';
117
- export type LanguageBits4 = '0' | 'brazilian_portuguese' | 'indonesian' | 'malaysian' | 'vietnamese' | 'burmese' | 'mongolian';
118
- export type LapTrigger = 'manual' | 'time' | 'distance' | 'position_start' | 'position_lap' | 'position_waypoint' | 'position_marked' | 'session_end' | 'fitness_equipment';
119
- 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';
120
- export type LeftRightBalance = '0' | 'mask' | 'right';
121
- export type LeftRightBalance100 = '0' | 'mask' | 'right';
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';
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';
124
- export type LengthType = 'idle' | 'active';
125
- export type LocalDateTime = '0' | 'min';
126
- export type LocalDeviceType = 'gps' | 'glonass' | 'gps_glonass' | 'accelerometer' | 'barometer' | 'temperature' | 'whr' | 'sensor_hub';
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';
129
- 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' | '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' | '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' | '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' | 'zone_5cloud' | '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';
130
- export type MaxMetCategory = 'generic' | 'cycling';
131
- export type MaxMetHeartRateSource = 'whr' | 'hrm';
132
- export type MaxMetSpeedSource = 'onboard_gps' | 'connected_gps' | 'cadence';
133
- export type MesgCount = 'num_per_file' | 'max_per_file' | 'max_per_file_type';
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' | 'spo_2_data' | 'sleep_level' | 'jump' | 'aad_accel_features' | 'beat_intervals' | 'respiration_rate' | 'hsa_accelerometer_data' | 'hsa_step_data' | 'hsa_spo_2_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' | 'o_hr_settings' | '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';
135
- 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';
136
- 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';
137
- export type NapSource = 'automatic' | 'manual_device' | 'manual_gc';
138
- export type NoFlyTimeMode = 'standard' | 'flat_24_hours';
139
- 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';
140
- 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' | 'ring_plank_sprawls';
141
- 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';
142
- 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';
143
- export type PowerPhaseType = 'power_phase_start_angle' | 'power_phase_end_angle' | 'power_phase_arc_length' | 'power_phase_center';
144
- export type ProjectileType = 'arrow' | 'rifle_cartridge' | 'pistol_cartridge' | 'shotshell' | 'air_rifle_pellet' | 'other';
145
- 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';
146
- 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';
147
- export type PwrZoneCalc = 'custom' | 'percent_ftp';
148
- export type RadarThreatLevelType = 'threat_unknown' | 'threat_none' | 'threat_approaching' | 'threat_approaching_fast';
149
- export type RiderPositionType = 'seated' | 'standing' | 'transition_to_seated' | 'transition_to_standing';
150
- 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';
151
- export type RunExerciseName = 'run' | 'walk' | 'jog' | 'sprint' | 'run_or_walk' | 'speed_walk' | 'warm_up';
152
- export type RunIndoorExerciseName = 'indoor_track_run' | 'treadmill';
153
- 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';
154
- export type Schedule = 'workout' | 'course';
155
- export type SegmentDeleteStatus = 'do_not_delete' | 'delete_one' | 'delete_all';
156
- export type SegmentLapStatus = 'end' | 'fail';
157
- export type SegmentLeaderboardType = 'overall' | 'personal_best' | 'connections' | 'group' | 'challenger' | 'kom' | 'qom' | 'pr' | 'goal' | 'carrot' | 'club_leader' | 'rival' | 'last' | 'recent_best' | 'course_record';
158
- export type SegmentSelectionType = 'starred' | 'suggested';
159
- export type SensorType = 'accelerometer' | 'gyroscope' | 'compass' | 'barometer';
160
- export type SessionTrigger = 'activity_end' | 'manual' | 'auto_multi_sport' | 'fitness_equipment';
161
- export type SetType = 'rest' | 'active';
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' | 'dumbbell_shoulder_press' | 'military_press' | 'strict_press' | 'dumbbell_front_raise' | 'dumbbell_curl_to_overhead_press_wheelchair' | 'arnold_press_wheelchair' | 'overhead_dumbbell_press_wheelchair';
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' | 'cable_internal_rotation' | 'lying_internal_rotation' | 'seated_dumbbell_internal_rotation';
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' | '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';
165
- export type Side = 'right' | 'left';
166
- 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';
167
- export type SledExerciseName = 'backward_drag' | 'chest_press' | 'forward_drag' | 'low_push' | 'push' | 'row';
168
- export type SledgeHammerExerciseName = 'lateral_swing' | 'hammer_slam';
169
- export type SleepDisruptionSeverity = 'none' | 'low' | 'medium' | 'high';
170
- export type SleepLevel = 'unmeasurable' | 'awake' | 'light' | 'deep' | 'rem';
171
- export type SourceType = 'ant' | 'antplus' | 'bluetooth' | 'bluetooth_low_energy' | 'wifi' | 'local';
172
- 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';
173
- export type Spo2MeasurementType = 'off_wrist' | 'spot_check' | 'continuous_check' | 'periodic';
174
- 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';
175
- export type SportBits0 = '0' | 'generic' | 'running' | 'cycling' | 'transition' | 'fitness_equipment' | 'swimming' | 'basketball' | 'soccer';
176
- export type SportBits1 = '0' | 'tennis' | 'american_football' | 'training' | 'walking' | 'cross_country_skiing' | 'alpine_skiing' | 'snowboarding' | 'rowing';
177
- export type SportBits2 = '0' | 'mountaineering' | 'hiking' | 'multisport' | 'paddling' | 'flying' | 'e_biking' | 'motorcycling' | 'boating';
178
- export type SportBits3 = '0' | 'driving' | 'golf' | 'hang_gliding' | 'horseback_riding' | 'hunting' | 'fishing' | 'inline_skating' | 'rock_climbing';
179
- export type SportBits4 = '0' | 'sailing' | 'ice_skating' | 'sky_diving' | 'snowshoeing' | 'snowmobiling' | 'stand_up_paddleboarding' | 'surfing' | 'wakeboarding';
180
- export type SportBits5 = '0' | 'water_skiing' | 'kayaking' | 'rafting' | 'windsurfing' | 'kitesurfing' | 'tactical' | 'jumpmaster' | 'boxing';
181
- export type SportBits6 = '0' | 'floor_climbing';
182
- export type SportEvent = 'uncategorized' | 'geocaching' | 'fitness' | 'recreation' | 'race' | 'special_event' | 'training' | 'transportation' | 'touring';
183
- 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';
184
- export type StairStepperExerciseName = 'stair_stepper';
185
- export type StrokeType = 'no_event' | 'other' | 'serve' | 'forehand' | 'backhand' | 'smash';
186
- 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';
187
- 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';
188
- 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';
189
- export type SwimStroke = 'freestyle' | 'backstroke' | 'breaststroke' | 'butterfly' | 'drill' | 'mixed' | 'im' | 'im_by_round' | 'rimo';
190
- export type Switch = 'off' | 'on' | 'auto';
191
- export type TapSensitivity = 'high' | 'medium' | 'low';
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;
192
197
  export type TimeIntoDay = number;
193
- export type TimeMode = 'hour12' | 'hour24' | 'military' | 'hour_12_with_seconds' | 'hour_24_with_seconds' | 'utc';
194
- export type TimerTrigger = 'manual' | 'auto' | 'fitness_equipment';
195
- 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';
196
- export type TireExerciseName = 'flip';
197
- export type TissueModelType = 'zhl_16c';
198
- export type Tone = 'off' | 'tone' | 'vibrate' | 'tone_and_vibrate';
199
- 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';
200
- 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';
201
- 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';
202
- export type UserLocalId = 'local_min' | 'local_max' | 'stationary_min' | 'stationary_max' | 'portable_min' | 'portable_max';
203
- 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' | 'stretch_90_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';
204
- export type WatchfaceMode = 'digital' | 'analog' | 'connect_iq' | 'disabled';
205
- export type WaterType = 'fresh' | 'salt' | 'en13319' | 'custom';
206
- export type WeatherReport = 'current' | 'hourly_forecast' | 'daily_forecast';
207
- 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';
208
- export type WeatherSeverity = 'unknown' | 'warning' | 'watch' | 'advisory' | 'statement';
209
- 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';
210
- export type Weight = '0' | 'calculating';
211
- 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' | 'time_only';
212
- 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';
213
- export type WorkoutCapabilities = '0' | 'interval' | 'custom' | 'fitness_equipment' | 'firstbeat' | 'new_leaf' | 'tcx' | 'speed' | 'heart_rate' | 'distance' | 'cadence' | 'power' | 'grade' | 'resistance' | 'protected';
214
- export type WorkoutEquipment = 'none' | 'swim_fins' | 'swim_kickboard' | 'swim_paddles' | 'swim_pull_buoy' | 'swim_snorkel';
215
- export type WorkoutHr = '0' | 'bpm_offset';
216
- export type WorkoutPower = '0' | 'watts_offset';
217
- export type HipSwingExcerciseName = 'single_arm_kettlebell_swing' | 'single_arm_dumbbell_swing' | 'step_out_swing';
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;
218
222
  export type SpeedUnits = 'm/s' | 'mph' | 'km/h';
219
223
  export type LengthUnits = 'm' | 'mi' | 'km';
220
224
  export type TemperatureUnits = 'celsius' | '\u00B0C' | 'kelvin' | 'fahrenheit';
@@ -230,35 +234,35 @@ export interface ParsedFileId {
230
234
  manufacturer?: Manufacturer;
231
235
  product?: number;
232
236
  serial_number?: number;
233
- time_created?: string;
237
+ time_created?: Date;
234
238
  number?: number;
235
239
  product_name?: string;
236
240
  }
237
241
  export interface ParsedCapabilities {
238
- languages?: number[];
239
- sports?: SportBits0[];
242
+ languages?: (number | null)[];
243
+ sports?: (SportBits0 | null)[];
240
244
  workouts_supported?: WorkoutCapabilities;
241
245
  connectivity_supported?: ConnectivityCapabilities;
242
246
  }
243
247
  export interface ParsedDeviceSettings {
244
248
  active_time_zone?: number;
245
249
  utc_offset?: number;
246
- time_offset?: number[];
247
- time_mode?: TimeMode[];
248
- time_zone_offset?: number[];
250
+ time_offset?: (number | null)[];
251
+ time_mode?: (TimeMode | null)[];
252
+ time_zone_offset?: (number | null)[];
249
253
  backlight_mode?: BacklightMode;
250
- activity_tracker_enabled?: boolean;
251
- clock_time?: string;
252
- pages_enabled?: number[];
253
- move_alert_enabled?: boolean;
254
+ activity_tracker_enabled?: number;
255
+ clock_time?: Date;
256
+ pages_enabled?: (number | null)[];
257
+ move_alert_enabled?: number;
254
258
  date_mode?: DateMode;
255
259
  display_orientation?: DisplayOrientation;
256
260
  mounting_side?: Side;
257
- default_page?: number[];
261
+ default_page?: (number | null)[];
258
262
  autosync_min_steps?: number;
259
263
  autosync_min_time?: number;
260
- lactate_threshold_autodetect_enabled?: boolean;
261
- ble_auto_upload_enabled?: boolean;
264
+ lactate_threshold_autodetect_enabled?: number;
265
+ ble_auto_upload_enabled?: number;
262
266
  auto_sync_frequency?: AutoSyncFrequency;
263
267
  auto_activity_detect?: AutoActivityDetect;
264
268
  number_of_screens?: number;
@@ -287,7 +291,7 @@ export interface ParsedUserProfile {
287
291
  position_setting?: DisplayPosition;
288
292
  temperature_setting?: DisplayMeasure;
289
293
  local_id?: UserLocalId;
290
- global_id?: number[];
294
+ global_id?: (number | null)[];
291
295
  wake_time?: number;
292
296
  sleep_time?: number;
293
297
  height_setting?: DisplayMeasure;
@@ -298,18 +302,18 @@ export interface ParsedUserProfile {
298
302
  message_index?: MessageIndex;
299
303
  }
300
304
  export interface ParsedHrmProfile {
301
- enabled?: boolean;
305
+ enabled?: number;
302
306
  hrm_ant_id?: number;
303
- log_hrv?: boolean;
307
+ log_hrv?: number;
304
308
  hrm_ant_id_trans_type?: number;
305
309
  message_index?: MessageIndex;
306
310
  }
307
311
  export interface ParsedSdmProfile {
308
- enabled?: boolean;
312
+ enabled?: number;
309
313
  sdm_ant_id?: number;
310
314
  sdm_cal_factor?: number;
311
315
  odometer?: number;
312
- speed_source?: boolean;
316
+ speed_source?: number;
313
317
  sdm_ant_id_trans_type?: number;
314
318
  odometer_rollover?: number;
315
319
  message_index?: MessageIndex;
@@ -327,25 +331,25 @@ export interface ParsedBikeProfile {
327
331
  auto_wheelsize?: number;
328
332
  bike_weight?: number;
329
333
  power_cal_factor?: number;
330
- auto_wheel_cal?: boolean;
331
- auto_power_zero?: boolean;
334
+ auto_wheel_cal?: number;
335
+ auto_power_zero?: number;
332
336
  id?: number;
333
- spd_enabled?: boolean;
334
- cad_enabled?: boolean;
335
- spdcad_enabled?: boolean;
336
- power_enabled?: boolean;
337
+ spd_enabled?: number;
338
+ cad_enabled?: number;
339
+ spdcad_enabled?: number;
340
+ power_enabled?: number;
337
341
  crank_length?: number;
338
- enabled?: boolean;
342
+ enabled?: number;
339
343
  bike_spd_ant_id_trans_type?: number;
340
344
  bike_cad_ant_id_trans_type?: number;
341
345
  bike_spdcad_ant_id_trans_type?: number;
342
346
  bike_power_ant_id_trans_type?: number;
343
347
  odometer_rollover?: number;
344
348
  front_gear_num?: number;
345
- front_gear?: number[];
349
+ front_gear?: (number | null)[];
346
350
  rear_gear_num?: number;
347
- rear_gear?: number[];
348
- shimano_di2_enabled?: boolean;
351
+ rear_gear?: (number | null)[];
352
+ shimano_di2_enabled?: number;
349
353
  message_index?: MessageIndex;
350
354
  }
351
355
  export interface ParsedZonesTarget {
@@ -385,22 +389,22 @@ export interface ParsedTrainingSettings {
385
389
  export interface ParsedGoal {
386
390
  sport?: Sport;
387
391
  sub_sport?: SubSport;
388
- start_date?: string;
389
- end_date?: string;
392
+ start_date?: Date;
393
+ end_date?: Date;
390
394
  type?: Goal;
391
395
  value?: number;
392
- repeat?: boolean;
396
+ repeat?: number;
393
397
  target_value?: number;
394
398
  recurrence?: GoalRecurrence;
395
399
  recurrence_value?: number;
396
- enabled?: boolean;
400
+ enabled?: number;
397
401
  source?: GoalSource;
398
402
  message_index?: MessageIndex;
399
403
  }
400
404
  export interface ParsedSession {
401
405
  event?: Event;
402
406
  event_type?: EventType;
403
- start_time: string;
407
+ start_time?: Date;
404
408
  start_position_lat?: number;
405
409
  start_position_long?: number;
406
410
  sport?: Sport;
@@ -461,10 +465,10 @@ export interface ParsedSession {
461
465
  max_pos_vertical_speed?: number;
462
466
  max_neg_vertical_speed?: number;
463
467
  min_heart_rate?: number;
464
- time_in_hr_zone?: number[][];
465
- time_in_speed_zone?: number[][];
466
- time_in_cadence_zone?: number[][];
467
- 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)[];
468
472
  avg_lap_time?: number;
469
473
  best_lap_index?: number;
470
474
  min_altitude?: number;
@@ -472,8 +476,8 @@ export interface ParsedSession {
472
476
  player_score?: number;
473
477
  opponent_score?: number;
474
478
  opponent_name?: string;
475
- stroke_count?: number[];
476
- zone_count?: number[];
479
+ stroke_count?: (number | null)[];
480
+ zone_count?: (number | null)[];
477
481
  max_ball_speed?: number;
478
482
  avg_ball_speed?: number;
479
483
  avg_vertical_oscillation?: number;
@@ -482,12 +486,12 @@ export interface ParsedSession {
482
486
  avg_fractional_cadence?: number;
483
487
  max_fractional_cadence?: number;
484
488
  total_fractional_cycles?: number;
485
- avg_total_hemoglobin_conc?: number[];
486
- min_total_hemoglobin_conc?: number[];
487
- max_total_hemoglobin_conc?: number[];
488
- avg_saturated_hemoglobin_percent?: number[];
489
- min_saturated_hemoglobin_percent?: number[];
490
- 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)[];
491
495
  avg_left_torque_effectiveness?: number;
492
496
  avg_right_torque_effectiveness?: number;
493
497
  avg_left_pedal_smoothness?: number;
@@ -499,14 +503,14 @@ export interface ParsedSession {
499
503
  stand_count?: number;
500
504
  avg_left_pco?: number;
501
505
  avg_right_pco?: number;
502
- avg_left_power_phase?: number[];
503
- avg_left_power_phase_peak?: number[];
504
- avg_right_power_phase?: number[];
505
- avg_right_power_phase_peak?: number[];
506
- avg_power_position?: number[];
507
- max_power_position?: number[];
508
- avg_cadence_position?: number[];
509
- 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)[];
510
514
  enhanced_avg_speed?: number;
511
515
  enhanced_max_speed?: number;
512
516
  enhanced_avg_altitude?: number;
@@ -521,18 +525,17 @@ export interface ParsedSession {
521
525
  total_anaerobic_training_effect?: number;
522
526
  avg_vam?: number;
523
527
  avg_depth?: number;
524
- recovery_advisor?: number;
525
528
  max_depth?: number;
526
529
  surface_interval?: number;
527
530
  start_cns?: number;
528
531
  end_cns?: number;
529
- start_n_2?: number;
530
- end_n_2?: number;
532
+ start_n2?: number;
533
+ end_n2?: number;
531
534
  avg_respiration_rate?: number;
532
535
  max_respiration_rate?: number;
533
536
  min_respiration_rate?: number;
534
537
  min_temperature?: number;
535
- o_2_toxicity?: number;
538
+ o2_toxicity?: number;
536
539
  dive_number?: number;
537
540
  training_load_peak?: number;
538
541
  enhanced_avg_respiration_rate?: number;
@@ -547,10 +550,9 @@ export interface ParsedSession {
547
550
  primary_benefit?: number;
548
551
  workout_feel?: number;
549
552
  workout_rpe?: number;
550
- avg_spo_2?: number;
553
+ avg_spo2?: number;
551
554
  avg_stress?: number;
552
555
  metabolic_calories?: number;
553
- resting_calories?: number;
554
556
  sdrr_hrv?: number;
555
557
  rmssd_hrv?: number;
556
558
  total_fractional_ascent?: number;
@@ -561,14 +563,14 @@ export interface ParsedSession {
561
563
  avg_core_temperature?: number;
562
564
  min_core_temperature?: number;
563
565
  max_core_temperature?: number;
564
- timestamp: string;
566
+ timestamp?: Date;
565
567
  message_index?: MessageIndex;
566
568
  laps?: ParsedLap[];
567
569
  }
568
570
  export interface ParsedLap {
569
571
  event?: Event;
570
572
  event_type?: EventType;
571
- start_time: string;
573
+ start_time?: Date;
572
574
  start_position_lat?: number;
573
575
  start_position_long?: number;
574
576
  end_position_lat?: number;
@@ -617,18 +619,18 @@ export interface ParsedLap {
617
619
  avg_neg_vertical_speed?: number;
618
620
  max_pos_vertical_speed?: number;
619
621
  max_neg_vertical_speed?: number;
620
- time_in_hr_zone?: number[][];
621
- time_in_speed_zone?: number[][];
622
- time_in_cadence_zone?: number[][];
623
- 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)[];
624
626
  repetition_num?: number;
625
627
  min_altitude?: number;
626
628
  min_heart_rate?: number;
627
629
  active_time?: number;
628
630
  wkt_step_index?: MessageIndex;
629
631
  opponent_score?: number;
630
- stroke_count?: number[];
631
- zone_count?: number[];
632
+ stroke_count?: (number | null)[];
633
+ zone_count?: (number | null)[];
632
634
  avg_vertical_oscillation?: number;
633
635
  avg_stance_time_percent?: number;
634
636
  avg_stance_time?: number;
@@ -636,12 +638,12 @@ export interface ParsedLap {
636
638
  max_fractional_cadence?: number;
637
639
  total_fractional_cycles?: number;
638
640
  player_score?: number;
639
- avg_total_hemoglobin_conc?: number[];
640
- min_total_hemoglobin_conc?: number[];
641
- max_total_hemoglobin_conc?: number[];
642
- avg_saturated_hemoglobin_percent?: number[];
643
- min_saturated_hemoglobin_percent?: number[];
644
- 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)[];
645
647
  avg_left_torque_effectiveness?: number;
646
648
  avg_right_torque_effectiveness?: number;
647
649
  avg_left_pedal_smoothness?: number;
@@ -651,14 +653,14 @@ export interface ParsedLap {
651
653
  stand_count?: number;
652
654
  avg_left_pco?: number;
653
655
  avg_right_pco?: number;
654
- avg_left_power_phase?: number[];
655
- avg_left_power_phase_peak?: number[];
656
- avg_right_power_phase?: number[];
657
- avg_right_power_phase_peak?: number[];
658
- avg_power_position?: number[];
659
- max_power_position?: number[];
660
- avg_cadence_position?: number[];
661
- 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)[];
662
664
  enhanced_avg_speed?: number;
663
665
  enhanced_max_speed?: number;
664
666
  enhanced_avg_altitude?: number;
@@ -688,7 +690,7 @@ export interface ParsedLap {
688
690
  avg_core_temperature?: number;
689
691
  min_core_temperature?: number;
690
692
  max_core_temperature?: number;
691
- timestamp: string;
693
+ timestamp?: Date;
692
694
  message_index?: MessageIndex;
693
695
  records?: ParsedRecord[];
694
696
  lengths?: ParsedLength[];
@@ -702,13 +704,13 @@ export interface ParsedRecord {
702
704
  distance?: number;
703
705
  speed?: number;
704
706
  power?: number;
705
- compressed_speed_distance?: number[];
707
+ compressed_speed_distance?: (number | null)[];
706
708
  grade?: number;
707
709
  resistance?: number;
708
710
  time_from_course?: number;
709
711
  cycle_length?: number;
710
712
  temperature?: number;
711
- speed_1s?: number[];
713
+ speed1s?: (number | null)[];
712
714
  cycles?: number;
713
715
  total_cycles?: number;
714
716
  compressed_accumulated_power?: number;
@@ -741,10 +743,10 @@ export interface ParsedRecord {
741
743
  device_index?: number;
742
744
  left_pco?: number;
743
745
  right_pco?: number;
744
- left_power_phase?: number[];
745
- left_power_phase_peak?: number[];
746
- right_power_phase?: number[];
747
- 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)[];
748
750
  enhanced_speed?: number;
749
751
  enhanced_altitude?: number;
750
752
  battery_soc?: number;
@@ -752,7 +754,7 @@ export interface ParsedRecord {
752
754
  vertical_ratio?: number;
753
755
  stance_time_balance?: number;
754
756
  step_length?: number;
755
- cycle_length_16?: number;
757
+ cycle_length16?: number;
756
758
  garmin_performance_condition?: number;
757
759
  absolute_pressure?: number;
758
760
  depth?: number;
@@ -776,11 +778,11 @@ export interface ParsedRecord {
776
778
  volume_sac?: number;
777
779
  rmv?: number;
778
780
  ascent_rate?: number;
779
- po_2?: number;
781
+ po2?: number;
780
782
  potential_stamina?: number;
781
783
  stamina?: number;
782
784
  core_temperature?: number;
783
- timestamp: string;
785
+ timestamp?: Date;
784
786
  }
785
787
  export interface ParsedEvent {
786
788
  event?: Event;
@@ -796,12 +798,12 @@ export interface ParsedEvent {
796
798
  rear_gear?: number;
797
799
  device_index?: number;
798
800
  activity_type?: ActivityType;
799
- start_timestamp?: string;
801
+ start_timestamp?: Date;
800
802
  radar_threat_level_max?: RadarThreatLevelType;
801
803
  radar_threat_count?: number;
802
804
  radar_threat_avg_approach_speed?: number;
803
805
  radar_threat_max_approach_speed?: number;
804
- timestamp: string;
806
+ timestamp?: Date;
805
807
  }
806
808
  export interface ParsedDeviceInfo {
807
809
  device_index?: number;
@@ -823,7 +825,7 @@ export interface ParsedDeviceInfo {
823
825
  source_type?: SourceType;
824
826
  product_name?: string;
825
827
  battery_level?: number;
826
- timestamp: string;
828
+ timestamp?: Date;
827
829
  }
828
830
  export interface ParsedWorkout {
829
831
  sport?: Sport;
@@ -861,13 +863,13 @@ export interface ParsedSchedule {
861
863
  manufacturer?: Manufacturer;
862
864
  product?: number;
863
865
  serial_number?: number;
864
- time_created?: string;
865
- completed?: boolean;
866
+ time_created?: Date;
867
+ completed?: number;
866
868
  type?: Schedule;
867
- scheduled_time?: LocalDateTime;
869
+ scheduled_time?: Date;
868
870
  }
869
871
  export interface ParsedWeightScale {
870
- weight?: Weight;
872
+ weight?: number;
871
873
  percent_fat?: number;
872
874
  percent_hydration?: number;
873
875
  visceral_fat_mass?: number;
@@ -880,7 +882,7 @@ export interface ParsedWeightScale {
880
882
  visceral_fat_rating?: number;
881
883
  user_profile_index?: MessageIndex;
882
884
  bmi?: number;
883
- timestamp: string;
885
+ timestamp?: Date;
884
886
  }
885
887
  export interface ParsedCourse {
886
888
  sport?: Sport;
@@ -889,13 +891,13 @@ export interface ParsedCourse {
889
891
  sub_sport?: SubSport;
890
892
  }
891
893
  export interface ParsedCoursePoint {
892
- timestamp: string;
894
+ timestamp?: Date;
893
895
  position_lat?: number;
894
896
  position_long?: number;
895
897
  distance?: number;
896
898
  type?: CoursePoint;
897
899
  name?: string;
898
- favorite?: boolean;
900
+ favorite?: number;
899
901
  message_index?: MessageIndex;
900
902
  }
901
903
  export interface ParsedTotals {
@@ -907,7 +909,7 @@ export interface ParsedTotals {
907
909
  sessions?: number;
908
910
  active_time?: number;
909
911
  sport_index?: number;
910
- timestamp: string;
912
+ timestamp?: Date;
911
913
  message_index?: MessageIndex;
912
914
  }
913
915
  export interface ParsedActivity {
@@ -916,9 +918,9 @@ export interface ParsedActivity {
916
918
  type?: Activity;
917
919
  event?: Event;
918
920
  event_type?: EventType;
919
- local_timestamp?: LocalDateTime;
921
+ local_timestamp?: Date;
920
922
  event_group?: number;
921
- timestamp: string;
923
+ timestamp?: Date;
922
924
  sessions?: ParsedSession[];
923
925
  events?: ParsedEvent[];
924
926
  hrv?: ParsedHrv[];
@@ -965,14 +967,14 @@ export interface ParsedBloodPressure {
965
967
  systolic_pressure?: number;
966
968
  diastolic_pressure?: number;
967
969
  mean_arterial_pressure?: number;
968
- map_3_sample_mean?: number;
970
+ map3_sample_mean?: number;
969
971
  map_morning_values?: number;
970
972
  map_evening_values?: number;
971
973
  heart_rate?: number;
972
974
  heart_rate_type?: HrType;
973
975
  status?: BpStatus;
974
976
  user_profile_index?: MessageIndex;
975
- timestamp: string;
977
+ timestamp?: Date;
976
978
  }
977
979
  export interface ParsedSpeedZone {
978
980
  high_value?: number;
@@ -991,11 +993,11 @@ export interface ParsedMonitoring {
991
993
  distance16?: number;
992
994
  cycles16?: number;
993
995
  active_time16?: number;
994
- local_timestamp?: number;
996
+ local_timestamp?: Date;
995
997
  temperature?: number;
996
998
  temperature_min?: number;
997
999
  temperature_max?: number;
998
- activity_time?: number[];
1000
+ activity_time?: (number | null)[];
999
1001
  active_calories?: number;
1000
1002
  current_activity_type_intensity?: number;
1001
1003
  timestamp_min8?: number;
@@ -1008,19 +1010,18 @@ export interface ParsedMonitoring {
1008
1010
  descent?: number;
1009
1011
  moderate_activity_minutes?: number;
1010
1012
  vigorous_activity_minutes?: number;
1011
- vigorous_activity_inutes?: number;
1012
- timestamp: number;
1013
+ timestamp?: Date;
1013
1014
  }
1014
1015
  export interface ParsedTrainingFile {
1015
1016
  type?: File;
1016
1017
  manufacturer?: Manufacturer;
1017
1018
  product?: number;
1018
1019
  serial_number?: number;
1019
- time_created?: string;
1020
- timestamp: string;
1020
+ time_created?: Date;
1021
+ timestamp?: Date;
1021
1022
  }
1022
1023
  export interface ParsedHrv {
1023
- time?: number[][];
1024
+ time?: (number | null)[];
1024
1025
  }
1025
1026
  export interface ParsedUserMetrics {
1026
1027
  vo2_max?: number;
@@ -1033,26 +1034,26 @@ export interface ParsedUserMetrics {
1033
1034
  lthr?: number;
1034
1035
  ltpower?: number;
1035
1036
  ltspeed?: number;
1036
- start_of_activity?: string;
1037
+ start_of_activity?: Date;
1037
1038
  first_vo2_max?: number;
1038
- end_of_previous_activity?: string;
1039
- timestamp: string;
1039
+ end_of_previous_activity?: Date;
1040
+ timestamp?: Date;
1040
1041
  }
1041
1042
  export interface ParsedAntRx {
1042
1043
  fractional_timestamp?: number;
1043
1044
  mesg_id?: number;
1044
- mesg_data?: number[];
1045
+ mesg_data?: (number | null)[];
1045
1046
  channel_number?: number;
1046
- data?: number[];
1047
- timestamp: string;
1047
+ data?: (number | null)[];
1048
+ timestamp?: Date;
1048
1049
  }
1049
1050
  export interface ParsedAntTx {
1050
1051
  fractional_timestamp?: number;
1051
1052
  mesg_id?: number;
1052
- mesg_data?: number[];
1053
+ mesg_data?: (number | null)[];
1053
1054
  channel_number?: number;
1054
- data?: number[];
1055
- timestamp: string;
1055
+ data?: (number | null)[];
1056
+ timestamp?: Date;
1056
1057
  }
1057
1058
  export interface ParsedAntChannelId {
1058
1059
  channel_number?: number;
@@ -1064,7 +1065,7 @@ export interface ParsedAntChannelId {
1064
1065
  export interface ParsedLength {
1065
1066
  event?: Event;
1066
1067
  event_type?: EventType;
1067
- start_time: string;
1068
+ start_time?: Date;
1068
1069
  total_elapsed_time?: number;
1069
1070
  total_timer_time?: number;
1070
1071
  total_strokes?: number;
@@ -1076,22 +1077,22 @@ export interface ParsedLength {
1076
1077
  length_type?: LengthType;
1077
1078
  player_score?: number;
1078
1079
  opponent_score?: number;
1079
- stroke_count?: number[];
1080
- zone_count?: number[];
1080
+ stroke_count?: (number | null)[];
1081
+ zone_count?: (number | null)[];
1081
1082
  enhanced_avg_respiration_rate?: number;
1082
1083
  enhanced_max_respiration_rate?: number;
1083
1084
  avg_respiration_rate?: number;
1084
1085
  max_respiration_rate?: number;
1085
- timestamp: string;
1086
+ timestamp?: Date;
1086
1087
  message_index?: MessageIndex;
1087
1088
  }
1088
1089
  export interface ParsedMonitoringInfo {
1089
- local_timestamp?: number;
1090
- activity_type?: ActivityType[];
1091
- cycles_to_distance?: number[];
1092
- 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)[];
1093
1094
  resting_metabolic_rate?: number;
1094
- timestamp: string;
1095
+ timestamp?: Date;
1095
1096
  }
1096
1097
  export interface ParsedPad {
1097
1098
  }
@@ -1100,19 +1101,19 @@ export interface ParsedSlaveDevice {
1100
1101
  product?: number;
1101
1102
  }
1102
1103
  export interface ParsedConnectivity {
1103
- bluetooth_enabled?: boolean;
1104
- bluetooth_le_enabled?: boolean;
1105
- ant_enabled?: boolean;
1104
+ bluetooth_enabled?: number;
1105
+ bluetooth_le_enabled?: number;
1106
+ ant_enabled?: number;
1106
1107
  name?: string;
1107
- live_tracking_enabled?: boolean;
1108
- weather_conditions_enabled?: boolean;
1109
- weather_alerts_enabled?: boolean;
1110
- auto_activity_upload_enabled?: boolean;
1111
- course_download_enabled?: boolean;
1112
- workout_download_enabled?: boolean;
1113
- gps_ephemeris_download_enabled?: boolean;
1114
- incident_detection_enabled?: boolean;
1115
- grouptrack_enabled?: boolean;
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;
1116
1117
  }
1117
1118
  export interface ParsedWeatherConditions {
1118
1119
  weather_report?: WeatherReport;
@@ -1124,21 +1125,21 @@ export interface ParsedWeatherConditions {
1124
1125
  temperature_feels_like?: number;
1125
1126
  relative_humidity?: number;
1126
1127
  location?: string;
1127
- observed_at_time?: string;
1128
+ observed_at_time?: Date;
1128
1129
  observed_location_lat?: number;
1129
1130
  observed_location_long?: number;
1130
1131
  day_of_week?: DayOfWeek;
1131
1132
  high_temperature?: number;
1132
1133
  low_temperature?: number;
1133
- timestamp: string;
1134
+ timestamp?: Date;
1134
1135
  }
1135
1136
  export interface ParsedWeatherAlert {
1136
1137
  report_id?: string;
1137
- issue_time?: string;
1138
- expire_time?: string;
1138
+ issue_time?: Date;
1139
+ expire_time?: Date;
1139
1140
  severity?: WeatherSeverity;
1140
1141
  type?: WeatherSevereType;
1141
- timestamp: string;
1142
+ timestamp?: Date;
1142
1143
  }
1143
1144
  export interface ParsedCadenceZone {
1144
1145
  high_value?: number;
@@ -1147,11 +1148,11 @@ export interface ParsedCadenceZone {
1147
1148
  }
1148
1149
  export interface ParsedHr {
1149
1150
  fractional_timestamp?: number;
1150
- time_256?: number;
1151
- filtered_bpm?: number[];
1152
- event_timestamp?: number[];
1153
- event_timestamp_12?: number[];
1154
- timestamp: string;
1151
+ time256?: number;
1152
+ filtered_bpm?: (number | null)[];
1153
+ event_timestamp?: (number | null)[];
1154
+ event_timestamp12?: (number | null)[];
1155
+ timestamp?: Date;
1155
1156
  }
1156
1157
  export interface ParsedActivityMetrics {
1157
1158
  new_max_heart_rate?: number;
@@ -1170,7 +1171,7 @@ export interface ParsedActivityMetrics {
1170
1171
  export interface ParsedSegmentLap {
1171
1172
  event?: Event;
1172
1173
  event_type?: EventType;
1173
- start_time: string;
1174
+ start_time?: Date;
1174
1175
  start_position_lat?: number;
1175
1176
  start_position_long?: number;
1176
1177
  end_position_lat?: number;
@@ -1217,10 +1218,10 @@ export interface ParsedSegmentLap {
1217
1218
  avg_neg_vertical_speed?: number;
1218
1219
  max_pos_vertical_speed?: number;
1219
1220
  max_neg_vertical_speed?: number;
1220
- time_in_hr_zone?: number[];
1221
- time_in_speed_zone?: number[];
1222
- time_in_cadence_zone?: number[];
1223
- time_in_power_zone?: 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)[];
1224
1225
  repetition_num?: number;
1225
1226
  min_altitude?: number;
1226
1227
  min_heart_rate?: number;
@@ -1243,14 +1244,14 @@ export interface ParsedSegmentLap {
1243
1244
  stand_count?: number;
1244
1245
  avg_left_pco?: number;
1245
1246
  avg_right_pco?: number;
1246
- avg_left_power_phase?: number[];
1247
- avg_left_power_phase_peak?: number[];
1248
- avg_right_power_phase?: number[];
1249
- avg_right_power_phase_peak?: number[];
1250
- avg_power_position?: number[];
1251
- max_power_position?: number[];
1252
- avg_cadence_position?: number[];
1253
- max_cadence_position?: 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)[];
1254
1255
  manufacturer?: Manufacturer;
1255
1256
  total_grit?: number;
1256
1257
  total_flow?: number;
@@ -1261,22 +1262,22 @@ export interface ParsedSegmentLap {
1261
1262
  enhanced_avg_altitude?: number;
1262
1263
  enhanced_max_altitude?: number;
1263
1264
  enhanced_min_altitude?: number;
1264
- timestamp: string;
1265
+ timestamp?: Date;
1265
1266
  message_index?: MessageIndex;
1266
1267
  }
1267
1268
  export interface ParsedMemoGlob {
1268
- memo?: number[];
1269
+ memo?: (number | null)[];
1269
1270
  mesg_num?: MesgNum;
1270
1271
  parent_index?: MessageIndex;
1271
1272
  field_num?: number;
1272
- data?: number[];
1273
+ data?: (number | null)[];
1273
1274
  part_index?: number;
1274
1275
  }
1275
1276
  export interface ParsedSegmentId {
1276
1277
  name?: string;
1277
1278
  uuid?: string;
1278
1279
  sport?: Sport;
1279
- enabled?: boolean;
1280
+ enabled?: number;
1280
1281
  user_profile_primary_key?: number;
1281
1282
  device_id?: number;
1282
1283
  default_race_leader?: number;
@@ -1297,17 +1298,17 @@ export interface ParsedSegmentPoint {
1297
1298
  position_long?: number;
1298
1299
  distance?: number;
1299
1300
  altitude?: number;
1300
- leader_time?: number[];
1301
+ leader_time?: (number | null)[];
1301
1302
  enhanced_altitude?: number;
1302
1303
  message_index?: MessageIndex;
1303
1304
  }
1304
1305
  export interface ParsedSegmentFile {
1305
1306
  file_uuid?: string;
1306
- enabled?: boolean;
1307
+ enabled?: number;
1307
1308
  user_profile_primary_key?: number;
1308
- leader_type?: SegmentLeaderboardType[];
1309
- leader_group_primary_key?: number[];
1310
- leader_activity_id?: number[];
1309
+ leader_type?: (SegmentLeaderboardType | null)[];
1310
+ leader_group_primary_key?: (number | null)[];
1311
+ leader_activity_id?: (number | null)[];
1311
1312
  leader_activity_id_string?: string;
1312
1313
  default_race_leader?: number;
1313
1314
  message_index?: MessageIndex;
@@ -1333,94 +1334,94 @@ export interface ParsedGpsMetadata {
1333
1334
  enhanced_altitude?: number;
1334
1335
  enhanced_speed?: number;
1335
1336
  heading?: number;
1336
- utc_timestamp?: string;
1337
- velocity?: number[];
1338
- timestamp: string;
1337
+ utc_timestamp?: Date;
1338
+ velocity?: (number | null)[];
1339
+ timestamp?: Date;
1339
1340
  }
1340
1341
  export interface ParsedCameraEvent {
1341
1342
  timestamp_ms?: number;
1342
1343
  camera_event_type?: CameraEventType;
1343
1344
  camera_file_uuid?: string;
1344
1345
  camera_orientation?: CameraOrientationType;
1345
- timestamp: string;
1346
+ timestamp?: Date;
1346
1347
  }
1347
1348
  export interface ParsedTimestampCorrelation {
1348
1349
  fractional_timestamp?: number;
1349
- system_timestamp?: string;
1350
+ system_timestamp?: Date;
1350
1351
  fractional_system_timestamp?: number;
1351
- local_timestamp?: LocalDateTime;
1352
+ local_timestamp?: Date;
1352
1353
  timestamp_ms?: number;
1353
1354
  system_timestamp_ms?: number;
1354
- timestamp: string;
1355
+ timestamp?: Date;
1355
1356
  }
1356
1357
  export interface ParsedGyroscopeData {
1357
1358
  timestamp_ms?: number;
1358
- sample_time_offset?: number[];
1359
- gyro_x?: number[];
1360
- gyro_y?: number[];
1361
- gyro_z?: number[];
1362
- calibrated_gyro_x?: number[];
1363
- calibrated_gyro_y?: number[];
1364
- calibrated_gyro_z?: number[];
1365
- timestamp: string;
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;
1366
1367
  }
1367
1368
  export interface ParsedAccelerometerData {
1368
1369
  timestamp_ms?: number;
1369
- sample_time_offset?: number[];
1370
- accel_x?: number[];
1371
- accel_y?: number[];
1372
- accel_z?: number[];
1373
- calibrated_accel_x?: number[];
1374
- calibrated_accel_y?: number[];
1375
- calibrated_accel_z?: number[];
1376
- compressed_calibrated_accel_x?: number[];
1377
- compressed_calibrated_accel_y?: number[];
1378
- compressed_calibrated_accel_z?: number[];
1379
- timestamp: string;
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;
1380
1381
  }
1381
1382
  export interface ParsedThreeDSensorCalibration {
1382
1383
  sensor_type?: SensorType;
1383
1384
  calibration_factor?: number;
1384
1385
  calibration_divisor?: number;
1385
1386
  level_shift?: number;
1386
- offset_cal?: number[];
1387
- orientation_matrix?: number[];
1388
- timestamp: string;
1387
+ offset_cal?: (number | null)[];
1388
+ orientation_matrix?: (number | null)[];
1389
+ timestamp?: Date;
1389
1390
  }
1390
1391
  export interface ParsedVideoFrame {
1391
1392
  timestamp_ms?: number;
1392
1393
  frame_number?: number;
1393
- timestamp: string;
1394
+ timestamp?: Date;
1394
1395
  }
1395
1396
  export interface ParsedObdiiData {
1396
1397
  timestamp_ms?: number;
1397
- time_offset?: number[];
1398
+ time_offset?: (number | null)[];
1398
1399
  pid?: number;
1399
- raw_data?: number[];
1400
- pid_data_size?: number[];
1401
- system_time?: number[];
1402
- start_timestamp?: string;
1400
+ raw_data?: (number | null)[];
1401
+ pid_data_size?: (number | null)[];
1402
+ system_time?: (number | null)[];
1403
+ start_timestamp?: Date;
1403
1404
  start_timestamp_ms?: number;
1404
- timestamp: string;
1405
+ timestamp?: Date;
1405
1406
  }
1406
1407
  export interface ParsedNmeaSentence {
1407
1408
  timestamp_ms?: number;
1408
1409
  sentence?: string;
1409
- timestamp: string;
1410
+ timestamp?: Date;
1410
1411
  }
1411
1412
  export interface ParsedAviationAttitude {
1412
1413
  timestamp_ms?: number;
1413
- system_time?: number[];
1414
- pitch?: number[];
1415
- roll?: number[];
1416
- accel_lateral?: number[];
1417
- accel_normal?: number[];
1418
- turn_rate?: number[];
1419
- stage?: AttitudeStage[];
1420
- attitude_stage_complete?: number[];
1421
- track?: number[];
1422
- validity?: AttitudeValidity[];
1423
- timestamp: string;
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;
1424
1425
  }
1425
1426
  export interface ParsedVideo {
1426
1427
  url?: string;
@@ -1439,22 +1440,22 @@ export interface ParsedVideoDescription {
1439
1440
  }
1440
1441
  export interface ParsedVideoClip {
1441
1442
  clip_number?: number;
1442
- start_timestamp?: string;
1443
+ start_timestamp?: Date;
1443
1444
  start_timestamp_ms?: number;
1444
- end_timestamp?: string;
1445
+ end_timestamp?: Date;
1445
1446
  end_timestamp_ms?: number;
1446
1447
  clip_start?: number;
1447
1448
  clip_end?: number;
1448
1449
  }
1449
1450
  export interface ParsedOhrSettings {
1450
1451
  enabled?: Switch;
1451
- timestamp: string;
1452
+ timestamp?: Date;
1452
1453
  }
1453
1454
  export interface ParsedExdScreenConfiguration {
1454
1455
  screen_index?: number;
1455
1456
  field_count?: number;
1456
1457
  layout?: ExdLayout;
1457
- screen_enabled?: boolean;
1458
+ screen_enabled?: number;
1458
1459
  }
1459
1460
  export interface ParsedExdDataFieldConfiguration {
1460
1461
  screen_index?: number;
@@ -1475,12 +1476,12 @@ export interface ParsedExdDataConceptConfiguration {
1475
1476
  data_units?: ExdDataUnits;
1476
1477
  qualifier?: ExdQualifiers;
1477
1478
  descriptor?: ExdDescriptors;
1478
- is_signed?: boolean;
1479
+ is_signed?: number;
1479
1480
  }
1480
1481
  export interface ParsedFieldDescription {
1481
1482
  developer_data_index?: number;
1482
1483
  field_definition_number?: number;
1483
- fit_base_type_id?: number;
1484
+ fit_base_type_id?: FitBaseType;
1484
1485
  field_name?: string;
1485
1486
  array?: number;
1486
1487
  components?: string;
@@ -1494,28 +1495,28 @@ export interface ParsedFieldDescription {
1494
1495
  native_field_num?: number;
1495
1496
  }
1496
1497
  export interface ParsedDeveloperDataId {
1497
- developer_id?: number[];
1498
- application_id?: number[][];
1498
+ developer_id?: (number | null)[];
1499
+ application_id?: (number | null)[];
1499
1500
  manufacturer_id?: Manufacturer;
1500
1501
  developer_data_index?: number;
1501
1502
  application_version?: number;
1502
1503
  }
1503
1504
  export interface ParsedMagnetometerData {
1504
1505
  timestamp_ms?: number;
1505
- sample_time_offset?: number[];
1506
- mag_x?: number[];
1507
- mag_y?: number[];
1508
- mag_z?: number[];
1509
- calibrated_mag_x?: number[];
1510
- calibrated_mag_y?: number[];
1511
- calibrated_mag_z?: number[];
1512
- timestamp: string;
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;
1513
1514
  }
1514
1515
  export interface ParsedBarometerData {
1515
1516
  timestamp_ms?: number;
1516
- sample_time_offset?: number[];
1517
- baro_pres?: number[];
1518
- timestamp: string;
1517
+ sample_time_offset?: (number | null)[];
1518
+ baro_pres?: (number | null)[];
1519
+ timestamp?: Date;
1519
1520
  }
1520
1521
  export interface ParsedOneDSensorCalibration {
1521
1522
  sensor_type?: SensorType;
@@ -1523,60 +1524,56 @@ export interface ParsedOneDSensorCalibration {
1523
1524
  calibration_divisor?: number;
1524
1525
  level_shift?: number;
1525
1526
  offset_cal?: number;
1526
- timestamp: string;
1527
+ timestamp?: Date;
1527
1528
  }
1528
1529
  export interface ParsedMonitoringHrData {
1529
1530
  resting_heart_rate?: number;
1530
1531
  current_day_resting_heart_rate?: number;
1531
- timestamp: string;
1532
+ timestamp?: Date;
1532
1533
  }
1533
1534
  export interface ParsedTimeInZone {
1534
- reference_mesg?: number;
1535
- reference_index?: number;
1536
- time_in_hr_zone?: number[][];
1537
- time_in_speed_zone?: number[][];
1538
- time_in_cadence_zone?: number[][];
1539
- time_in_power_zone?: number[][];
1540
- hr_zone_high_boundary?: number[][];
1541
- speed_zone_high_boundary?: number[][];
1542
- cadence_zone_high_boundary?: number[][];
1543
- power_zone_high_boundary?: 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)[];
1544
1545
  hr_calc_type?: HrZoneCalc;
1545
- max_heart_rate_deprecated?: number;
1546
1546
  max_heart_rate?: number;
1547
1547
  resting_heart_rate?: number;
1548
1548
  threshold_heart_rate?: number;
1549
1549
  pwr_calc_type?: PwrZoneCalc;
1550
1550
  functional_threshold_power?: number;
1551
- timestamp: string;
1551
+ timestamp?: Date;
1552
1552
  }
1553
1553
  export interface ParsedSet {
1554
1554
  duration?: number;
1555
1555
  repetitions?: number;
1556
1556
  weight?: number;
1557
1557
  set_type?: SetType;
1558
- start_time: string;
1559
- category?: ExerciseCategory[][];
1560
- category_subtype?: number[][];
1558
+ start_time?: Date;
1559
+ category?: (ExerciseCategory | null)[];
1560
+ category_subtype?: (number | null)[];
1561
1561
  weight_display_unit?: FitBaseUnit;
1562
1562
  message_index?: MessageIndex;
1563
1563
  wkt_step_index?: MessageIndex;
1564
- timestamp: string;
1564
+ timestamp?: Date;
1565
1565
  }
1566
1566
  export interface ParsedStressLevel {
1567
1567
  stress_level_value?: number;
1568
- stress_level_time?: string;
1569
- field_two?: number;
1570
- body_battery?: number;
1571
- field_four?: number;
1568
+ stress_level_time?: Date;
1572
1569
  }
1573
1570
  export interface ParsedMaxMetData {
1574
- update_time?: string;
1575
- vo_2_max?: number;
1571
+ update_time?: Date;
1572
+ vo2_max?: number;
1576
1573
  sport?: Sport;
1577
1574
  sub_sport?: SubSport;
1578
1575
  max_met_category?: MaxMetCategory;
1579
- calibrated_data?: boolean;
1576
+ calibrated_data?: number;
1580
1577
  hr_source?: MaxMetHeartRateSource;
1581
1578
  speed_source?: MaxMetSpeedSource;
1582
1579
  }
@@ -1590,16 +1587,15 @@ export interface ParsedDiveSettings {
1590
1587
  po2_warn?: number;
1591
1588
  po2_critical?: number;
1592
1589
  po2_deco?: number;
1593
- safety_stop_enabled?: boolean;
1590
+ safety_stop_enabled?: number;
1594
1591
  bottom_depth?: number;
1595
1592
  bottom_time?: number;
1596
- apnea_countdown_enabled?: boolean;
1593
+ apnea_countdown_enabled?: number;
1597
1594
  apnea_countdown_time?: number;
1598
1595
  backlight_mode?: DiveBacklightMode;
1599
1596
  backlight_brightness?: number;
1600
1597
  backlight_timeout?: BacklightTimeout;
1601
1598
  repeat_dive_interval?: number;
1602
- repeat_dive_time?: number;
1603
1599
  safety_stop_time?: number;
1604
1600
  heart_rate_source_type?: SourceType;
1605
1601
  heart_rate_source?: number;
@@ -1611,11 +1607,11 @@ export interface ParsedDiveSettings {
1611
1607
  ccr_high_setpoint?: number;
1612
1608
  ccr_high_setpoint_depth?: number;
1613
1609
  gas_consumption_display?: GasConsumptionRateType;
1614
- up_key_enabled?: boolean;
1610
+ up_key_enabled?: number;
1615
1611
  dive_sounds?: Tone;
1616
1612
  last_stop_multiple?: number;
1617
1613
  no_fly_time_mode?: NoFlyTimeMode;
1618
- timestamp: string;
1614
+ timestamp?: Date;
1619
1615
  message_index?: MessageIndex;
1620
1616
  }
1621
1617
  export interface ParsedDiveGas {
@@ -1628,15 +1624,15 @@ export interface ParsedDiveGas {
1628
1624
  export interface ParsedDiveAlarm {
1629
1625
  depth?: number;
1630
1626
  time?: number;
1631
- enabled?: boolean;
1627
+ enabled?: number;
1632
1628
  alarm_type?: DiveAlarmType;
1633
1629
  sound?: Tone;
1634
- dive_types?: SubSport[];
1630
+ dive_types?: (SubSport | null)[];
1635
1631
  id?: number;
1636
- popup_enabled?: boolean;
1637
- trigger_on_descent?: boolean;
1638
- trigger_on_ascent?: boolean;
1639
- repeating?: boolean;
1632
+ popup_enabled?: number;
1633
+ trigger_on_descent?: number;
1634
+ trigger_on_ascent?: number;
1635
+ repeating?: number;
1640
1636
  speed?: number;
1641
1637
  message_index?: MessageIndex;
1642
1638
  }
@@ -1669,17 +1665,17 @@ export interface ParsedDiveSummary {
1669
1665
  max_ascent_rate?: number;
1670
1666
  max_descent_rate?: number;
1671
1667
  hang_time?: number;
1672
- timestamp: string;
1668
+ timestamp?: Date;
1673
1669
  }
1674
1670
  export interface ParsedSpo2Data {
1675
- reading_spo_2?: number;
1671
+ reading_spo2?: number;
1676
1672
  reading_confidence?: number;
1677
1673
  mode?: Spo2MeasurementType;
1678
- timestamp: string;
1674
+ timestamp?: Date;
1679
1675
  }
1680
1676
  export interface ParsedSleepLevel {
1681
1677
  sleep_level?: SleepLevel;
1682
- timestamp: string;
1678
+ timestamp?: Date;
1683
1679
  }
1684
1680
  export interface ParsedJump {
1685
1681
  distance?: number;
@@ -1691,7 +1687,7 @@ export interface ParsedJump {
1691
1687
  position_long?: number;
1692
1688
  speed?: number;
1693
1689
  enhanced_speed?: number;
1694
- timestamp: string;
1690
+ timestamp?: Date;
1695
1691
  }
1696
1692
  export interface ParsedAadAccelFeatures {
1697
1693
  time?: number;
@@ -1699,52 +1695,52 @@ export interface ParsedAadAccelFeatures {
1699
1695
  zero_cross_cnt?: number;
1700
1696
  instance?: number;
1701
1697
  time_above_threshold?: number;
1702
- timestamp: string;
1698
+ timestamp?: Date;
1703
1699
  }
1704
1700
  export interface ParsedBeatIntervals {
1705
1701
  timestamp_ms?: number;
1706
- time?: number[];
1707
- timestamp: string;
1702
+ time?: (number | null)[];
1703
+ timestamp?: Date;
1708
1704
  }
1709
1705
  export interface ParsedRespirationRate {
1710
1706
  respiration_rate?: number;
1711
- timestamp: string;
1707
+ timestamp?: Date;
1712
1708
  }
1713
1709
  export interface ParsedHsaAccelerometerData {
1714
1710
  timestamp_ms?: number;
1715
1711
  sampling_interval?: number;
1716
- accel_x?: number[];
1717
- accel_y?: number[];
1718
- accel_z?: number[];
1719
- timestamp_32k?: number;
1720
- timestamp: string;
1712
+ accel_x?: (number | null)[];
1713
+ accel_y?: (number | null)[];
1714
+ accel_z?: (number | null)[];
1715
+ timestamp32k?: number;
1716
+ timestamp?: Date;
1721
1717
  }
1722
1718
  export interface ParsedHsaStepData {
1723
1719
  processing_interval?: number;
1724
- steps?: number[];
1725
- timestamp: string;
1720
+ steps?: (number | null)[];
1721
+ timestamp?: Date;
1726
1722
  }
1727
1723
  export interface ParsedHsaSpo2Data {
1728
1724
  processing_interval?: number;
1729
- reading_spo_2?: number[];
1730
- confidence?: number[];
1731
- timestamp: string;
1725
+ reading_spo2?: (number | null)[];
1726
+ confidence?: (number | null)[];
1727
+ timestamp?: Date;
1732
1728
  }
1733
1729
  export interface ParsedHsaStressData {
1734
1730
  processing_interval?: number;
1735
- stress_level?: number[];
1736
- timestamp: string;
1731
+ stress_level?: (number | null)[];
1732
+ timestamp?: Date;
1737
1733
  }
1738
1734
  export interface ParsedHsaRespirationData {
1739
1735
  processing_interval?: number;
1740
- respiration_rate?: number[];
1741
- timestamp: string;
1736
+ respiration_rate?: (number | null)[];
1737
+ timestamp?: Date;
1742
1738
  }
1743
1739
  export interface ParsedHsaHeartRateData {
1744
1740
  processing_interval?: number;
1745
1741
  status?: number;
1746
- heart_rate?: number[];
1747
- timestamp: string;
1742
+ heart_rate?: (number | null)[];
1743
+ timestamp?: Date;
1748
1744
  }
1749
1745
  export interface ParsedSplit {
1750
1746
  split_type?: SplitType;
@@ -1752,7 +1748,7 @@ export interface ParsedSplit {
1752
1748
  total_timer_time?: number;
1753
1749
  total_distance?: number;
1754
1750
  avg_speed?: number;
1755
- start_time: string;
1751
+ start_time?: Date;
1756
1752
  total_ascent?: number;
1757
1753
  total_descent?: number;
1758
1754
  start_position_lat?: number;
@@ -1761,7 +1757,7 @@ export interface ParsedSplit {
1761
1757
  end_position_long?: number;
1762
1758
  max_speed?: number;
1763
1759
  avg_vert_speed?: number;
1764
- end_time?: string;
1760
+ end_time?: Date;
1765
1761
  total_calories?: number;
1766
1762
  start_elevation?: number;
1767
1763
  active_time?: number;
@@ -1790,14 +1786,14 @@ export interface ParsedSplitSummary {
1790
1786
  }
1791
1787
  export interface ParsedHsaBodyBatteryData {
1792
1788
  processing_interval?: number;
1793
- level?: number[];
1794
- charged?: number[];
1795
- uncharged?: number[];
1796
- timestamp: string;
1789
+ level?: (number | null)[];
1790
+ charged?: (number | null)[];
1791
+ uncharged?: (number | null)[];
1792
+ timestamp?: Date;
1797
1793
  }
1798
1794
  export interface ParsedHsaEvent {
1799
1795
  event_id?: number;
1800
- timestamp: string;
1796
+ timestamp?: Date;
1801
1797
  }
1802
1798
  export interface ParsedClimbPro {
1803
1799
  position_lat?: number;
@@ -1806,19 +1802,19 @@ export interface ParsedClimbPro {
1806
1802
  climb_number?: number;
1807
1803
  climb_category?: number;
1808
1804
  current_dist?: number;
1809
- timestamp: string;
1805
+ timestamp?: Date;
1810
1806
  }
1811
1807
  export interface ParsedTankUpdate {
1812
- sensor?: number;
1808
+ sensor?: AntChannelId;
1813
1809
  pressure?: number;
1814
- timestamp: string;
1810
+ timestamp?: Date;
1815
1811
  }
1816
1812
  export interface ParsedTankSummary {
1817
- sensor?: number;
1813
+ sensor?: AntChannelId;
1818
1814
  start_pressure?: number;
1819
1815
  end_pressure?: number;
1820
1816
  volume_used?: number;
1821
- timestamp: string;
1817
+ timestamp?: Date;
1822
1818
  }
1823
1819
  export interface ParsedSleepAssessment {
1824
1820
  combined_awake_score?: number;
@@ -1839,40 +1835,40 @@ export interface ParsedSleepAssessment {
1839
1835
  export interface ParsedHrvStatusSummary {
1840
1836
  weekly_average?: number;
1841
1837
  last_night_average?: number;
1842
- last_night_5_min_high?: number;
1838
+ last_night5_min_high?: number;
1843
1839
  baseline_low_upper?: number;
1844
1840
  baseline_balanced_lower?: number;
1845
1841
  baseline_balanced_upper?: number;
1846
1842
  status?: HrvStatus;
1847
- timestamp: string;
1843
+ timestamp?: Date;
1848
1844
  }
1849
1845
  export interface ParsedHrvValue {
1850
1846
  value?: number;
1851
- timestamp: string;
1847
+ timestamp?: Date;
1852
1848
  }
1853
1849
  export interface ParsedRawBbi {
1854
1850
  timestamp_ms?: number;
1855
- data?: number[];
1856
- time?: number[];
1857
- quality?: number[];
1858
- gap?: number[];
1859
- timestamp: string;
1851
+ data?: (number | null)[];
1852
+ time?: (number | null)[];
1853
+ quality?: (number | null)[];
1854
+ gap?: (number | null)[];
1855
+ timestamp?: Date;
1860
1856
  }
1861
1857
  export interface ParsedDeviceAuxBatteryInfo {
1862
1858
  device_index?: number;
1863
1859
  battery_voltage?: number;
1864
1860
  battery_status?: BatteryStatus;
1865
1861
  battery_identifier?: number;
1866
- timestamp: string;
1862
+ timestamp?: Date;
1867
1863
  }
1868
1864
  export interface ParsedHsaGyroscopeData {
1869
1865
  timestamp_ms?: number;
1870
1866
  sampling_interval?: number;
1871
- gyro_x?: number[];
1872
- gyro_y?: number[];
1873
- gyro_z?: number[];
1874
- timestamp_32k?: number;
1875
- timestamp: string;
1867
+ gyro_x?: (number | null)[];
1868
+ gyro_y?: (number | null)[];
1869
+ gyro_z?: (number | null)[];
1870
+ timestamp32k?: number;
1871
+ timestamp?: Date;
1876
1872
  }
1877
1873
  export interface ParsedChronoShotSession {
1878
1874
  min_speed?: number;
@@ -1882,65 +1878,65 @@ export interface ParsedChronoShotSession {
1882
1878
  projectile_type?: ProjectileType;
1883
1879
  grain_weight?: number;
1884
1880
  standard_deviation?: number;
1885
- timestamp: string;
1881
+ timestamp?: Date;
1886
1882
  }
1887
1883
  export interface ParsedChronoShotData {
1888
1884
  shot_speed?: number;
1889
1885
  shot_num?: number;
1890
- timestamp: string;
1886
+ timestamp?: Date;
1891
1887
  }
1892
1888
  export interface ParsedHsaConfigurationData {
1893
- data?: number[];
1889
+ data?: (number | null)[];
1894
1890
  data_size?: number;
1895
- timestamp: string;
1891
+ timestamp?: Date;
1896
1892
  }
1897
1893
  export interface ParsedDiveApneaAlarm {
1898
1894
  depth?: number;
1899
1895
  time?: number;
1900
- enabled?: boolean;
1896
+ enabled?: number;
1901
1897
  alarm_type?: DiveAlarmType;
1902
1898
  sound?: Tone;
1903
- dive_types?: SubSport[];
1899
+ dive_types?: (SubSport | null)[];
1904
1900
  id?: number;
1905
- popup_enabled?: boolean;
1906
- trigger_on_descent?: boolean;
1907
- trigger_on_ascent?: boolean;
1908
- repeating?: boolean;
1901
+ popup_enabled?: number;
1902
+ trigger_on_descent?: number;
1903
+ trigger_on_ascent?: number;
1904
+ repeating?: number;
1909
1905
  speed?: number;
1910
1906
  message_index?: MessageIndex;
1911
1907
  }
1912
1908
  export interface ParsedSkinTempOvernight {
1913
- local_timestamp?: LocalDateTime;
1909
+ local_timestamp?: Date;
1914
1910
  average_deviation?: number;
1915
- average_7_day_deviation?: number;
1911
+ average7_day_deviation?: number;
1916
1912
  nightly_value?: number;
1917
- timestamp: string;
1913
+ timestamp?: Date;
1918
1914
  }
1919
1915
  export interface ParsedHsaWristTemperatureData {
1920
1916
  processing_interval?: number;
1921
- value?: number[];
1922
- timestamp: string;
1917
+ value?: (number | null)[];
1918
+ timestamp?: Date;
1923
1919
  }
1924
1920
  export interface ParsedNapEvent {
1925
- start_time: string;
1921
+ start_time?: Date;
1926
1922
  start_timezone_offset?: number;
1927
- end_time?: string;
1923
+ end_time?: Date;
1928
1924
  end_timezone_offset?: number;
1929
1925
  feedback?: NapPeriodFeedback;
1930
- is_deleted?: boolean;
1926
+ is_deleted?: number;
1931
1927
  source?: NapSource;
1932
- update_timestamp?: string;
1933
- timestamp: string;
1928
+ update_timestamp?: Date;
1929
+ timestamp?: Date;
1934
1930
  message_index?: MessageIndex;
1935
1931
  }
1936
1932
  export interface ParsedSleepDisruptionSeverityPeriod {
1937
1933
  severity?: SleepDisruptionSeverity;
1938
- timestamp: string;
1934
+ timestamp?: Date;
1939
1935
  message_index?: MessageIndex;
1940
1936
  }
1941
1937
  export interface ParsedSleepDisruptionOvernightSeverity {
1942
1938
  severity?: SleepDisruptionSeverity;
1943
- timestamp: string;
1939
+ timestamp?: Date;
1944
1940
  }
1945
1941
  export interface ParsedMessages {
1946
1942
  file_id?: ParsedFileId[];
@@ -2035,7 +2031,7 @@ export interface ParsedMessages {
2035
2031
  dive_alarm?: ParsedDiveAlarm[];
2036
2032
  exercise_title?: ParsedExerciseTitle[];
2037
2033
  dive_summary?: ParsedDiveSummary[];
2038
- spo_2_data?: ParsedSpo2Data[];
2034
+ spo2_data?: ParsedSpo2Data[];
2039
2035
  sleep_level?: ParsedSleepLevel[];
2040
2036
  jump?: ParsedJump[];
2041
2037
  aad_accel_features?: ParsedAadAccelFeatures[];
@@ -2043,7 +2039,7 @@ export interface ParsedMessages {
2043
2039
  respiration_rate?: ParsedRespirationRate[];
2044
2040
  hsa_accelerometer_data?: ParsedHsaAccelerometerData[];
2045
2041
  hsa_step_data?: ParsedHsaStepData[];
2046
- hsa_spo_2_data?: ParsedHsaSpo2Data[];
2042
+ hsa_spo2_data?: ParsedHsaSpo2Data[];
2047
2043
  hsa_stress_data?: ParsedHsaStressData[];
2048
2044
  hsa_respiration_data?: ParsedHsaRespirationData[];
2049
2045
  hsa_heart_rate_data?: ParsedHsaHeartRateData[];
@@ -2172,14 +2168,14 @@ export interface ParsedFit {
2172
2168
  max_met_data?: ParsedMaxMetData;
2173
2169
  dive_alarm?: ParsedDiveAlarm;
2174
2170
  exercise_title?: ParsedExerciseTitle;
2175
- spo_2_data?: ParsedSpo2Data;
2171
+ spo2_data?: ParsedSpo2Data;
2176
2172
  sleep_level?: ParsedSleepLevel;
2177
2173
  aad_accel_features?: ParsedAadAccelFeatures;
2178
2174
  beat_intervals?: ParsedBeatIntervals;
2179
2175
  respiration_rate?: ParsedRespirationRate;
2180
2176
  hsa_accelerometer_data?: ParsedHsaAccelerometerData;
2181
2177
  hsa_step_data?: ParsedHsaStepData;
2182
- hsa_spo_2_data?: ParsedHsaSpo2Data;
2178
+ hsa_spo2_data?: ParsedHsaSpo2Data;
2183
2179
  hsa_stress_data?: ParsedHsaStressData;
2184
2180
  hsa_respiration_data?: ParsedHsaRespirationData;
2185
2181
  hsa_heart_rate_data?: ParsedHsaHeartRateData;