@garmin/fitsdk 21.202.0 → 21.205.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +24 -22
- package/src/accumulator.js +2 -2
- package/src/bit-stream.js +56 -9
- package/src/crc-calculator.js +2 -2
- package/src/decoder.js +43 -81
- package/src/encoder.js +2 -39
- package/src/fit.js +5 -2
- package/src/index.d.ts +22 -0
- package/src/index.js +2 -2
- package/src/mesg-definition.js +2 -2
- package/src/output-stream.js +2 -2
- package/src/profile.js +8 -4
- package/src/stream.js +107 -90
- package/src/types/crc-calculator.d.ts +34 -0
- package/src/types/decoder.d.ts +140 -0
- package/src/types/encoder.d.ts +69 -0
- package/src/types/mesg.d.ts +35 -0
- package/src/types/mesgs.d.ts +2638 -0
- package/src/types/profile.d.ts +96 -0
- package/src/types/stream.d.ts +118 -0
- package/src/types/types.d.ts +4871 -0
- package/src/types/utils.d.ts +55 -0
- package/src/utils-hr-mesg.js +2 -2
- package/src/utils-internal.js +14 -6
- package/src/utils-memo-glob.js +2 -2
- package/src/utils.js +2 -16
|
@@ -0,0 +1,4871 @@
|
|
|
1
|
+
/////////////////////////////////////////////////////////////////////////////////////////////
|
|
2
|
+
// Copyright 2026 Garmin International, Inc.
|
|
3
|
+
// Licensed under the Flexible and Interoperable Data Transfer (FIT) Protocol License; you
|
|
4
|
+
// may not use this file except in compliance with the Flexible and Interoperable Data
|
|
5
|
+
// Transfer (FIT) Protocol License.
|
|
6
|
+
/////////////////////////////////////////////////////////////////////////////////////////////
|
|
7
|
+
// ****WARNING**** This file is auto-generated! Do NOT edit this file.
|
|
8
|
+
// Profile Version = 21.205.0Release
|
|
9
|
+
// Tag = production/release/21.205.0-0-gb3c261eb
|
|
10
|
+
/////////////////////////////////////////////////////////////////////////////////////////////
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
declare namespace Types {
|
|
14
|
+
|
|
15
|
+
export type Enum = number;
|
|
16
|
+
|
|
17
|
+
export type Sint8 = number;
|
|
18
|
+
|
|
19
|
+
export type Uint8 = number;
|
|
20
|
+
|
|
21
|
+
export type Sint16 = number;
|
|
22
|
+
|
|
23
|
+
export type Uint16 = number;
|
|
24
|
+
|
|
25
|
+
export type Sint32 = number;
|
|
26
|
+
|
|
27
|
+
export type Uint32 = number;
|
|
28
|
+
|
|
29
|
+
export type String = string;
|
|
30
|
+
|
|
31
|
+
export type Float32 = number;
|
|
32
|
+
|
|
33
|
+
export type Float64 = number;
|
|
34
|
+
|
|
35
|
+
export type Uint8z = number;
|
|
36
|
+
|
|
37
|
+
export type Uint16z = number;
|
|
38
|
+
|
|
39
|
+
export type Uint32z = number;
|
|
40
|
+
|
|
41
|
+
export type Byte = number;
|
|
42
|
+
|
|
43
|
+
export type Sint64 = bigint;
|
|
44
|
+
|
|
45
|
+
export type Uint64 = bigint;
|
|
46
|
+
|
|
47
|
+
export type Uint64z = bigint;
|
|
48
|
+
|
|
49
|
+
export type Bool = 0 | 1;
|
|
50
|
+
|
|
51
|
+
export type File = number
|
|
52
|
+
| "device" /** Read only, single file. Must be in root directory. */
|
|
53
|
+
| "settings" /** Read/write, single file. Directory=Settings */
|
|
54
|
+
| "sport" /** Read/write, multiple files, file number = sport type. Directory=Sports */
|
|
55
|
+
| "activity" /** Read/erase, multiple files. Directory=Activities */
|
|
56
|
+
| "workout" /** Read/write/erase, multiple files. Directory=Workouts */
|
|
57
|
+
| "course" /** Read/write/erase, multiple files. Directory=Courses */
|
|
58
|
+
| "schedules" /** Read/write, single file. Directory=Schedules */
|
|
59
|
+
| "weight" /** Read only, single file. Circular buffer. All message definitions at start of file. Directory=Weight */
|
|
60
|
+
| "totals" /** Read only, single file. Directory=Totals */
|
|
61
|
+
| "goals" /** Read/write, single file. Directory=Goals */
|
|
62
|
+
| "bloodPressure" /** Read only. Directory=Blood Pressure */
|
|
63
|
+
| "monitoringA" /** Read only. Directory=Monitoring. File number=sub type. */
|
|
64
|
+
| "activitySummary" /** Read/erase, multiple files. Directory=Activities */
|
|
65
|
+
| "monitoringDaily"
|
|
66
|
+
| "monitoringB" /** Read only. Directory=Monitoring. File number=identifier */
|
|
67
|
+
| "segment" /** Read/write/erase. Multiple Files. Directory=Segments */
|
|
68
|
+
| "segmentList" /** Read/write/erase. Single File. Directory=Segments */
|
|
69
|
+
| "exdConfiguration" /** Read/write/erase. Single File. Directory=Settings */
|
|
70
|
+
| "mfgRangeMin" /** 0xF7 - 0xFE reserved for manufacturer specific file types */
|
|
71
|
+
| "mfgRangeMax" /** 0xF7 - 0xFE reserved for manufacturer specific file types */;
|
|
72
|
+
|
|
73
|
+
export type MesgNum = number
|
|
74
|
+
| "fileId"
|
|
75
|
+
| "capabilities"
|
|
76
|
+
| "deviceSettings"
|
|
77
|
+
| "userProfile"
|
|
78
|
+
| "hrmProfile"
|
|
79
|
+
| "sdmProfile"
|
|
80
|
+
| "bikeProfile"
|
|
81
|
+
| "zonesTarget"
|
|
82
|
+
| "hrZone"
|
|
83
|
+
| "powerZone"
|
|
84
|
+
| "metZone"
|
|
85
|
+
| "sport"
|
|
86
|
+
| "trainingSettings"
|
|
87
|
+
| "goal"
|
|
88
|
+
| "session"
|
|
89
|
+
| "lap"
|
|
90
|
+
| "record"
|
|
91
|
+
| "event"
|
|
92
|
+
| "deviceInfo"
|
|
93
|
+
| "workout"
|
|
94
|
+
| "workoutStep"
|
|
95
|
+
| "schedule"
|
|
96
|
+
| "weightScale"
|
|
97
|
+
| "course"
|
|
98
|
+
| "coursePoint"
|
|
99
|
+
| "totals"
|
|
100
|
+
| "activity"
|
|
101
|
+
| "software"
|
|
102
|
+
| "fileCapabilities"
|
|
103
|
+
| "mesgCapabilities"
|
|
104
|
+
| "fieldCapabilities"
|
|
105
|
+
| "fileCreator"
|
|
106
|
+
| "bloodPressure"
|
|
107
|
+
| "speedZone"
|
|
108
|
+
| "monitoring"
|
|
109
|
+
| "trainingFile"
|
|
110
|
+
| "hrv"
|
|
111
|
+
| "antRx"
|
|
112
|
+
| "antTx"
|
|
113
|
+
| "antChannelId"
|
|
114
|
+
| "length"
|
|
115
|
+
| "monitoringInfo"
|
|
116
|
+
| "pad"
|
|
117
|
+
| "slaveDevice"
|
|
118
|
+
| "connectivity"
|
|
119
|
+
| "weatherConditions"
|
|
120
|
+
| "weatherAlert"
|
|
121
|
+
| "cadenceZone"
|
|
122
|
+
| "hr"
|
|
123
|
+
| "segmentLap"
|
|
124
|
+
| "memoGlob"
|
|
125
|
+
| "segmentId"
|
|
126
|
+
| "segmentLeaderboardEntry"
|
|
127
|
+
| "segmentPoint"
|
|
128
|
+
| "segmentFile"
|
|
129
|
+
| "workoutSession"
|
|
130
|
+
| "watchfaceSettings"
|
|
131
|
+
| "gpsMetadata"
|
|
132
|
+
| "cameraEvent"
|
|
133
|
+
| "timestampCorrelation"
|
|
134
|
+
| "gyroscopeData"
|
|
135
|
+
| "accelerometerData"
|
|
136
|
+
| "threeDSensorCalibration"
|
|
137
|
+
| "videoFrame"
|
|
138
|
+
| "obdiiData"
|
|
139
|
+
| "nmeaSentence"
|
|
140
|
+
| "aviationAttitude"
|
|
141
|
+
| "video"
|
|
142
|
+
| "videoTitle"
|
|
143
|
+
| "videoDescription"
|
|
144
|
+
| "videoClip"
|
|
145
|
+
| "ohrSettings"
|
|
146
|
+
| "exdScreenConfiguration"
|
|
147
|
+
| "exdDataFieldConfiguration"
|
|
148
|
+
| "exdDataConceptConfiguration"
|
|
149
|
+
| "fieldDescription"
|
|
150
|
+
| "developerDataId"
|
|
151
|
+
| "magnetometerData"
|
|
152
|
+
| "barometerData"
|
|
153
|
+
| "oneDSensorCalibration"
|
|
154
|
+
| "monitoringHrData"
|
|
155
|
+
| "timeInZone"
|
|
156
|
+
| "set"
|
|
157
|
+
| "stressLevel"
|
|
158
|
+
| "maxMetData"
|
|
159
|
+
| "diveSettings"
|
|
160
|
+
| "diveGas"
|
|
161
|
+
| "diveAlarm"
|
|
162
|
+
| "exerciseTitle"
|
|
163
|
+
| "diveSummary"
|
|
164
|
+
| "spo2Data"
|
|
165
|
+
| "sleepLevel"
|
|
166
|
+
| "jump"
|
|
167
|
+
| "aadAccelFeatures"
|
|
168
|
+
| "beatIntervals"
|
|
169
|
+
| "respirationRate"
|
|
170
|
+
| "hsaAccelerometerData"
|
|
171
|
+
| "hsaStepData"
|
|
172
|
+
| "hsaSpo2Data"
|
|
173
|
+
| "hsaStressData"
|
|
174
|
+
| "hsaRespirationData"
|
|
175
|
+
| "hsaHeartRateData"
|
|
176
|
+
| "split"
|
|
177
|
+
| "splitSummary"
|
|
178
|
+
| "hsaBodyBatteryData"
|
|
179
|
+
| "hsaEvent"
|
|
180
|
+
| "climbPro"
|
|
181
|
+
| "tankUpdate"
|
|
182
|
+
| "tankSummary"
|
|
183
|
+
| "sleepAssessment"
|
|
184
|
+
| "hrvStatusSummary"
|
|
185
|
+
| "hrvValue"
|
|
186
|
+
| "rawBbi"
|
|
187
|
+
| "deviceAuxBatteryInfo"
|
|
188
|
+
| "hsaGyroscopeData"
|
|
189
|
+
| "chronoShotSession"
|
|
190
|
+
| "chronoShotData"
|
|
191
|
+
| "hsaConfigurationData"
|
|
192
|
+
| "diveApneaAlarm"
|
|
193
|
+
| "skinTempOvernight"
|
|
194
|
+
| "hsaWristTemperatureData" /** Message number for the HSA wrist temperature data message */
|
|
195
|
+
| "napEvent"
|
|
196
|
+
| "sleepDisruptionSeverityPeriod"
|
|
197
|
+
| "sleepDisruptionOvernightSeverity"
|
|
198
|
+
| "mfgRangeMin" /** 0xFF00 - 0xFFFE reserved for manufacturer specific messages */
|
|
199
|
+
| "mfgRangeMax" /** 0xFF00 - 0xFFFE reserved for manufacturer specific messages */;
|
|
200
|
+
|
|
201
|
+
export type Checksum = number
|
|
202
|
+
| "clear" /** Allows clear of checksum for flash memory where can only write 1 to 0 without erasing sector. */
|
|
203
|
+
| "ok" /** Set to mark checksum as valid if computes to invalid values 0 or 0xFF. Checksum can also be set to ok to save encoding computation time. */;
|
|
204
|
+
|
|
205
|
+
export type FileFlags = number
|
|
206
|
+
| "read"
|
|
207
|
+
| "write"
|
|
208
|
+
| "erase";
|
|
209
|
+
|
|
210
|
+
export type MesgCount = number
|
|
211
|
+
| "numPerFile"
|
|
212
|
+
| "maxPerFile"
|
|
213
|
+
| "maxPerFileType";
|
|
214
|
+
|
|
215
|
+
/** seconds since UTC 00:00 Dec 31 1989 */
|
|
216
|
+
export type DateTime = number | Date
|
|
217
|
+
| "min" /** if date_time is < 0x10000000 then it is system time (seconds from device power on) */;
|
|
218
|
+
|
|
219
|
+
/** seconds since 00:00 Dec 31 1989 in local time zone */
|
|
220
|
+
export type LocalDateTime = number | Date
|
|
221
|
+
| "min" /** if date_time is < 0x10000000 then it is system time (seconds from device power on) */;
|
|
222
|
+
|
|
223
|
+
export type MessageIndex = number
|
|
224
|
+
| "selected" /** message is selected if set */
|
|
225
|
+
| "reserved" /** reserved (default 0) */
|
|
226
|
+
| "mask" /** index */;
|
|
227
|
+
|
|
228
|
+
export type DeviceIndex = number
|
|
229
|
+
| "creator" /** Creator of the file is always device index 0. */;
|
|
230
|
+
|
|
231
|
+
export type Gender = number
|
|
232
|
+
| "female"
|
|
233
|
+
| "male";
|
|
234
|
+
|
|
235
|
+
export type Language = number
|
|
236
|
+
| "english"
|
|
237
|
+
| "french"
|
|
238
|
+
| "italian"
|
|
239
|
+
| "german"
|
|
240
|
+
| "spanish"
|
|
241
|
+
| "croatian"
|
|
242
|
+
| "czech"
|
|
243
|
+
| "danish"
|
|
244
|
+
| "dutch"
|
|
245
|
+
| "finnish"
|
|
246
|
+
| "greek"
|
|
247
|
+
| "hungarian"
|
|
248
|
+
| "norwegian"
|
|
249
|
+
| "polish"
|
|
250
|
+
| "portuguese"
|
|
251
|
+
| "slovakian"
|
|
252
|
+
| "slovenian"
|
|
253
|
+
| "swedish"
|
|
254
|
+
| "russian"
|
|
255
|
+
| "turkish"
|
|
256
|
+
| "latvian"
|
|
257
|
+
| "ukrainian"
|
|
258
|
+
| "arabic"
|
|
259
|
+
| "farsi"
|
|
260
|
+
| "bulgarian"
|
|
261
|
+
| "romanian"
|
|
262
|
+
| "chinese"
|
|
263
|
+
| "japanese"
|
|
264
|
+
| "korean"
|
|
265
|
+
| "taiwanese"
|
|
266
|
+
| "thai"
|
|
267
|
+
| "hebrew"
|
|
268
|
+
| "brazilianPortuguese"
|
|
269
|
+
| "indonesian"
|
|
270
|
+
| "malaysian"
|
|
271
|
+
| "vietnamese"
|
|
272
|
+
| "burmese"
|
|
273
|
+
| "mongolian"
|
|
274
|
+
| "custom";
|
|
275
|
+
|
|
276
|
+
/** Bit field corresponding to language enum type (1 << language). */
|
|
277
|
+
export type LanguageBits0 = number
|
|
278
|
+
| "english"
|
|
279
|
+
| "french"
|
|
280
|
+
| "italian"
|
|
281
|
+
| "german"
|
|
282
|
+
| "spanish"
|
|
283
|
+
| "croatian"
|
|
284
|
+
| "czech"
|
|
285
|
+
| "danish";
|
|
286
|
+
|
|
287
|
+
export type LanguageBits1 = number
|
|
288
|
+
| "dutch"
|
|
289
|
+
| "finnish"
|
|
290
|
+
| "greek"
|
|
291
|
+
| "hungarian"
|
|
292
|
+
| "norwegian"
|
|
293
|
+
| "polish"
|
|
294
|
+
| "portuguese"
|
|
295
|
+
| "slovakian";
|
|
296
|
+
|
|
297
|
+
export type LanguageBits2 = number
|
|
298
|
+
| "slovenian"
|
|
299
|
+
| "swedish"
|
|
300
|
+
| "russian"
|
|
301
|
+
| "turkish"
|
|
302
|
+
| "latvian"
|
|
303
|
+
| "ukrainian"
|
|
304
|
+
| "arabic"
|
|
305
|
+
| "farsi";
|
|
306
|
+
|
|
307
|
+
export type LanguageBits3 = number
|
|
308
|
+
| "bulgarian"
|
|
309
|
+
| "romanian"
|
|
310
|
+
| "chinese"
|
|
311
|
+
| "japanese"
|
|
312
|
+
| "korean"
|
|
313
|
+
| "taiwanese"
|
|
314
|
+
| "thai"
|
|
315
|
+
| "hebrew";
|
|
316
|
+
|
|
317
|
+
export type LanguageBits4 = number
|
|
318
|
+
| "brazilianPortuguese"
|
|
319
|
+
| "indonesian"
|
|
320
|
+
| "malaysian"
|
|
321
|
+
| "vietnamese"
|
|
322
|
+
| "burmese"
|
|
323
|
+
| "mongolian";
|
|
324
|
+
|
|
325
|
+
export type TimeZone = number
|
|
326
|
+
| "almaty"
|
|
327
|
+
| "bangkok"
|
|
328
|
+
| "bombay"
|
|
329
|
+
| "brasilia"
|
|
330
|
+
| "cairo"
|
|
331
|
+
| "capeVerdeIs"
|
|
332
|
+
| "darwin"
|
|
333
|
+
| "eniwetok"
|
|
334
|
+
| "fiji"
|
|
335
|
+
| "hongKong"
|
|
336
|
+
| "islamabad"
|
|
337
|
+
| "kabul"
|
|
338
|
+
| "magadan"
|
|
339
|
+
| "midAtlantic"
|
|
340
|
+
| "moscow"
|
|
341
|
+
| "muscat"
|
|
342
|
+
| "newfoundland"
|
|
343
|
+
| "samoa"
|
|
344
|
+
| "sydney"
|
|
345
|
+
| "tehran"
|
|
346
|
+
| "tokyo"
|
|
347
|
+
| "usAlaska"
|
|
348
|
+
| "usAtlantic"
|
|
349
|
+
| "usCentral"
|
|
350
|
+
| "usEastern"
|
|
351
|
+
| "usHawaii"
|
|
352
|
+
| "usMountain"
|
|
353
|
+
| "usPacific"
|
|
354
|
+
| "other"
|
|
355
|
+
| "auckland"
|
|
356
|
+
| "kathmandu"
|
|
357
|
+
| "europeWesternWet"
|
|
358
|
+
| "europeCentralCet"
|
|
359
|
+
| "europeEasternEet"
|
|
360
|
+
| "jakarta"
|
|
361
|
+
| "perth"
|
|
362
|
+
| "adelaide"
|
|
363
|
+
| "brisbane"
|
|
364
|
+
| "tasmania"
|
|
365
|
+
| "iceland"
|
|
366
|
+
| "amsterdam"
|
|
367
|
+
| "athens"
|
|
368
|
+
| "barcelona"
|
|
369
|
+
| "berlin"
|
|
370
|
+
| "brussels"
|
|
371
|
+
| "budapest"
|
|
372
|
+
| "copenhagen"
|
|
373
|
+
| "dublin"
|
|
374
|
+
| "helsinki"
|
|
375
|
+
| "lisbon"
|
|
376
|
+
| "london"
|
|
377
|
+
| "madrid"
|
|
378
|
+
| "munich"
|
|
379
|
+
| "oslo"
|
|
380
|
+
| "paris"
|
|
381
|
+
| "prague"
|
|
382
|
+
| "reykjavik"
|
|
383
|
+
| "rome"
|
|
384
|
+
| "stockholm"
|
|
385
|
+
| "vienna"
|
|
386
|
+
| "warsaw"
|
|
387
|
+
| "zurich"
|
|
388
|
+
| "quebec"
|
|
389
|
+
| "ontario"
|
|
390
|
+
| "manitoba"
|
|
391
|
+
| "saskatchewan"
|
|
392
|
+
| "alberta"
|
|
393
|
+
| "britishColumbia"
|
|
394
|
+
| "boise"
|
|
395
|
+
| "boston"
|
|
396
|
+
| "chicago"
|
|
397
|
+
| "dallas"
|
|
398
|
+
| "denver"
|
|
399
|
+
| "kansasCity"
|
|
400
|
+
| "lasVegas"
|
|
401
|
+
| "losAngeles"
|
|
402
|
+
| "miami"
|
|
403
|
+
| "minneapolis"
|
|
404
|
+
| "newYork"
|
|
405
|
+
| "newOrleans"
|
|
406
|
+
| "phoenix"
|
|
407
|
+
| "santaFe"
|
|
408
|
+
| "seattle"
|
|
409
|
+
| "washingtonDc"
|
|
410
|
+
| "usArizona"
|
|
411
|
+
| "chita"
|
|
412
|
+
| "ekaterinburg"
|
|
413
|
+
| "irkutsk"
|
|
414
|
+
| "kaliningrad"
|
|
415
|
+
| "krasnoyarsk"
|
|
416
|
+
| "novosibirsk"
|
|
417
|
+
| "petropavlovskKamchatskiy"
|
|
418
|
+
| "samara"
|
|
419
|
+
| "vladivostok"
|
|
420
|
+
| "mexicoCentral"
|
|
421
|
+
| "mexicoMountain"
|
|
422
|
+
| "mexicoPacific"
|
|
423
|
+
| "capeTown"
|
|
424
|
+
| "winkhoek"
|
|
425
|
+
| "lagos"
|
|
426
|
+
| "riyahd"
|
|
427
|
+
| "venezuela"
|
|
428
|
+
| "australiaLh"
|
|
429
|
+
| "santiago"
|
|
430
|
+
| "manual"
|
|
431
|
+
| "automatic";
|
|
432
|
+
|
|
433
|
+
export type DisplayMeasure = number
|
|
434
|
+
| "metric"
|
|
435
|
+
| "statute"
|
|
436
|
+
| "nautical";
|
|
437
|
+
|
|
438
|
+
export type DisplayHeart = number
|
|
439
|
+
| "bpm"
|
|
440
|
+
| "max"
|
|
441
|
+
| "reserve";
|
|
442
|
+
|
|
443
|
+
export type DisplayPower = number
|
|
444
|
+
| "watts"
|
|
445
|
+
| "percentFtp";
|
|
446
|
+
|
|
447
|
+
export type DisplayPosition = number
|
|
448
|
+
| "degree" /** dd.dddddd */
|
|
449
|
+
| "degreeMinute" /** dddmm.mmm */
|
|
450
|
+
| "degreeMinuteSecond" /** dddmmss */
|
|
451
|
+
| "austrianGrid" /** Austrian Grid (BMN) */
|
|
452
|
+
| "britishGrid" /** British National Grid */
|
|
453
|
+
| "dutchGrid" /** Dutch grid system */
|
|
454
|
+
| "hungarianGrid" /** Hungarian grid system */
|
|
455
|
+
| "finnishGrid" /** Finnish grid system Zone3 KKJ27 */
|
|
456
|
+
| "germanGrid" /** Gausss Krueger (German) */
|
|
457
|
+
| "icelandicGrid" /** Icelandic Grid */
|
|
458
|
+
| "indonesianEquatorial" /** Indonesian Equatorial LCO */
|
|
459
|
+
| "indonesianIrian" /** Indonesian Irian LCO */
|
|
460
|
+
| "indonesianSouthern" /** Indonesian Southern LCO */
|
|
461
|
+
| "indiaZone0" /** India zone 0 */
|
|
462
|
+
| "indiaZoneIA" /** India zone IA */
|
|
463
|
+
| "indiaZoneIB" /** India zone IB */
|
|
464
|
+
| "indiaZoneIIA" /** India zone IIA */
|
|
465
|
+
| "indiaZoneIIB" /** India zone IIB */
|
|
466
|
+
| "indiaZoneIIIA" /** India zone IIIA */
|
|
467
|
+
| "indiaZoneIIIB" /** India zone IIIB */
|
|
468
|
+
| "indiaZoneIVA" /** India zone IVA */
|
|
469
|
+
| "indiaZoneIVB" /** India zone IVB */
|
|
470
|
+
| "irishTransverse" /** Irish Transverse Mercator */
|
|
471
|
+
| "irishGrid" /** Irish Grid */
|
|
472
|
+
| "loran" /** Loran TD */
|
|
473
|
+
| "maidenheadGrid" /** Maidenhead grid system */
|
|
474
|
+
| "mgrsGrid" /** MGRS grid system */
|
|
475
|
+
| "newZealandGrid" /** New Zealand grid system */
|
|
476
|
+
| "newZealandTransverse" /** New Zealand Transverse Mercator */
|
|
477
|
+
| "qatarGrid" /** Qatar National Grid */
|
|
478
|
+
| "modifiedSwedishGrid" /** Modified RT-90 (Sweden) */
|
|
479
|
+
| "swedishGrid" /** RT-90 (Sweden) */
|
|
480
|
+
| "southAfricanGrid" /** South African Grid */
|
|
481
|
+
| "swissGrid" /** Swiss CH-1903 grid */
|
|
482
|
+
| "taiwanGrid" /** Taiwan Grid */
|
|
483
|
+
| "unitedStatesGrid" /** United States National Grid */
|
|
484
|
+
| "utmUpsGrid" /** UTM/UPS grid system */
|
|
485
|
+
| "westMalayan" /** West Malayan RSO */
|
|
486
|
+
| "borneoRso" /** Borneo RSO */
|
|
487
|
+
| "estonianGrid" /** Estonian grid system */
|
|
488
|
+
| "latvianGrid" /** Latvian Transverse Mercator */
|
|
489
|
+
| "swedishRef99Grid" /** Reference Grid 99 TM (Swedish) */;
|
|
490
|
+
|
|
491
|
+
export type Switch = number
|
|
492
|
+
| "off"
|
|
493
|
+
| "on"
|
|
494
|
+
| "auto";
|
|
495
|
+
|
|
496
|
+
export type Sport = number
|
|
497
|
+
| "generic"
|
|
498
|
+
| "running"
|
|
499
|
+
| "cycling"
|
|
500
|
+
| "transition" /** Mulitsport transition */
|
|
501
|
+
| "fitnessEquipment"
|
|
502
|
+
| "swimming"
|
|
503
|
+
| "basketball"
|
|
504
|
+
| "soccer"
|
|
505
|
+
| "tennis"
|
|
506
|
+
| "americanFootball"
|
|
507
|
+
| "training"
|
|
508
|
+
| "walking"
|
|
509
|
+
| "crossCountrySkiing"
|
|
510
|
+
| "alpineSkiing"
|
|
511
|
+
| "snowboarding"
|
|
512
|
+
| "rowing"
|
|
513
|
+
| "mountaineering"
|
|
514
|
+
| "hiking"
|
|
515
|
+
| "multisport"
|
|
516
|
+
| "paddling"
|
|
517
|
+
| "flying"
|
|
518
|
+
| "eBiking"
|
|
519
|
+
| "motorcycling"
|
|
520
|
+
| "boating"
|
|
521
|
+
| "driving"
|
|
522
|
+
| "golf"
|
|
523
|
+
| "hangGliding"
|
|
524
|
+
| "horsebackRiding"
|
|
525
|
+
| "hunting"
|
|
526
|
+
| "fishing"
|
|
527
|
+
| "inlineSkating"
|
|
528
|
+
| "rockClimbing"
|
|
529
|
+
| "sailing"
|
|
530
|
+
| "iceSkating"
|
|
531
|
+
| "skyDiving"
|
|
532
|
+
| "snowshoeing"
|
|
533
|
+
| "snowmobiling"
|
|
534
|
+
| "standUpPaddleboarding"
|
|
535
|
+
| "surfing"
|
|
536
|
+
| "wakeboarding"
|
|
537
|
+
| "waterSkiing"
|
|
538
|
+
| "kayaking"
|
|
539
|
+
| "rafting"
|
|
540
|
+
| "windsurfing"
|
|
541
|
+
| "kitesurfing"
|
|
542
|
+
| "tactical"
|
|
543
|
+
| "jumpmaster"
|
|
544
|
+
| "boxing"
|
|
545
|
+
| "floorClimbing"
|
|
546
|
+
| "baseball"
|
|
547
|
+
| "diving"
|
|
548
|
+
| "shooting" /** Sport Shooting bits, set here for sport_bits alignment */
|
|
549
|
+
| "winterSport"
|
|
550
|
+
| "grinding" /** Sailing position, operating manual winches to power boat controls */
|
|
551
|
+
| "hiit"
|
|
552
|
+
| "videoGaming"
|
|
553
|
+
| "racket"
|
|
554
|
+
| "wheelchairPushWalk"
|
|
555
|
+
| "wheelchairPushRun"
|
|
556
|
+
| "meditation"
|
|
557
|
+
| "paraSport"
|
|
558
|
+
| "discGolf"
|
|
559
|
+
| "teamSport"
|
|
560
|
+
| "cricket"
|
|
561
|
+
| "rugby"
|
|
562
|
+
| "hockey"
|
|
563
|
+
| "lacrosse"
|
|
564
|
+
| "volleyball"
|
|
565
|
+
| "waterTubing"
|
|
566
|
+
| "wakesurfing"
|
|
567
|
+
| "waterSport"
|
|
568
|
+
| "archery"
|
|
569
|
+
| "mixedMartialArts"
|
|
570
|
+
| "motorSports"
|
|
571
|
+
| "snorkeling"
|
|
572
|
+
| "dance"
|
|
573
|
+
| "jumpRope"
|
|
574
|
+
| "poolApnea"
|
|
575
|
+
| "mobility"
|
|
576
|
+
| "geocaching"
|
|
577
|
+
| "canoeing"
|
|
578
|
+
| "all" /** All is for goals only to include all sports. */;
|
|
579
|
+
|
|
580
|
+
/** Bit field corresponding to sport enum type (1 << sport). */
|
|
581
|
+
export type SportBits0 = number
|
|
582
|
+
| "generic"
|
|
583
|
+
| "running"
|
|
584
|
+
| "cycling"
|
|
585
|
+
| "transition" /** Mulitsport transition */
|
|
586
|
+
| "fitnessEquipment"
|
|
587
|
+
| "swimming"
|
|
588
|
+
| "basketball"
|
|
589
|
+
| "soccer";
|
|
590
|
+
|
|
591
|
+
/** Bit field corresponding to sport enum type (1 << (sport-8)). */
|
|
592
|
+
export type SportBits1 = number
|
|
593
|
+
| "tennis"
|
|
594
|
+
| "americanFootball"
|
|
595
|
+
| "training"
|
|
596
|
+
| "walking"
|
|
597
|
+
| "crossCountrySkiing"
|
|
598
|
+
| "alpineSkiing"
|
|
599
|
+
| "snowboarding"
|
|
600
|
+
| "rowing";
|
|
601
|
+
|
|
602
|
+
/** Bit field corresponding to sport enum type (1 << (sport-16)). */
|
|
603
|
+
export type SportBits2 = number
|
|
604
|
+
| "mountaineering"
|
|
605
|
+
| "hiking"
|
|
606
|
+
| "multisport"
|
|
607
|
+
| "paddling"
|
|
608
|
+
| "flying"
|
|
609
|
+
| "eBiking"
|
|
610
|
+
| "motorcycling"
|
|
611
|
+
| "boating";
|
|
612
|
+
|
|
613
|
+
/** Bit field corresponding to sport enum type (1 << (sport-24)). */
|
|
614
|
+
export type SportBits3 = number
|
|
615
|
+
| "driving"
|
|
616
|
+
| "golf"
|
|
617
|
+
| "hangGliding"
|
|
618
|
+
| "horsebackRiding"
|
|
619
|
+
| "hunting"
|
|
620
|
+
| "fishing"
|
|
621
|
+
| "inlineSkating"
|
|
622
|
+
| "rockClimbing";
|
|
623
|
+
|
|
624
|
+
/** Bit field corresponding to sport enum type (1 << (sport-32)). */
|
|
625
|
+
export type SportBits4 = number
|
|
626
|
+
| "sailing"
|
|
627
|
+
| "iceSkating"
|
|
628
|
+
| "skyDiving"
|
|
629
|
+
| "snowshoeing"
|
|
630
|
+
| "snowmobiling"
|
|
631
|
+
| "standUpPaddleboarding"
|
|
632
|
+
| "surfing"
|
|
633
|
+
| "wakeboarding";
|
|
634
|
+
|
|
635
|
+
/** Bit field corresponding to sport enum type (1 << (sport-40)). */
|
|
636
|
+
export type SportBits5 = number
|
|
637
|
+
| "waterSkiing"
|
|
638
|
+
| "kayaking"
|
|
639
|
+
| "rafting"
|
|
640
|
+
| "windsurfing"
|
|
641
|
+
| "kitesurfing"
|
|
642
|
+
| "tactical"
|
|
643
|
+
| "jumpmaster"
|
|
644
|
+
| "boxing";
|
|
645
|
+
|
|
646
|
+
/** Bit field corresponding to sport enum type (1 << (sport-48)). */
|
|
647
|
+
export type SportBits6 = number
|
|
648
|
+
| "floorClimbing";
|
|
649
|
+
|
|
650
|
+
export type SubSport = number
|
|
651
|
+
| "generic"
|
|
652
|
+
| "treadmill" /** Run/Fitness Equipment */
|
|
653
|
+
| "street" /** Run */
|
|
654
|
+
| "trail" /** Run */
|
|
655
|
+
| "track" /** Run */
|
|
656
|
+
| "spin" /** Cycling */
|
|
657
|
+
| "indoorCycling" /** Cycling/Fitness Equipment */
|
|
658
|
+
| "road" /** Cycling */
|
|
659
|
+
| "mountain" /** Cycling */
|
|
660
|
+
| "downhill" /** Cycling */
|
|
661
|
+
| "recumbent" /** Cycling */
|
|
662
|
+
| "cyclocross" /** Cycling */
|
|
663
|
+
| "handCycling" /** Cycling */
|
|
664
|
+
| "trackCycling" /** Cycling */
|
|
665
|
+
| "indoorRowing" /** Fitness Equipment */
|
|
666
|
+
| "elliptical" /** Fitness Equipment */
|
|
667
|
+
| "stairClimbing" /** Fitness Equipment */
|
|
668
|
+
| "lapSwimming" /** Swimming */
|
|
669
|
+
| "openWater" /** Swimming */
|
|
670
|
+
| "flexibilityTraining" /** Training */
|
|
671
|
+
| "strengthTraining" /** Training */
|
|
672
|
+
| "warmUp" /** Tennis */
|
|
673
|
+
| "match" /** Tennis */
|
|
674
|
+
| "exercise" /** Tennis */
|
|
675
|
+
| "challenge"
|
|
676
|
+
| "indoorSkiing" /** Fitness Equipment */
|
|
677
|
+
| "cardioTraining" /** Training */
|
|
678
|
+
| "indoorWalking" /** Walking/Fitness Equipment */
|
|
679
|
+
| "eBikeFitness" /** E-Biking */
|
|
680
|
+
| "bmx" /** Cycling */
|
|
681
|
+
| "casualWalking" /** Walking */
|
|
682
|
+
| "speedWalking" /** Walking */
|
|
683
|
+
| "bikeToRunTransition" /** Transition */
|
|
684
|
+
| "runToBikeTransition" /** Transition */
|
|
685
|
+
| "swimToBikeTransition" /** Transition */
|
|
686
|
+
| "atv" /** Motorcycling */
|
|
687
|
+
| "motocross" /** Motorcycling */
|
|
688
|
+
| "backcountry" /** Alpine Skiing/Snowboarding */
|
|
689
|
+
| "resort" /** Alpine Skiing/Snowboarding */
|
|
690
|
+
| "rcDrone" /** Flying */
|
|
691
|
+
| "wingsuit" /** Flying */
|
|
692
|
+
| "whitewater" /** Kayaking/Rafting */
|
|
693
|
+
| "skateSkiing" /** Cross Country Skiing */
|
|
694
|
+
| "yoga" /** Training */
|
|
695
|
+
| "pilates" /** Fitness Equipment */
|
|
696
|
+
| "indoorRunning" /** Run */
|
|
697
|
+
| "gravelCycling" /** Cycling */
|
|
698
|
+
| "eBikeMountain" /** Cycling */
|
|
699
|
+
| "commuting" /** Cycling */
|
|
700
|
+
| "mixedSurface" /** Cycling */
|
|
701
|
+
| "navigate"
|
|
702
|
+
| "trackMe"
|
|
703
|
+
| "map"
|
|
704
|
+
| "singleGasDiving" /** Diving */
|
|
705
|
+
| "multiGasDiving" /** Diving */
|
|
706
|
+
| "gaugeDiving" /** Diving */
|
|
707
|
+
| "apneaDiving" /** Diving */
|
|
708
|
+
| "apneaHunting" /** Diving */
|
|
709
|
+
| "virtualActivity"
|
|
710
|
+
| "obstacle" /** Used for events where participants run, crawl through mud, climb over walls, etc. */
|
|
711
|
+
| "breathing"
|
|
712
|
+
| "ccrDiving" /** Diving w/ closed circuit rebreather */
|
|
713
|
+
| "sailRace" /** Sailing */
|
|
714
|
+
| "expedition" /** Generic */
|
|
715
|
+
| "ultra" /** Ultramarathon */
|
|
716
|
+
| "indoorClimbing" /** Climbing */
|
|
717
|
+
| "bouldering" /** Climbing */
|
|
718
|
+
| "hiit" /** High Intensity Interval Training */
|
|
719
|
+
| "indoorGrinding" /** Sailing position, operating manual winches to power boat controls */
|
|
720
|
+
| "huntingWithDogs" /** Hunting */
|
|
721
|
+
| "amrap" /** HIIT */
|
|
722
|
+
| "emom" /** HIIT */
|
|
723
|
+
| "tabata" /** HIIT */
|
|
724
|
+
| "esport" /** Video Gaming, Cycling, etc. */
|
|
725
|
+
| "triathlon" /** Multisport */
|
|
726
|
+
| "duathlon" /** Multisport */
|
|
727
|
+
| "brick" /** Multisport */
|
|
728
|
+
| "swimRun" /** Multisport */
|
|
729
|
+
| "adventureRace" /** Multisport */
|
|
730
|
+
| "truckerWorkout" /** DEZL trucker workout training sport */
|
|
731
|
+
| "pickleball" /** Racket */
|
|
732
|
+
| "padel" /** Racket */
|
|
733
|
+
| "indoorWheelchairWalk"
|
|
734
|
+
| "indoorWheelchairRun"
|
|
735
|
+
| "indoorHandCycling"
|
|
736
|
+
| "field" /** Hockey */
|
|
737
|
+
| "ice" /** Hockey */
|
|
738
|
+
| "ultimate" /** Disc */
|
|
739
|
+
| "platform" /** Racket */
|
|
740
|
+
| "squash" /** Racket */
|
|
741
|
+
| "badminton" /** Racket */
|
|
742
|
+
| "racquetball" /** Racket */
|
|
743
|
+
| "tableTennis" /** Racket */
|
|
744
|
+
| "overland"
|
|
745
|
+
| "trollingMotor" /** Generic */
|
|
746
|
+
| "flyCanopy" /** Flying */
|
|
747
|
+
| "flyParaglide" /** Flying */
|
|
748
|
+
| "flyParamotor" /** Flying */
|
|
749
|
+
| "flyPressurized" /** Flying */
|
|
750
|
+
| "flyNavigate" /** Flying */
|
|
751
|
+
| "flyTimer" /** Flying */
|
|
752
|
+
| "flyAltimeter" /** Flying */
|
|
753
|
+
| "flyWx" /** Flying */
|
|
754
|
+
| "flyVfr" /** Flying */
|
|
755
|
+
| "flyIfr" /** Flying */
|
|
756
|
+
| "dynamicApnea"
|
|
757
|
+
| "enduro" /** Cycling */
|
|
758
|
+
| "rucking" /** Hiking */
|
|
759
|
+
| "rally" /** Motor sports */
|
|
760
|
+
| "poolTriathlon" /** Multisport */
|
|
761
|
+
| "eBikeEnduro" /** Cycling */
|
|
762
|
+
| "all";
|
|
763
|
+
|
|
764
|
+
export type SportEvent = number
|
|
765
|
+
| "uncategorized"
|
|
766
|
+
| "geocaching"
|
|
767
|
+
| "fitness"
|
|
768
|
+
| "recreation"
|
|
769
|
+
| "race"
|
|
770
|
+
| "specialEvent"
|
|
771
|
+
| "training"
|
|
772
|
+
| "transportation"
|
|
773
|
+
| "touring";
|
|
774
|
+
|
|
775
|
+
export type Activity = number
|
|
776
|
+
| "manual"
|
|
777
|
+
| "autoMultiSport";
|
|
778
|
+
|
|
779
|
+
export type Intensity = number
|
|
780
|
+
| "active"
|
|
781
|
+
| "rest"
|
|
782
|
+
| "warmup"
|
|
783
|
+
| "cooldown"
|
|
784
|
+
| "recovery"
|
|
785
|
+
| "interval"
|
|
786
|
+
| "other";
|
|
787
|
+
|
|
788
|
+
export type SessionTrigger = number
|
|
789
|
+
| "activityEnd"
|
|
790
|
+
| "manual" /** User changed sport. */
|
|
791
|
+
| "autoMultiSport" /** Auto multi-sport feature is enabled and user pressed lap button to advance session. */
|
|
792
|
+
| "fitnessEquipment" /** Auto sport change caused by user linking to fitness equipment. */;
|
|
793
|
+
|
|
794
|
+
export type AutolapTrigger = number
|
|
795
|
+
| "time"
|
|
796
|
+
| "distance"
|
|
797
|
+
| "positionStart"
|
|
798
|
+
| "positionLap"
|
|
799
|
+
| "positionWaypoint"
|
|
800
|
+
| "positionMarked"
|
|
801
|
+
| "off"
|
|
802
|
+
| "autoSelect";
|
|
803
|
+
|
|
804
|
+
export type LapTrigger = number
|
|
805
|
+
| "manual"
|
|
806
|
+
| "time"
|
|
807
|
+
| "distance"
|
|
808
|
+
| "positionStart"
|
|
809
|
+
| "positionLap"
|
|
810
|
+
| "positionWaypoint"
|
|
811
|
+
| "positionMarked"
|
|
812
|
+
| "sessionEnd"
|
|
813
|
+
| "fitnessEquipment";
|
|
814
|
+
|
|
815
|
+
export type TimeMode = number
|
|
816
|
+
| "hour12"
|
|
817
|
+
| "hour24" /** Does not use a leading zero and has a colon */
|
|
818
|
+
| "military" /** Uses a leading zero and does not have a colon */
|
|
819
|
+
| "hour12WithSeconds"
|
|
820
|
+
| "hour24WithSeconds"
|
|
821
|
+
| "utc";
|
|
822
|
+
|
|
823
|
+
export type BacklightMode = number
|
|
824
|
+
| "off"
|
|
825
|
+
| "manual"
|
|
826
|
+
| "keyAndMessages"
|
|
827
|
+
| "autoBrightness"
|
|
828
|
+
| "smartNotifications"
|
|
829
|
+
| "keyAndMessagesNight"
|
|
830
|
+
| "keyAndMessagesAndSmartNotifications";
|
|
831
|
+
|
|
832
|
+
export type DateMode = number
|
|
833
|
+
| "dayMonth"
|
|
834
|
+
| "monthDay";
|
|
835
|
+
|
|
836
|
+
/** Timeout in seconds. */
|
|
837
|
+
export type BacklightTimeout = number
|
|
838
|
+
| "infinite" /** Backlight stays on forever. */;
|
|
839
|
+
|
|
840
|
+
export type Event = number
|
|
841
|
+
| "timer" /** Group 0. Start / stop_all */
|
|
842
|
+
| "workout" /** start / stop */
|
|
843
|
+
| "workoutStep" /** Start at beginning of workout. Stop at end of each step. */
|
|
844
|
+
| "powerDown" /** stop_all group 0 */
|
|
845
|
+
| "powerUp" /** stop_all group 0 */
|
|
846
|
+
| "offCourse" /** start / stop group 0 */
|
|
847
|
+
| "session" /** Stop at end of each session. */
|
|
848
|
+
| "lap" /** Stop at end of each lap. */
|
|
849
|
+
| "coursePoint" /** marker */
|
|
850
|
+
| "battery" /** marker */
|
|
851
|
+
| "virtualPartnerPace" /** Group 1. Start at beginning of activity if VP enabled, when VP pace is changed during activity or VP enabled mid activity. stop_disable when VP disabled. */
|
|
852
|
+
| "hrHighAlert" /** Group 0. Start / stop when in alert condition. */
|
|
853
|
+
| "hrLowAlert" /** Group 0. Start / stop when in alert condition. */
|
|
854
|
+
| "speedHighAlert" /** Group 0. Start / stop when in alert condition. */
|
|
855
|
+
| "speedLowAlert" /** Group 0. Start / stop when in alert condition. */
|
|
856
|
+
| "cadHighAlert" /** Group 0. Start / stop when in alert condition. */
|
|
857
|
+
| "cadLowAlert" /** Group 0. Start / stop when in alert condition. */
|
|
858
|
+
| "powerHighAlert" /** Group 0. Start / stop when in alert condition. */
|
|
859
|
+
| "powerLowAlert" /** Group 0. Start / stop when in alert condition. */
|
|
860
|
+
| "recoveryHr" /** marker */
|
|
861
|
+
| "batteryLow" /** marker */
|
|
862
|
+
| "timeDurationAlert" /** Group 1. Start if enabled mid activity (not required at start of activity). Stop when duration is reached. stop_disable if disabled. */
|
|
863
|
+
| "distanceDurationAlert" /** Group 1. Start if enabled mid activity (not required at start of activity). Stop when duration is reached. stop_disable if disabled. */
|
|
864
|
+
| "calorieDurationAlert" /** Group 1. Start if enabled mid activity (not required at start of activity). Stop when duration is reached. stop_disable if disabled. */
|
|
865
|
+
| "activity" /** Group 1.. Stop at end of activity. */
|
|
866
|
+
| "fitnessEquipment" /** marker */
|
|
867
|
+
| "length" /** Stop at end of each length. */
|
|
868
|
+
| "userMarker" /** marker */
|
|
869
|
+
| "sportPoint" /** marker */
|
|
870
|
+
| "calibration" /** start/stop/marker */
|
|
871
|
+
| "frontGearChange" /** marker */
|
|
872
|
+
| "rearGearChange" /** marker */
|
|
873
|
+
| "riderPositionChange" /** marker */
|
|
874
|
+
| "elevHighAlert" /** Group 0. Start / stop when in alert condition. */
|
|
875
|
+
| "elevLowAlert" /** Group 0. Start / stop when in alert condition. */
|
|
876
|
+
| "commTimeout" /** marker */
|
|
877
|
+
| "autoActivityDetect" /** marker */
|
|
878
|
+
| "diveAlert" /** marker */
|
|
879
|
+
| "diveGasSwitched" /** marker */
|
|
880
|
+
| "tankPressureReserve" /** marker */
|
|
881
|
+
| "tankPressureCritical" /** marker */
|
|
882
|
+
| "tankLost" /** marker */
|
|
883
|
+
| "radarThreatAlert" /** start/stop/marker */
|
|
884
|
+
| "tankBatteryLow" /** marker */
|
|
885
|
+
| "tankPodConnected" /** marker - tank pod has connected */
|
|
886
|
+
| "tankPodDisconnected" /** marker - tank pod has lost connection */;
|
|
887
|
+
|
|
888
|
+
export type EventType = number
|
|
889
|
+
| "start"
|
|
890
|
+
| "stop"
|
|
891
|
+
| "consecutiveDepreciated"
|
|
892
|
+
| "marker"
|
|
893
|
+
| "stopAll"
|
|
894
|
+
| "beginDepreciated"
|
|
895
|
+
| "endDepreciated"
|
|
896
|
+
| "endAllDepreciated"
|
|
897
|
+
| "stopDisable"
|
|
898
|
+
| "stopDisableAll";
|
|
899
|
+
|
|
900
|
+
/** timer event data */
|
|
901
|
+
export type TimerTrigger = number
|
|
902
|
+
| "manual"
|
|
903
|
+
| "auto"
|
|
904
|
+
| "fitnessEquipment";
|
|
905
|
+
|
|
906
|
+
/** fitness equipment event data */
|
|
907
|
+
export type FitnessEquipmentState = number
|
|
908
|
+
| "ready"
|
|
909
|
+
| "inUse"
|
|
910
|
+
| "paused"
|
|
911
|
+
| "unknown" /** lost connection to fitness equipment */;
|
|
912
|
+
|
|
913
|
+
export type Tone = number
|
|
914
|
+
| "off"
|
|
915
|
+
| "tone"
|
|
916
|
+
| "vibrate"
|
|
917
|
+
| "toneAndVibrate";
|
|
918
|
+
|
|
919
|
+
export type Autoscroll = number
|
|
920
|
+
| "none"
|
|
921
|
+
| "slow"
|
|
922
|
+
| "medium"
|
|
923
|
+
| "fast";
|
|
924
|
+
|
|
925
|
+
export type ActivityClass = number
|
|
926
|
+
| "level" /** 0 to 100 */
|
|
927
|
+
| "levelMax"
|
|
928
|
+
| "athlete";
|
|
929
|
+
|
|
930
|
+
export type HrZoneCalc = number
|
|
931
|
+
| "custom"
|
|
932
|
+
| "percentMaxHr"
|
|
933
|
+
| "percentHrr"
|
|
934
|
+
| "percentLthr";
|
|
935
|
+
|
|
936
|
+
export type PwrZoneCalc = number
|
|
937
|
+
| "custom"
|
|
938
|
+
| "percentFtp";
|
|
939
|
+
|
|
940
|
+
export type WktStepDuration = number
|
|
941
|
+
| "time"
|
|
942
|
+
| "distance"
|
|
943
|
+
| "hrLessThan"
|
|
944
|
+
| "hrGreaterThan"
|
|
945
|
+
| "calories"
|
|
946
|
+
| "open"
|
|
947
|
+
| "repeatUntilStepsCmplt"
|
|
948
|
+
| "repeatUntilTime"
|
|
949
|
+
| "repeatUntilDistance"
|
|
950
|
+
| "repeatUntilCalories"
|
|
951
|
+
| "repeatUntilHrLessThan"
|
|
952
|
+
| "repeatUntilHrGreaterThan"
|
|
953
|
+
| "repeatUntilPowerLessThan"
|
|
954
|
+
| "repeatUntilPowerGreaterThan"
|
|
955
|
+
| "powerLessThan"
|
|
956
|
+
| "powerGreaterThan"
|
|
957
|
+
| "trainingPeaksTss"
|
|
958
|
+
| "repeatUntilPowerLastLapLessThan"
|
|
959
|
+
| "repeatUntilMaxPowerLastLapLessThan"
|
|
960
|
+
| "power3sLessThan"
|
|
961
|
+
| "power10sLessThan"
|
|
962
|
+
| "power30sLessThan"
|
|
963
|
+
| "power3sGreaterThan"
|
|
964
|
+
| "power10sGreaterThan"
|
|
965
|
+
| "power30sGreaterThan"
|
|
966
|
+
| "powerLapLessThan"
|
|
967
|
+
| "powerLapGreaterThan"
|
|
968
|
+
| "repeatUntilTrainingPeaksTss"
|
|
969
|
+
| "repetitionTime"
|
|
970
|
+
| "reps"
|
|
971
|
+
| "timeOnly";
|
|
972
|
+
|
|
973
|
+
export type WktStepTarget = number
|
|
974
|
+
| "speed"
|
|
975
|
+
| "heartRate"
|
|
976
|
+
| "open"
|
|
977
|
+
| "cadence"
|
|
978
|
+
| "power"
|
|
979
|
+
| "grade"
|
|
980
|
+
| "resistance"
|
|
981
|
+
| "power3s"
|
|
982
|
+
| "power10s"
|
|
983
|
+
| "power30s"
|
|
984
|
+
| "powerLap"
|
|
985
|
+
| "swimStroke"
|
|
986
|
+
| "speedLap"
|
|
987
|
+
| "heartRateLap";
|
|
988
|
+
|
|
989
|
+
export type Goal = number
|
|
990
|
+
| "time"
|
|
991
|
+
| "distance"
|
|
992
|
+
| "calories"
|
|
993
|
+
| "frequency"
|
|
994
|
+
| "steps"
|
|
995
|
+
| "ascent"
|
|
996
|
+
| "activeMinutes";
|
|
997
|
+
|
|
998
|
+
export type GoalRecurrence = number
|
|
999
|
+
| "off"
|
|
1000
|
+
| "daily"
|
|
1001
|
+
| "weekly"
|
|
1002
|
+
| "monthly"
|
|
1003
|
+
| "yearly"
|
|
1004
|
+
| "custom";
|
|
1005
|
+
|
|
1006
|
+
export type GoalSource = number
|
|
1007
|
+
| "auto" /** Device generated */
|
|
1008
|
+
| "community" /** Social network sourced goal */
|
|
1009
|
+
| "user" /** Manually generated */;
|
|
1010
|
+
|
|
1011
|
+
export type Schedule = number
|
|
1012
|
+
| "workout"
|
|
1013
|
+
| "course";
|
|
1014
|
+
|
|
1015
|
+
export type CoursePoint = number
|
|
1016
|
+
| "generic"
|
|
1017
|
+
| "summit"
|
|
1018
|
+
| "valley"
|
|
1019
|
+
| "water"
|
|
1020
|
+
| "food"
|
|
1021
|
+
| "danger"
|
|
1022
|
+
| "left"
|
|
1023
|
+
| "right"
|
|
1024
|
+
| "straight"
|
|
1025
|
+
| "firstAid"
|
|
1026
|
+
| "fourthCategory"
|
|
1027
|
+
| "thirdCategory"
|
|
1028
|
+
| "secondCategory"
|
|
1029
|
+
| "firstCategory"
|
|
1030
|
+
| "horsCategory"
|
|
1031
|
+
| "sprint"
|
|
1032
|
+
| "leftFork"
|
|
1033
|
+
| "rightFork"
|
|
1034
|
+
| "middleFork"
|
|
1035
|
+
| "slightLeft"
|
|
1036
|
+
| "sharpLeft"
|
|
1037
|
+
| "slightRight"
|
|
1038
|
+
| "sharpRight"
|
|
1039
|
+
| "uTurn"
|
|
1040
|
+
| "segmentStart"
|
|
1041
|
+
| "segmentEnd"
|
|
1042
|
+
| "campsite"
|
|
1043
|
+
| "aidStation"
|
|
1044
|
+
| "restArea"
|
|
1045
|
+
| "generalDistance" /** Used with UpAhead */
|
|
1046
|
+
| "service"
|
|
1047
|
+
| "energyGel"
|
|
1048
|
+
| "sportsDrink"
|
|
1049
|
+
| "mileMarker"
|
|
1050
|
+
| "checkpoint"
|
|
1051
|
+
| "shelter"
|
|
1052
|
+
| "meetingSpot"
|
|
1053
|
+
| "overlook"
|
|
1054
|
+
| "toilet"
|
|
1055
|
+
| "shower"
|
|
1056
|
+
| "gear"
|
|
1057
|
+
| "sharpCurve"
|
|
1058
|
+
| "steepIncline"
|
|
1059
|
+
| "tunnel"
|
|
1060
|
+
| "bridge"
|
|
1061
|
+
| "obstacle"
|
|
1062
|
+
| "crossing"
|
|
1063
|
+
| "store"
|
|
1064
|
+
| "transition"
|
|
1065
|
+
| "navaid"
|
|
1066
|
+
| "transport"
|
|
1067
|
+
| "alert"
|
|
1068
|
+
| "info";
|
|
1069
|
+
|
|
1070
|
+
export type Manufacturer = number
|
|
1071
|
+
| "garmin"
|
|
1072
|
+
| "garminFr405Antfs" /** Do not use. Used by FR405 for ANTFS man id. */
|
|
1073
|
+
| "zephyr"
|
|
1074
|
+
| "dayton"
|
|
1075
|
+
| "idt"
|
|
1076
|
+
| "srm"
|
|
1077
|
+
| "quarq"
|
|
1078
|
+
| "ibike"
|
|
1079
|
+
| "saris"
|
|
1080
|
+
| "sparkHk"
|
|
1081
|
+
| "tanita"
|
|
1082
|
+
| "echowell"
|
|
1083
|
+
| "dynastreamOem"
|
|
1084
|
+
| "nautilus"
|
|
1085
|
+
| "dynastream"
|
|
1086
|
+
| "timex"
|
|
1087
|
+
| "metrigear"
|
|
1088
|
+
| "xelic"
|
|
1089
|
+
| "beurer"
|
|
1090
|
+
| "cardiosport"
|
|
1091
|
+
| "aAndD"
|
|
1092
|
+
| "hmm"
|
|
1093
|
+
| "suunto"
|
|
1094
|
+
| "thitaElektronik"
|
|
1095
|
+
| "gpulse"
|
|
1096
|
+
| "cleanMobile"
|
|
1097
|
+
| "pedalBrain"
|
|
1098
|
+
| "peaksware"
|
|
1099
|
+
| "saxonar"
|
|
1100
|
+
| "lemondFitness"
|
|
1101
|
+
| "dexcom"
|
|
1102
|
+
| "wahooFitness"
|
|
1103
|
+
| "octaneFitness"
|
|
1104
|
+
| "archinoetics"
|
|
1105
|
+
| "theHurtBox"
|
|
1106
|
+
| "citizenSystems"
|
|
1107
|
+
| "magellan"
|
|
1108
|
+
| "osynce"
|
|
1109
|
+
| "holux"
|
|
1110
|
+
| "concept2"
|
|
1111
|
+
| "shimano"
|
|
1112
|
+
| "oneGiantLeap"
|
|
1113
|
+
| "aceSensor"
|
|
1114
|
+
| "brimBrothers"
|
|
1115
|
+
| "xplova"
|
|
1116
|
+
| "perceptionDigital"
|
|
1117
|
+
| "bf1systems"
|
|
1118
|
+
| "pioneer"
|
|
1119
|
+
| "spantec"
|
|
1120
|
+
| "metalogics"
|
|
1121
|
+
| "4iiiis"
|
|
1122
|
+
| "seikoEpson"
|
|
1123
|
+
| "seikoEpsonOem"
|
|
1124
|
+
| "iforPowell"
|
|
1125
|
+
| "maxwellGuider"
|
|
1126
|
+
| "starTrac"
|
|
1127
|
+
| "breakaway"
|
|
1128
|
+
| "alatechTechnologyLtd"
|
|
1129
|
+
| "mioTechnologyEurope"
|
|
1130
|
+
| "rotor"
|
|
1131
|
+
| "geonaute"
|
|
1132
|
+
| "idBike"
|
|
1133
|
+
| "specialized"
|
|
1134
|
+
| "wtek"
|
|
1135
|
+
| "physicalEnterprises"
|
|
1136
|
+
| "northPoleEngineering"
|
|
1137
|
+
| "bkool"
|
|
1138
|
+
| "cateye"
|
|
1139
|
+
| "stagesCycling"
|
|
1140
|
+
| "sigmasport"
|
|
1141
|
+
| "tomtom"
|
|
1142
|
+
| "peripedal"
|
|
1143
|
+
| "wattbike"
|
|
1144
|
+
| "moxy"
|
|
1145
|
+
| "ciclosport"
|
|
1146
|
+
| "powerbahn"
|
|
1147
|
+
| "acornProjectsAps"
|
|
1148
|
+
| "lifebeam"
|
|
1149
|
+
| "bontrager"
|
|
1150
|
+
| "wellgo"
|
|
1151
|
+
| "scosche"
|
|
1152
|
+
| "magura"
|
|
1153
|
+
| "woodway"
|
|
1154
|
+
| "elite"
|
|
1155
|
+
| "nielsenKellerman"
|
|
1156
|
+
| "dkCity"
|
|
1157
|
+
| "tacx"
|
|
1158
|
+
| "directionTechnology"
|
|
1159
|
+
| "magtonic"
|
|
1160
|
+
| "1partcarbon"
|
|
1161
|
+
| "insideRideTechnologies"
|
|
1162
|
+
| "soundOfMotion"
|
|
1163
|
+
| "stryd"
|
|
1164
|
+
| "icg" /** Indoorcycling Group */
|
|
1165
|
+
| "miPulse"
|
|
1166
|
+
| "bsxAthletics"
|
|
1167
|
+
| "look"
|
|
1168
|
+
| "campagnoloSrl"
|
|
1169
|
+
| "bodyBikeSmart"
|
|
1170
|
+
| "praxisworks"
|
|
1171
|
+
| "limitsTechnology" /** Limits Technology Ltd. */
|
|
1172
|
+
| "topactionTechnology" /** TopAction Technology Inc. */
|
|
1173
|
+
| "cosinuss"
|
|
1174
|
+
| "fitcare"
|
|
1175
|
+
| "magene"
|
|
1176
|
+
| "giantManufacturingCo"
|
|
1177
|
+
| "tigrasport" /** Tigrasport */
|
|
1178
|
+
| "salutron"
|
|
1179
|
+
| "technogym"
|
|
1180
|
+
| "brytonSensors"
|
|
1181
|
+
| "latitudeLimited"
|
|
1182
|
+
| "soaringTechnology"
|
|
1183
|
+
| "igpsport"
|
|
1184
|
+
| "thinkrider"
|
|
1185
|
+
| "gopherSport"
|
|
1186
|
+
| "waterrower"
|
|
1187
|
+
| "orangetheory"
|
|
1188
|
+
| "inpeak"
|
|
1189
|
+
| "kinetic"
|
|
1190
|
+
| "johnsonHealthTech"
|
|
1191
|
+
| "polarElectro"
|
|
1192
|
+
| "seesense"
|
|
1193
|
+
| "nciTechnology"
|
|
1194
|
+
| "iqsquare"
|
|
1195
|
+
| "leomo"
|
|
1196
|
+
| "ifitCom"
|
|
1197
|
+
| "corosByte"
|
|
1198
|
+
| "versaDesign"
|
|
1199
|
+
| "chileaf"
|
|
1200
|
+
| "cycplus"
|
|
1201
|
+
| "gravaaByte"
|
|
1202
|
+
| "sigeyi"
|
|
1203
|
+
| "coospo"
|
|
1204
|
+
| "geoid"
|
|
1205
|
+
| "bosch"
|
|
1206
|
+
| "kyto"
|
|
1207
|
+
| "kineticSports"
|
|
1208
|
+
| "decathlonByte"
|
|
1209
|
+
| "tqSystems"
|
|
1210
|
+
| "tagHeuer"
|
|
1211
|
+
| "keiserFitness"
|
|
1212
|
+
| "zwiftByte"
|
|
1213
|
+
| "porscheEp"
|
|
1214
|
+
| "blackbird"
|
|
1215
|
+
| "meilanByte"
|
|
1216
|
+
| "ezon"
|
|
1217
|
+
| "laisi"
|
|
1218
|
+
| "myzone"
|
|
1219
|
+
| "abawo"
|
|
1220
|
+
| "bafang"
|
|
1221
|
+
| "luhongTechnology"
|
|
1222
|
+
| "development"
|
|
1223
|
+
| "healthandlife"
|
|
1224
|
+
| "lezyne"
|
|
1225
|
+
| "scribeLabs"
|
|
1226
|
+
| "zwift"
|
|
1227
|
+
| "watteam"
|
|
1228
|
+
| "recon"
|
|
1229
|
+
| "faveroElectronics"
|
|
1230
|
+
| "dynovelo"
|
|
1231
|
+
| "strava"
|
|
1232
|
+
| "precor" /** Amer Sports */
|
|
1233
|
+
| "bryton"
|
|
1234
|
+
| "sram"
|
|
1235
|
+
| "navman" /** MiTAC Global Corporation (Mio Technology) */
|
|
1236
|
+
| "cobi" /** COBI GmbH */
|
|
1237
|
+
| "spivi"
|
|
1238
|
+
| "mioMagellan"
|
|
1239
|
+
| "evesports"
|
|
1240
|
+
| "sensitivusGauge"
|
|
1241
|
+
| "podoon"
|
|
1242
|
+
| "lifeTimeFitness"
|
|
1243
|
+
| "falcoEMotors" /** Falco eMotors Inc. */
|
|
1244
|
+
| "minoura"
|
|
1245
|
+
| "cycliq"
|
|
1246
|
+
| "luxottica"
|
|
1247
|
+
| "trainerRoad"
|
|
1248
|
+
| "theSufferfest"
|
|
1249
|
+
| "fullspeedahead"
|
|
1250
|
+
| "virtualtraining"
|
|
1251
|
+
| "feedbacksports"
|
|
1252
|
+
| "omata"
|
|
1253
|
+
| "vdo"
|
|
1254
|
+
| "magneticdays"
|
|
1255
|
+
| "hammerhead"
|
|
1256
|
+
| "kineticByKurt"
|
|
1257
|
+
| "shapelog"
|
|
1258
|
+
| "dabuziduo"
|
|
1259
|
+
| "jetblack"
|
|
1260
|
+
| "coros"
|
|
1261
|
+
| "virtugo"
|
|
1262
|
+
| "velosense"
|
|
1263
|
+
| "cycligentinc"
|
|
1264
|
+
| "trailforks"
|
|
1265
|
+
| "mahleEbikemotion"
|
|
1266
|
+
| "nurvv"
|
|
1267
|
+
| "microprogram"
|
|
1268
|
+
| "zone5cloud"
|
|
1269
|
+
| "greenteg"
|
|
1270
|
+
| "yamahaMotors"
|
|
1271
|
+
| "whoop"
|
|
1272
|
+
| "gravaa"
|
|
1273
|
+
| "onelap"
|
|
1274
|
+
| "monarkExercise"
|
|
1275
|
+
| "form"
|
|
1276
|
+
| "decathlon"
|
|
1277
|
+
| "syncros"
|
|
1278
|
+
| "heatup"
|
|
1279
|
+
| "cannondale"
|
|
1280
|
+
| "trueFitness"
|
|
1281
|
+
| "rGTCycling"
|
|
1282
|
+
| "vasa"
|
|
1283
|
+
| "raceRepublic"
|
|
1284
|
+
| "fazua"
|
|
1285
|
+
| "orekaTraining"
|
|
1286
|
+
| "lsec" /** Lishun Electric & Communication */
|
|
1287
|
+
| "lululemonStudio"
|
|
1288
|
+
| "shanyue"
|
|
1289
|
+
| "spinningMda"
|
|
1290
|
+
| "hilldating"
|
|
1291
|
+
| "aeroSensor"
|
|
1292
|
+
| "nike"
|
|
1293
|
+
| "magicshine"
|
|
1294
|
+
| "ictrainer"
|
|
1295
|
+
| "absoluteCycling"
|
|
1296
|
+
| "eoSwimbetter"
|
|
1297
|
+
| "mywhoosh"
|
|
1298
|
+
| "ravemen"
|
|
1299
|
+
| "tektroRacingProducts"
|
|
1300
|
+
| "daradInnovationCorporation"
|
|
1301
|
+
| "cycloptim"
|
|
1302
|
+
| "runna"
|
|
1303
|
+
| "zepp"
|
|
1304
|
+
| "peloton"
|
|
1305
|
+
| "carv"
|
|
1306
|
+
| "tissot"
|
|
1307
|
+
| "realVelo"
|
|
1308
|
+
| "wetech"
|
|
1309
|
+
| "jespr"
|
|
1310
|
+
| "huawei"
|
|
1311
|
+
| "gotoes"
|
|
1312
|
+
| "cadenceApp"
|
|
1313
|
+
| "actigraphcorp";
|
|
1314
|
+
|
|
1315
|
+
export type GarminProduct = number
|
|
1316
|
+
| "hrm1"
|
|
1317
|
+
| "axh01" /** AXH01 HRM chipset */
|
|
1318
|
+
| "axb01"
|
|
1319
|
+
| "axb02"
|
|
1320
|
+
| "hrm2ss"
|
|
1321
|
+
| "dsiAlf02"
|
|
1322
|
+
| "hrm3ss"
|
|
1323
|
+
| "hrmRunSingleByteProductId" /** hrm_run model for HRM ANT+ messaging */
|
|
1324
|
+
| "bsm" /** BSM model for ANT+ messaging */
|
|
1325
|
+
| "bcm" /** BCM model for ANT+ messaging */
|
|
1326
|
+
| "axs01" /** AXS01 HRM Bike Chipset model for ANT+ messaging */
|
|
1327
|
+
| "hrmTriSingleByteProductId" /** hrm_tri model for HRM ANT+ messaging */
|
|
1328
|
+
| "hrm4RunSingleByteProductId" /** hrm4 run model for HRM ANT+ messaging */
|
|
1329
|
+
| "fr225SingleByteProductId" /** fr225 model for HRM ANT+ messaging */
|
|
1330
|
+
| "gen3BsmSingleByteProductId" /** gen3_bsm model for Bike Speed ANT+ messaging */
|
|
1331
|
+
| "gen3BcmSingleByteProductId" /** gen3_bcm model for Bike Cadence ANT+ messaging */
|
|
1332
|
+
| "hrmFitSingleByteProductId"
|
|
1333
|
+
| "oHR" /** Garmin Wearable Optical Heart Rate Sensor for ANT+ HR Profile Broadcasting */
|
|
1334
|
+
| "fr301China"
|
|
1335
|
+
| "fr301Japan"
|
|
1336
|
+
| "fr301Korea"
|
|
1337
|
+
| "fr301Taiwan"
|
|
1338
|
+
| "fr405" /** Forerunner 405 */
|
|
1339
|
+
| "fr50" /** Forerunner 50 */
|
|
1340
|
+
| "fr405Japan"
|
|
1341
|
+
| "fr60" /** Forerunner 60 */
|
|
1342
|
+
| "dsiAlf01"
|
|
1343
|
+
| "fr310xt" /** Forerunner 310 */
|
|
1344
|
+
| "edge500"
|
|
1345
|
+
| "fr110" /** Forerunner 110 */
|
|
1346
|
+
| "edge800"
|
|
1347
|
+
| "edge500Taiwan"
|
|
1348
|
+
| "edge500Japan"
|
|
1349
|
+
| "chirp"
|
|
1350
|
+
| "fr110Japan"
|
|
1351
|
+
| "edge200"
|
|
1352
|
+
| "fr910xt"
|
|
1353
|
+
| "edge800Taiwan"
|
|
1354
|
+
| "edge800Japan"
|
|
1355
|
+
| "alf04"
|
|
1356
|
+
| "fr610"
|
|
1357
|
+
| "fr210Japan"
|
|
1358
|
+
| "vectorSs"
|
|
1359
|
+
| "vectorCp"
|
|
1360
|
+
| "edge800China"
|
|
1361
|
+
| "edge500China"
|
|
1362
|
+
| "approachG10"
|
|
1363
|
+
| "fr610Japan"
|
|
1364
|
+
| "edge500Korea"
|
|
1365
|
+
| "fr70"
|
|
1366
|
+
| "fr310xt4t"
|
|
1367
|
+
| "amx"
|
|
1368
|
+
| "fr10"
|
|
1369
|
+
| "edge800Korea"
|
|
1370
|
+
| "swim"
|
|
1371
|
+
| "fr910xtChina"
|
|
1372
|
+
| "fenix"
|
|
1373
|
+
| "edge200Taiwan"
|
|
1374
|
+
| "edge510"
|
|
1375
|
+
| "edge810"
|
|
1376
|
+
| "tempe"
|
|
1377
|
+
| "fr910xtJapan"
|
|
1378
|
+
| "fr620"
|
|
1379
|
+
| "fr220"
|
|
1380
|
+
| "fr910xtKorea"
|
|
1381
|
+
| "fr10Japan"
|
|
1382
|
+
| "edge810Japan"
|
|
1383
|
+
| "virbElite"
|
|
1384
|
+
| "edgeTouring" /** Also Edge Touring Plus */
|
|
1385
|
+
| "edge510Japan"
|
|
1386
|
+
| "hrmTri" /** Also HRM-Swim */
|
|
1387
|
+
| "hrmRun"
|
|
1388
|
+
| "fr920xt"
|
|
1389
|
+
| "edge510Asia"
|
|
1390
|
+
| "edge810China"
|
|
1391
|
+
| "edge810Taiwan"
|
|
1392
|
+
| "edge1000"
|
|
1393
|
+
| "vivoFit"
|
|
1394
|
+
| "virbRemote"
|
|
1395
|
+
| "vivoKi"
|
|
1396
|
+
| "fr15"
|
|
1397
|
+
| "vivoActive"
|
|
1398
|
+
| "edge510Korea"
|
|
1399
|
+
| "fr620Japan"
|
|
1400
|
+
| "fr620China"
|
|
1401
|
+
| "fr220Japan"
|
|
1402
|
+
| "fr220China"
|
|
1403
|
+
| "approachS6"
|
|
1404
|
+
| "vivoSmart"
|
|
1405
|
+
| "fenix2"
|
|
1406
|
+
| "epix"
|
|
1407
|
+
| "fenix3"
|
|
1408
|
+
| "edge1000Taiwan"
|
|
1409
|
+
| "edge1000Japan"
|
|
1410
|
+
| "fr15Japan"
|
|
1411
|
+
| "edge520"
|
|
1412
|
+
| "edge1000China"
|
|
1413
|
+
| "fr620Russia"
|
|
1414
|
+
| "fr220Russia"
|
|
1415
|
+
| "vectorS"
|
|
1416
|
+
| "edge1000Korea"
|
|
1417
|
+
| "fr920xtTaiwan"
|
|
1418
|
+
| "fr920xtChina"
|
|
1419
|
+
| "fr920xtJapan"
|
|
1420
|
+
| "virbx"
|
|
1421
|
+
| "vivoSmartApac"
|
|
1422
|
+
| "etrexTouch"
|
|
1423
|
+
| "edge25"
|
|
1424
|
+
| "fr25"
|
|
1425
|
+
| "vivoFit2"
|
|
1426
|
+
| "fr225"
|
|
1427
|
+
| "fr630"
|
|
1428
|
+
| "fr230"
|
|
1429
|
+
| "fr735xt"
|
|
1430
|
+
| "vivoActiveApac"
|
|
1431
|
+
| "vector2"
|
|
1432
|
+
| "vector2s"
|
|
1433
|
+
| "virbxe"
|
|
1434
|
+
| "fr620Taiwan"
|
|
1435
|
+
| "fr220Taiwan"
|
|
1436
|
+
| "truswing"
|
|
1437
|
+
| "d2airvenu"
|
|
1438
|
+
| "fenix3China"
|
|
1439
|
+
| "fenix3Twn"
|
|
1440
|
+
| "variaHeadlight"
|
|
1441
|
+
| "variaTaillightOld"
|
|
1442
|
+
| "edgeExplore1000"
|
|
1443
|
+
| "fr225Asia"
|
|
1444
|
+
| "variaRadarTaillight"
|
|
1445
|
+
| "variaRadarDisplay"
|
|
1446
|
+
| "edge20"
|
|
1447
|
+
| "edge520Asia"
|
|
1448
|
+
| "edge520Japan"
|
|
1449
|
+
| "d2Bravo"
|
|
1450
|
+
| "approachS20"
|
|
1451
|
+
| "vivoSmart2"
|
|
1452
|
+
| "edge1000Thai"
|
|
1453
|
+
| "variaRemote"
|
|
1454
|
+
| "edge25Asia"
|
|
1455
|
+
| "edge25Jpn"
|
|
1456
|
+
| "edge20Asia"
|
|
1457
|
+
| "approachX40"
|
|
1458
|
+
| "fenix3Japan"
|
|
1459
|
+
| "vivoSmartEmea"
|
|
1460
|
+
| "fr630Asia"
|
|
1461
|
+
| "fr630Jpn"
|
|
1462
|
+
| "fr230Jpn"
|
|
1463
|
+
| "hrm4Run"
|
|
1464
|
+
| "epixJapan"
|
|
1465
|
+
| "vivoActiveHr"
|
|
1466
|
+
| "vivoSmartGpsHr"
|
|
1467
|
+
| "vivoSmartHr"
|
|
1468
|
+
| "vivoSmartHrAsia"
|
|
1469
|
+
| "vivoSmartGpsHrAsia"
|
|
1470
|
+
| "vivoMove"
|
|
1471
|
+
| "variaTaillight"
|
|
1472
|
+
| "fr235Asia"
|
|
1473
|
+
| "fr235Japan"
|
|
1474
|
+
| "variaVision"
|
|
1475
|
+
| "vivoFit3"
|
|
1476
|
+
| "fenix3Korea"
|
|
1477
|
+
| "fenix3Sea"
|
|
1478
|
+
| "fenix3Hr"
|
|
1479
|
+
| "virbUltra30"
|
|
1480
|
+
| "indexSmartScale"
|
|
1481
|
+
| "fr235"
|
|
1482
|
+
| "fenix3Chronos"
|
|
1483
|
+
| "oregon7xx"
|
|
1484
|
+
| "rino7xx"
|
|
1485
|
+
| "epixKorea"
|
|
1486
|
+
| "fenix3HrChn"
|
|
1487
|
+
| "fenix3HrTwn"
|
|
1488
|
+
| "fenix3HrJpn"
|
|
1489
|
+
| "fenix3HrSea"
|
|
1490
|
+
| "fenix3HrKor"
|
|
1491
|
+
| "nautix"
|
|
1492
|
+
| "vivoActiveHrApac"
|
|
1493
|
+
| "fr35"
|
|
1494
|
+
| "oregon7xxWw"
|
|
1495
|
+
| "edge820"
|
|
1496
|
+
| "edgeExplore820"
|
|
1497
|
+
| "fr735xtApac"
|
|
1498
|
+
| "fr735xtJapan"
|
|
1499
|
+
| "fenix5s"
|
|
1500
|
+
| "d2BravoTitanium"
|
|
1501
|
+
| "variaUt800" /** Varia UT 800 SW */
|
|
1502
|
+
| "runningDynamicsPod"
|
|
1503
|
+
| "edge820China"
|
|
1504
|
+
| "edge820Japan"
|
|
1505
|
+
| "fenix5x"
|
|
1506
|
+
| "vivoFitJr"
|
|
1507
|
+
| "vivoSmart3"
|
|
1508
|
+
| "vivoSport"
|
|
1509
|
+
| "edge820Taiwan"
|
|
1510
|
+
| "edge820Korea"
|
|
1511
|
+
| "edge820Sea"
|
|
1512
|
+
| "fr35Hebrew"
|
|
1513
|
+
| "approachS60"
|
|
1514
|
+
| "fr35Apac"
|
|
1515
|
+
| "fr35Japan"
|
|
1516
|
+
| "fenix3ChronosAsia"
|
|
1517
|
+
| "virb360"
|
|
1518
|
+
| "fr935"
|
|
1519
|
+
| "fenix5"
|
|
1520
|
+
| "vivoactive3"
|
|
1521
|
+
| "fr235ChinaNfc"
|
|
1522
|
+
| "foretrex601_701"
|
|
1523
|
+
| "vivoMoveHr"
|
|
1524
|
+
| "edge1030"
|
|
1525
|
+
| "fr35Sea"
|
|
1526
|
+
| "vector3"
|
|
1527
|
+
| "fenix5Asia"
|
|
1528
|
+
| "fenix5sAsia"
|
|
1529
|
+
| "fenix5xAsia"
|
|
1530
|
+
| "approachZ80"
|
|
1531
|
+
| "fr35Korea"
|
|
1532
|
+
| "d2charlie"
|
|
1533
|
+
| "vivoSmart3Apac"
|
|
1534
|
+
| "vivoSportApac"
|
|
1535
|
+
| "fr935Asia"
|
|
1536
|
+
| "descent"
|
|
1537
|
+
| "vivoFit4"
|
|
1538
|
+
| "fr645"
|
|
1539
|
+
| "fr645m"
|
|
1540
|
+
| "fr30"
|
|
1541
|
+
| "fenix5sPlus"
|
|
1542
|
+
| "edge130"
|
|
1543
|
+
| "edge1030Asia"
|
|
1544
|
+
| "vivosmart4"
|
|
1545
|
+
| "vivoMoveHrAsia"
|
|
1546
|
+
| "approachX10"
|
|
1547
|
+
| "fr30Asia"
|
|
1548
|
+
| "vivoactive3mW"
|
|
1549
|
+
| "fr645Asia"
|
|
1550
|
+
| "fr645mAsia"
|
|
1551
|
+
| "edgeExplore"
|
|
1552
|
+
| "gpsmap66"
|
|
1553
|
+
| "approachS10"
|
|
1554
|
+
| "vivoactive3mL"
|
|
1555
|
+
| "fr245"
|
|
1556
|
+
| "fr245Music"
|
|
1557
|
+
| "approachG80"
|
|
1558
|
+
| "edge130Asia"
|
|
1559
|
+
| "edge1030Bontrager"
|
|
1560
|
+
| "fenix5Plus"
|
|
1561
|
+
| "fenix5xPlus"
|
|
1562
|
+
| "edge520Plus"
|
|
1563
|
+
| "fr945"
|
|
1564
|
+
| "edge530"
|
|
1565
|
+
| "edge830"
|
|
1566
|
+
| "instinctEsports"
|
|
1567
|
+
| "fenix5sPlusApac"
|
|
1568
|
+
| "fenix5xPlusApac"
|
|
1569
|
+
| "edge520PlusApac"
|
|
1570
|
+
| "descentT1"
|
|
1571
|
+
| "fr235lAsia"
|
|
1572
|
+
| "fr245Asia"
|
|
1573
|
+
| "vivoActive3mApac"
|
|
1574
|
+
| "gen3Bsm" /** gen3 bike speed sensor */
|
|
1575
|
+
| "gen3Bcm" /** gen3 bike cadence sensor */
|
|
1576
|
+
| "vivoSmart4Asia"
|
|
1577
|
+
| "vivoactive4Small"
|
|
1578
|
+
| "vivoactive4Large"
|
|
1579
|
+
| "venu"
|
|
1580
|
+
| "marqDriver"
|
|
1581
|
+
| "marqAviator"
|
|
1582
|
+
| "marqCaptain"
|
|
1583
|
+
| "marqCommander"
|
|
1584
|
+
| "marqExpedition"
|
|
1585
|
+
| "marqAthlete"
|
|
1586
|
+
| "descentMk2"
|
|
1587
|
+
| "fr45"
|
|
1588
|
+
| "gpsmap66i"
|
|
1589
|
+
| "fenix6SSport"
|
|
1590
|
+
| "fenix6S"
|
|
1591
|
+
| "fenix6Sport"
|
|
1592
|
+
| "fenix6"
|
|
1593
|
+
| "fenix6x"
|
|
1594
|
+
| "hrmDual" /** HRM-Dual */
|
|
1595
|
+
| "hrmPro" /** HRM-Pro */
|
|
1596
|
+
| "vivoMove3Premium"
|
|
1597
|
+
| "approachS40"
|
|
1598
|
+
| "fr245mAsia"
|
|
1599
|
+
| "edge530Apac"
|
|
1600
|
+
| "edge830Apac"
|
|
1601
|
+
| "vivoMove3"
|
|
1602
|
+
| "vivoActive4SmallAsia"
|
|
1603
|
+
| "vivoActive4LargeAsia"
|
|
1604
|
+
| "vivoActive4OledAsia"
|
|
1605
|
+
| "swim2"
|
|
1606
|
+
| "marqDriverAsia"
|
|
1607
|
+
| "marqAviatorAsia"
|
|
1608
|
+
| "vivoMove3Asia"
|
|
1609
|
+
| "fr945Asia"
|
|
1610
|
+
| "vivoActive3tChn"
|
|
1611
|
+
| "marqCaptainAsia"
|
|
1612
|
+
| "marqCommanderAsia"
|
|
1613
|
+
| "marqExpeditionAsia"
|
|
1614
|
+
| "marqAthleteAsia"
|
|
1615
|
+
| "indexSmartScale2"
|
|
1616
|
+
| "instinctSolar"
|
|
1617
|
+
| "fr45Asia"
|
|
1618
|
+
| "vivoactive3Daimler"
|
|
1619
|
+
| "legacyRey"
|
|
1620
|
+
| "legacyDarthVader"
|
|
1621
|
+
| "legacyCaptainMarvel"
|
|
1622
|
+
| "legacyFirstAvenger"
|
|
1623
|
+
| "fenix6sSportAsia"
|
|
1624
|
+
| "fenix6sAsia"
|
|
1625
|
+
| "fenix6SportAsia"
|
|
1626
|
+
| "fenix6Asia"
|
|
1627
|
+
| "fenix6xAsia"
|
|
1628
|
+
| "legacyCaptainMarvelAsia"
|
|
1629
|
+
| "legacyFirstAvengerAsia"
|
|
1630
|
+
| "legacyReyAsia"
|
|
1631
|
+
| "legacyDarthVaderAsia"
|
|
1632
|
+
| "descentMk2s"
|
|
1633
|
+
| "edge130Plus"
|
|
1634
|
+
| "edge1030Plus"
|
|
1635
|
+
| "rally200" /** Rally 100/200 Power Meter Series */
|
|
1636
|
+
| "fr745"
|
|
1637
|
+
| "venusqMusic"
|
|
1638
|
+
| "venusqMusicV2"
|
|
1639
|
+
| "venusq"
|
|
1640
|
+
| "lily"
|
|
1641
|
+
| "marqAdventurer"
|
|
1642
|
+
| "enduro"
|
|
1643
|
+
| "swim2Apac"
|
|
1644
|
+
| "marqAdventurerAsia"
|
|
1645
|
+
| "fr945Lte"
|
|
1646
|
+
| "descentMk2Asia" /** Mk2 and Mk2i */
|
|
1647
|
+
| "venu2"
|
|
1648
|
+
| "venu2s"
|
|
1649
|
+
| "venuDaimlerAsia"
|
|
1650
|
+
| "marqGolfer"
|
|
1651
|
+
| "venuDaimler"
|
|
1652
|
+
| "fr745Asia"
|
|
1653
|
+
| "variaRct715"
|
|
1654
|
+
| "lilyAsia"
|
|
1655
|
+
| "edge1030PlusAsia"
|
|
1656
|
+
| "edge130PlusAsia"
|
|
1657
|
+
| "approachS12"
|
|
1658
|
+
| "enduroAsia"
|
|
1659
|
+
| "venusqAsia"
|
|
1660
|
+
| "edge1040"
|
|
1661
|
+
| "marqGolferAsia"
|
|
1662
|
+
| "venu2Plus"
|
|
1663
|
+
| "gnss" /** Airoha AG3335M Family */
|
|
1664
|
+
| "fr55"
|
|
1665
|
+
| "instinct2"
|
|
1666
|
+
| "instinct2s"
|
|
1667
|
+
| "fenix7s"
|
|
1668
|
+
| "fenix7"
|
|
1669
|
+
| "fenix7x"
|
|
1670
|
+
| "fenix7sApac"
|
|
1671
|
+
| "fenix7Apac"
|
|
1672
|
+
| "fenix7xApac"
|
|
1673
|
+
| "approachG12"
|
|
1674
|
+
| "descentMk2sAsia"
|
|
1675
|
+
| "approachS42"
|
|
1676
|
+
| "epixGen2"
|
|
1677
|
+
| "epixGen2Apac"
|
|
1678
|
+
| "venu2sAsia"
|
|
1679
|
+
| "venu2Asia"
|
|
1680
|
+
| "fr945LteAsia"
|
|
1681
|
+
| "vivoMoveSport"
|
|
1682
|
+
| "vivomoveTrend"
|
|
1683
|
+
| "approachS12Asia"
|
|
1684
|
+
| "fr255Music"
|
|
1685
|
+
| "fr255SmallMusic"
|
|
1686
|
+
| "fr255"
|
|
1687
|
+
| "fr255Small"
|
|
1688
|
+
| "approachG12Asia"
|
|
1689
|
+
| "approachS42Asia"
|
|
1690
|
+
| "descentG1"
|
|
1691
|
+
| "venu2PlusAsia"
|
|
1692
|
+
| "fr955"
|
|
1693
|
+
| "fr55Asia"
|
|
1694
|
+
| "edge540"
|
|
1695
|
+
| "edge840"
|
|
1696
|
+
| "vivosmart5"
|
|
1697
|
+
| "instinct2Asia"
|
|
1698
|
+
| "marqGen2" /** Adventurer, Athlete, Captain, Golfer */
|
|
1699
|
+
| "venusq2"
|
|
1700
|
+
| "venusq2music"
|
|
1701
|
+
| "marqGen2Aviator"
|
|
1702
|
+
| "d2AirX10"
|
|
1703
|
+
| "hrmProPlus"
|
|
1704
|
+
| "descentG1Asia"
|
|
1705
|
+
| "tactix7"
|
|
1706
|
+
| "instinctCrossover"
|
|
1707
|
+
| "edgeExplore2"
|
|
1708
|
+
| "descentMk3"
|
|
1709
|
+
| "descentMk3i"
|
|
1710
|
+
| "approachS70"
|
|
1711
|
+
| "fr265Large"
|
|
1712
|
+
| "fr265Small"
|
|
1713
|
+
| "venu3"
|
|
1714
|
+
| "venu3s"
|
|
1715
|
+
| "tacxNeoSmart" /** Neo Smart, Tacx */
|
|
1716
|
+
| "tacxNeo2Smart" /** Neo 2 Smart, Tacx */
|
|
1717
|
+
| "tacxNeo2TSmart" /** Neo 2T Smart, Tacx */
|
|
1718
|
+
| "tacxNeoSmartBike" /** Neo Smart Bike, Tacx */
|
|
1719
|
+
| "tacxSatoriSmart" /** Satori Smart, Tacx */
|
|
1720
|
+
| "tacxFlowSmart" /** Flow Smart, Tacx */
|
|
1721
|
+
| "tacxVortexSmart" /** Vortex Smart, Tacx */
|
|
1722
|
+
| "tacxBushidoSmart" /** Bushido Smart, Tacx */
|
|
1723
|
+
| "tacxGeniusSmart" /** Genius Smart, Tacx */
|
|
1724
|
+
| "tacxFluxFluxSSmart" /** Flux/Flux S Smart, Tacx */
|
|
1725
|
+
| "tacxFlux2Smart" /** Flux 2 Smart, Tacx */
|
|
1726
|
+
| "tacxMagnum" /** Magnum, Tacx */
|
|
1727
|
+
| "edge1040Asia"
|
|
1728
|
+
| "epixGen2Pro42"
|
|
1729
|
+
| "epixGen2Pro47"
|
|
1730
|
+
| "epixGen2Pro51"
|
|
1731
|
+
| "fr965"
|
|
1732
|
+
| "enduro2"
|
|
1733
|
+
| "fenix7sProSolar"
|
|
1734
|
+
| "fenix7ProSolar"
|
|
1735
|
+
| "fenix7xProSolar"
|
|
1736
|
+
| "lily2"
|
|
1737
|
+
| "instinct2x"
|
|
1738
|
+
| "vivoactive5"
|
|
1739
|
+
| "fr165"
|
|
1740
|
+
| "fr165Music"
|
|
1741
|
+
| "edge1050"
|
|
1742
|
+
| "descentT2"
|
|
1743
|
+
| "hrmFit"
|
|
1744
|
+
| "marqGen2Commander"
|
|
1745
|
+
| "lilyAthlete" /** aka the Lily 2 Active */
|
|
1746
|
+
| "rallyX10" /** Rally 110/210 */
|
|
1747
|
+
| "fenix8Solar"
|
|
1748
|
+
| "fenix8SolarLarge"
|
|
1749
|
+
| "fenix8Small"
|
|
1750
|
+
| "fenix8"
|
|
1751
|
+
| "d2Mach1Pro"
|
|
1752
|
+
| "enduro3"
|
|
1753
|
+
| "instinctE40mm"
|
|
1754
|
+
| "instinctE45mm"
|
|
1755
|
+
| "instinct3Solar45mm"
|
|
1756
|
+
| "instinct3Amoled45mm"
|
|
1757
|
+
| "instinct3Amoled50mm"
|
|
1758
|
+
| "descentG2"
|
|
1759
|
+
| "venuX1"
|
|
1760
|
+
| "hrm200"
|
|
1761
|
+
| "vivoactive6"
|
|
1762
|
+
| "fenix8Pro"
|
|
1763
|
+
| "edge550"
|
|
1764
|
+
| "edge850"
|
|
1765
|
+
| "venu4"
|
|
1766
|
+
| "venu4s"
|
|
1767
|
+
| "approachS44"
|
|
1768
|
+
| "edgeMtb"
|
|
1769
|
+
| "approachS50"
|
|
1770
|
+
| "fenixE"
|
|
1771
|
+
| "bounce2"
|
|
1772
|
+
| "instinct3Solar50mm"
|
|
1773
|
+
| "tactix8Amoled"
|
|
1774
|
+
| "tactix8Solar"
|
|
1775
|
+
| "fr170Music"
|
|
1776
|
+
| "fr170"
|
|
1777
|
+
| "approachJ1"
|
|
1778
|
+
| "d2Mach2"
|
|
1779
|
+
| "fr702026"
|
|
1780
|
+
| "instinctCrossoverAmoled"
|
|
1781
|
+
| "d2AirX15"
|
|
1782
|
+
| "d2Mach2Pro"
|
|
1783
|
+
| "sdm4" /** SDM4 footpod */
|
|
1784
|
+
| "edgeRemote"
|
|
1785
|
+
| "tacxTrainingAppWin"
|
|
1786
|
+
| "tacxTrainingAppMac"
|
|
1787
|
+
| "tacxTrainingAppMacCatalyst"
|
|
1788
|
+
| "trainingCenter"
|
|
1789
|
+
| "tacxTrainingAppAndroid"
|
|
1790
|
+
| "tacxTrainingAppIos"
|
|
1791
|
+
| "tacxTrainingAppLegacy"
|
|
1792
|
+
| "connectiqSimulator"
|
|
1793
|
+
| "androidAntplusPlugin"
|
|
1794
|
+
| "connect" /** Garmin Connect website */;
|
|
1795
|
+
|
|
1796
|
+
export type AntplusDeviceType = number
|
|
1797
|
+
| "antfs"
|
|
1798
|
+
| "bikePower"
|
|
1799
|
+
| "environmentSensorLegacy"
|
|
1800
|
+
| "multiSportSpeedDistance"
|
|
1801
|
+
| "control"
|
|
1802
|
+
| "fitnessEquipment"
|
|
1803
|
+
| "bloodPressure"
|
|
1804
|
+
| "geocacheNode"
|
|
1805
|
+
| "lightElectricVehicle"
|
|
1806
|
+
| "envSensor"
|
|
1807
|
+
| "racquet"
|
|
1808
|
+
| "controlHub"
|
|
1809
|
+
| "muscleOxygen"
|
|
1810
|
+
| "shifting"
|
|
1811
|
+
| "bikeLightMain"
|
|
1812
|
+
| "bikeLightShared"
|
|
1813
|
+
| "exd"
|
|
1814
|
+
| "bikeRadar"
|
|
1815
|
+
| "bikeAero"
|
|
1816
|
+
| "weightScale"
|
|
1817
|
+
| "heartRate"
|
|
1818
|
+
| "bikeSpeedCadence"
|
|
1819
|
+
| "bikeCadence"
|
|
1820
|
+
| "bikeSpeed"
|
|
1821
|
+
| "strideSpeedDistance";
|
|
1822
|
+
|
|
1823
|
+
export type AntNetwork = number
|
|
1824
|
+
| "public"
|
|
1825
|
+
| "antplus"
|
|
1826
|
+
| "antfs"
|
|
1827
|
+
| "private";
|
|
1828
|
+
|
|
1829
|
+
export type WorkoutCapabilities = number
|
|
1830
|
+
| "interval"
|
|
1831
|
+
| "custom"
|
|
1832
|
+
| "fitnessEquipment"
|
|
1833
|
+
| "firstbeat"
|
|
1834
|
+
| "newLeaf"
|
|
1835
|
+
| "tcx" /** For backwards compatibility. Watch should add missing id fields then clear flag. */
|
|
1836
|
+
| "speed" /** Speed source required for workout step. */
|
|
1837
|
+
| "heartRate" /** Heart rate source required for workout step. */
|
|
1838
|
+
| "distance" /** Distance source required for workout step. */
|
|
1839
|
+
| "cadence" /** Cadence source required for workout step. */
|
|
1840
|
+
| "power" /** Power source required for workout step. */
|
|
1841
|
+
| "grade" /** Grade source required for workout step. */
|
|
1842
|
+
| "resistance" /** Resistance source required for workout step. */
|
|
1843
|
+
| "protected";
|
|
1844
|
+
|
|
1845
|
+
export type BatteryStatus = number
|
|
1846
|
+
| "new"
|
|
1847
|
+
| "good"
|
|
1848
|
+
| "ok"
|
|
1849
|
+
| "low"
|
|
1850
|
+
| "critical"
|
|
1851
|
+
| "charging"
|
|
1852
|
+
| "unknown";
|
|
1853
|
+
|
|
1854
|
+
export type HrType = number
|
|
1855
|
+
| "normal"
|
|
1856
|
+
| "irregular";
|
|
1857
|
+
|
|
1858
|
+
export type CourseCapabilities = number
|
|
1859
|
+
| "processed"
|
|
1860
|
+
| "valid"
|
|
1861
|
+
| "time"
|
|
1862
|
+
| "distance"
|
|
1863
|
+
| "position"
|
|
1864
|
+
| "heartRate"
|
|
1865
|
+
| "power"
|
|
1866
|
+
| "cadence"
|
|
1867
|
+
| "training"
|
|
1868
|
+
| "navigation"
|
|
1869
|
+
| "bikeway"
|
|
1870
|
+
| "aviation" /** Denote course files to be used as flight plans */;
|
|
1871
|
+
|
|
1872
|
+
export type Weight = number
|
|
1873
|
+
| "calculating";
|
|
1874
|
+
|
|
1875
|
+
/** 0 - 100 indicates% of max hr; >100 indicates bpm (255 max) plus 100 */
|
|
1876
|
+
export type WorkoutHr = number
|
|
1877
|
+
| "bpmOffset";
|
|
1878
|
+
|
|
1879
|
+
/** 0 - 1000 indicates % of functional threshold power; >1000 indicates watts plus 1000. */
|
|
1880
|
+
export type WorkoutPower = number
|
|
1881
|
+
| "wattsOffset";
|
|
1882
|
+
|
|
1883
|
+
export type BpStatus = number
|
|
1884
|
+
| "noError"
|
|
1885
|
+
| "errorIncompleteData"
|
|
1886
|
+
| "errorNoMeasurement"
|
|
1887
|
+
| "errorDataOutOfRange"
|
|
1888
|
+
| "errorIrregularHeartRate";
|
|
1889
|
+
|
|
1890
|
+
export type UserLocalId = number
|
|
1891
|
+
| "localMin"
|
|
1892
|
+
| "localMax"
|
|
1893
|
+
| "stationaryMin"
|
|
1894
|
+
| "stationaryMax"
|
|
1895
|
+
| "portableMin"
|
|
1896
|
+
| "portableMax";
|
|
1897
|
+
|
|
1898
|
+
export type SwimStroke = number
|
|
1899
|
+
| "freestyle"
|
|
1900
|
+
| "backstroke"
|
|
1901
|
+
| "breaststroke"
|
|
1902
|
+
| "butterfly"
|
|
1903
|
+
| "drill"
|
|
1904
|
+
| "mixed"
|
|
1905
|
+
| "im" /** IM is a mixed interval containing the same number of lengths for each of: Butterfly, Backstroke, Breaststroke, Freestyle, swam in that order. */
|
|
1906
|
+
| "imByRound" /** For repeated workout steps, a new individual medly stroke is used for each round. */
|
|
1907
|
+
| "rimo" /** Reverse IM Order */;
|
|
1908
|
+
|
|
1909
|
+
export type ActivityType = number
|
|
1910
|
+
| "generic"
|
|
1911
|
+
| "running"
|
|
1912
|
+
| "cycling"
|
|
1913
|
+
| "transition" /** Mulitsport transition */
|
|
1914
|
+
| "fitnessEquipment"
|
|
1915
|
+
| "swimming"
|
|
1916
|
+
| "walking"
|
|
1917
|
+
| "sedentary"
|
|
1918
|
+
| "all" /** All is for goals only to include all sports. */;
|
|
1919
|
+
|
|
1920
|
+
export type ActivitySubtype = number
|
|
1921
|
+
| "generic"
|
|
1922
|
+
| "treadmill" /** Run */
|
|
1923
|
+
| "street" /** Run */
|
|
1924
|
+
| "trail" /** Run */
|
|
1925
|
+
| "track" /** Run */
|
|
1926
|
+
| "spin" /** Cycling */
|
|
1927
|
+
| "indoorCycling" /** Cycling */
|
|
1928
|
+
| "road" /** Cycling */
|
|
1929
|
+
| "mountain" /** Cycling */
|
|
1930
|
+
| "downhill" /** Cycling */
|
|
1931
|
+
| "recumbent" /** Cycling */
|
|
1932
|
+
| "cyclocross" /** Cycling */
|
|
1933
|
+
| "handCycling" /** Cycling */
|
|
1934
|
+
| "trackCycling" /** Cycling */
|
|
1935
|
+
| "indoorRowing" /** Fitness Equipment */
|
|
1936
|
+
| "elliptical" /** Fitness Equipment */
|
|
1937
|
+
| "stairClimbing" /** Fitness Equipment */
|
|
1938
|
+
| "lapSwimming" /** Swimming */
|
|
1939
|
+
| "openWater" /** Swimming */
|
|
1940
|
+
| "all";
|
|
1941
|
+
|
|
1942
|
+
export type ActivityLevel = number
|
|
1943
|
+
| "low"
|
|
1944
|
+
| "medium"
|
|
1945
|
+
| "high";
|
|
1946
|
+
|
|
1947
|
+
export type Side = number
|
|
1948
|
+
| "right"
|
|
1949
|
+
| "left";
|
|
1950
|
+
|
|
1951
|
+
export type LeftRightBalance = number
|
|
1952
|
+
| "mask" /** % contribution */
|
|
1953
|
+
| "right" /** data corresponds to right if set, otherwise unknown */;
|
|
1954
|
+
|
|
1955
|
+
export type LeftRightBalance100 = number
|
|
1956
|
+
| "mask" /** % contribution scaled by 100 */
|
|
1957
|
+
| "right" /** data corresponds to right if set, otherwise unknown */;
|
|
1958
|
+
|
|
1959
|
+
export type LengthType = number
|
|
1960
|
+
| "idle" /** Rest period. Length with no strokes */
|
|
1961
|
+
| "active" /** Length with strokes. */;
|
|
1962
|
+
|
|
1963
|
+
export type DayOfWeek = number
|
|
1964
|
+
| "sunday"
|
|
1965
|
+
| "monday"
|
|
1966
|
+
| "tuesday"
|
|
1967
|
+
| "wednesday"
|
|
1968
|
+
| "thursday"
|
|
1969
|
+
| "friday"
|
|
1970
|
+
| "saturday";
|
|
1971
|
+
|
|
1972
|
+
export type ConnectivityCapabilities = number
|
|
1973
|
+
| "bluetooth"
|
|
1974
|
+
| "bluetoothLe"
|
|
1975
|
+
| "ant"
|
|
1976
|
+
| "activityUpload"
|
|
1977
|
+
| "courseDownload"
|
|
1978
|
+
| "workoutDownload"
|
|
1979
|
+
| "liveTrack"
|
|
1980
|
+
| "weatherConditions"
|
|
1981
|
+
| "weatherAlerts"
|
|
1982
|
+
| "gpsEphemerisDownload"
|
|
1983
|
+
| "explicitArchive"
|
|
1984
|
+
| "setupIncomplete"
|
|
1985
|
+
| "continueSyncAfterSoftwareUpdate"
|
|
1986
|
+
| "connectIqAppDownload"
|
|
1987
|
+
| "golfCourseDownload"
|
|
1988
|
+
| "deviceInitiatesSync" /** Indicates device is in control of initiating all syncs */
|
|
1989
|
+
| "connectIqWatchAppDownload"
|
|
1990
|
+
| "connectIqWidgetDownload"
|
|
1991
|
+
| "connectIqWatchFaceDownload"
|
|
1992
|
+
| "connectIqDataFieldDownload"
|
|
1993
|
+
| "connectIqAppManagment" /** Device supports delete and reorder of apps via GCM */
|
|
1994
|
+
| "swingSensor"
|
|
1995
|
+
| "swingSensorRemote"
|
|
1996
|
+
| "incidentDetection" /** Device supports incident detection */
|
|
1997
|
+
| "audioPrompts"
|
|
1998
|
+
| "wifiVerification" /** Device supports reporting wifi verification via GCM */
|
|
1999
|
+
| "trueUp" /** Device supports True Up */
|
|
2000
|
+
| "findMyWatch" /** Device supports Find My Watch */
|
|
2001
|
+
| "remoteManualSync"
|
|
2002
|
+
| "liveTrackAutoStart" /** Device supports LiveTrack auto start */
|
|
2003
|
+
| "liveTrackMessaging" /** Device supports LiveTrack Messaging */
|
|
2004
|
+
| "instantInput" /** Device supports instant input feature */;
|
|
2005
|
+
|
|
2006
|
+
export type WeatherReport = number
|
|
2007
|
+
| "current"
|
|
2008
|
+
| "forecast" /** Deprecated use hourly_forecast instead */
|
|
2009
|
+
| "hourlyForecast"
|
|
2010
|
+
| "dailyForecast";
|
|
2011
|
+
|
|
2012
|
+
export type WeatherStatus = number
|
|
2013
|
+
| "clear"
|
|
2014
|
+
| "partlyCloudy"
|
|
2015
|
+
| "mostlyCloudy"
|
|
2016
|
+
| "rain"
|
|
2017
|
+
| "snow"
|
|
2018
|
+
| "windy"
|
|
2019
|
+
| "thunderstorms"
|
|
2020
|
+
| "wintryMix"
|
|
2021
|
+
| "fog"
|
|
2022
|
+
| "hazy"
|
|
2023
|
+
| "hail"
|
|
2024
|
+
| "scatteredShowers"
|
|
2025
|
+
| "scatteredThunderstorms"
|
|
2026
|
+
| "unknownPrecipitation"
|
|
2027
|
+
| "lightRain"
|
|
2028
|
+
| "heavyRain"
|
|
2029
|
+
| "lightSnow"
|
|
2030
|
+
| "heavySnow"
|
|
2031
|
+
| "lightRainSnow"
|
|
2032
|
+
| "heavyRainSnow"
|
|
2033
|
+
| "cloudy";
|
|
2034
|
+
|
|
2035
|
+
export type WeatherSeverity = number
|
|
2036
|
+
| "unknown"
|
|
2037
|
+
| "warning"
|
|
2038
|
+
| "watch"
|
|
2039
|
+
| "advisory"
|
|
2040
|
+
| "statement";
|
|
2041
|
+
|
|
2042
|
+
export type WeatherSevereType = number
|
|
2043
|
+
| "unspecified"
|
|
2044
|
+
| "tornado"
|
|
2045
|
+
| "tsunami"
|
|
2046
|
+
| "hurricane"
|
|
2047
|
+
| "extremeWind"
|
|
2048
|
+
| "typhoon"
|
|
2049
|
+
| "inlandHurricane"
|
|
2050
|
+
| "hurricaneForceWind"
|
|
2051
|
+
| "waterspout"
|
|
2052
|
+
| "severeThunderstorm"
|
|
2053
|
+
| "wreckhouseWinds"
|
|
2054
|
+
| "lesSuetesWind"
|
|
2055
|
+
| "avalanche"
|
|
2056
|
+
| "flashFlood"
|
|
2057
|
+
| "tropicalStorm"
|
|
2058
|
+
| "inlandTropicalStorm"
|
|
2059
|
+
| "blizzard"
|
|
2060
|
+
| "iceStorm"
|
|
2061
|
+
| "freezingRain"
|
|
2062
|
+
| "debrisFlow"
|
|
2063
|
+
| "flashFreeze"
|
|
2064
|
+
| "dustStorm"
|
|
2065
|
+
| "highWind"
|
|
2066
|
+
| "winterStorm"
|
|
2067
|
+
| "heavyFreezingSpray"
|
|
2068
|
+
| "extremeCold"
|
|
2069
|
+
| "windChill"
|
|
2070
|
+
| "coldWave"
|
|
2071
|
+
| "heavySnowAlert"
|
|
2072
|
+
| "lakeEffectBlowingSnow"
|
|
2073
|
+
| "snowSquall"
|
|
2074
|
+
| "lakeEffectSnow"
|
|
2075
|
+
| "winterWeather"
|
|
2076
|
+
| "sleet"
|
|
2077
|
+
| "snowfall"
|
|
2078
|
+
| "snowAndBlowingSnow"
|
|
2079
|
+
| "blowingSnow"
|
|
2080
|
+
| "snowAlert"
|
|
2081
|
+
| "arcticOutflow"
|
|
2082
|
+
| "freezingDrizzle"
|
|
2083
|
+
| "storm"
|
|
2084
|
+
| "stormSurge"
|
|
2085
|
+
| "rainfall"
|
|
2086
|
+
| "arealFlood"
|
|
2087
|
+
| "coastalFlood"
|
|
2088
|
+
| "lakeshoreFlood"
|
|
2089
|
+
| "excessiveHeat"
|
|
2090
|
+
| "heat"
|
|
2091
|
+
| "weather"
|
|
2092
|
+
| "highHeatAndHumidity"
|
|
2093
|
+
| "humidexAndHealth"
|
|
2094
|
+
| "humidex"
|
|
2095
|
+
| "gale"
|
|
2096
|
+
| "freezingSpray"
|
|
2097
|
+
| "specialMarine"
|
|
2098
|
+
| "squall"
|
|
2099
|
+
| "strongWind"
|
|
2100
|
+
| "lakeWind"
|
|
2101
|
+
| "marineWeather"
|
|
2102
|
+
| "wind"
|
|
2103
|
+
| "smallCraftHazardousSeas"
|
|
2104
|
+
| "hazardousSeas"
|
|
2105
|
+
| "smallCraft"
|
|
2106
|
+
| "smallCraftWinds"
|
|
2107
|
+
| "smallCraftRoughBar"
|
|
2108
|
+
| "highWaterLevel"
|
|
2109
|
+
| "ashfall"
|
|
2110
|
+
| "freezingFog"
|
|
2111
|
+
| "denseFog"
|
|
2112
|
+
| "denseSmoke"
|
|
2113
|
+
| "blowingDust"
|
|
2114
|
+
| "hardFreeze"
|
|
2115
|
+
| "freeze"
|
|
2116
|
+
| "frost"
|
|
2117
|
+
| "fireWeather"
|
|
2118
|
+
| "flood"
|
|
2119
|
+
| "ripTide"
|
|
2120
|
+
| "highSurf"
|
|
2121
|
+
| "smog"
|
|
2122
|
+
| "airQuality"
|
|
2123
|
+
| "briskWind"
|
|
2124
|
+
| "airStagnation"
|
|
2125
|
+
| "lowWater"
|
|
2126
|
+
| "hydrological"
|
|
2127
|
+
| "specialWeather";
|
|
2128
|
+
|
|
2129
|
+
/** number of seconds into the day since 00:00:00 UTC */
|
|
2130
|
+
export type TimeIntoDay = number;
|
|
2131
|
+
|
|
2132
|
+
/** number of seconds into the day since local 00:00:00 */
|
|
2133
|
+
export type LocaltimeIntoDay = number;
|
|
2134
|
+
|
|
2135
|
+
export type StrokeType = number
|
|
2136
|
+
| "noEvent"
|
|
2137
|
+
| "other" /** stroke was detected but cannot be identified */
|
|
2138
|
+
| "serve"
|
|
2139
|
+
| "forehand"
|
|
2140
|
+
| "backhand"
|
|
2141
|
+
| "smash";
|
|
2142
|
+
|
|
2143
|
+
export type BodyLocation = number
|
|
2144
|
+
| "leftLeg"
|
|
2145
|
+
| "leftCalf"
|
|
2146
|
+
| "leftShin"
|
|
2147
|
+
| "leftHamstring"
|
|
2148
|
+
| "leftQuad"
|
|
2149
|
+
| "leftGlute"
|
|
2150
|
+
| "rightLeg"
|
|
2151
|
+
| "rightCalf"
|
|
2152
|
+
| "rightShin"
|
|
2153
|
+
| "rightHamstring"
|
|
2154
|
+
| "rightQuad"
|
|
2155
|
+
| "rightGlute"
|
|
2156
|
+
| "torsoBack"
|
|
2157
|
+
| "leftLowerBack"
|
|
2158
|
+
| "leftUpperBack"
|
|
2159
|
+
| "rightLowerBack"
|
|
2160
|
+
| "rightUpperBack"
|
|
2161
|
+
| "torsoFront"
|
|
2162
|
+
| "leftAbdomen"
|
|
2163
|
+
| "leftChest"
|
|
2164
|
+
| "rightAbdomen"
|
|
2165
|
+
| "rightChest"
|
|
2166
|
+
| "leftArm"
|
|
2167
|
+
| "leftShoulder"
|
|
2168
|
+
| "leftBicep"
|
|
2169
|
+
| "leftTricep"
|
|
2170
|
+
| "leftBrachioradialis" /** Left anterior forearm */
|
|
2171
|
+
| "leftForearmExtensors" /** Left posterior forearm */
|
|
2172
|
+
| "rightArm"
|
|
2173
|
+
| "rightShoulder"
|
|
2174
|
+
| "rightBicep"
|
|
2175
|
+
| "rightTricep"
|
|
2176
|
+
| "rightBrachioradialis" /** Right anterior forearm */
|
|
2177
|
+
| "rightForearmExtensors" /** Right posterior forearm */
|
|
2178
|
+
| "neck"
|
|
2179
|
+
| "throat"
|
|
2180
|
+
| "waistMidBack"
|
|
2181
|
+
| "waistFront"
|
|
2182
|
+
| "waistLeft"
|
|
2183
|
+
| "waistRight";
|
|
2184
|
+
|
|
2185
|
+
export type SegmentLapStatus = number
|
|
2186
|
+
| "end"
|
|
2187
|
+
| "fail";
|
|
2188
|
+
|
|
2189
|
+
export type SegmentLeaderboardType = number
|
|
2190
|
+
| "overall"
|
|
2191
|
+
| "personalBest"
|
|
2192
|
+
| "connections"
|
|
2193
|
+
| "group"
|
|
2194
|
+
| "challenger"
|
|
2195
|
+
| "kom"
|
|
2196
|
+
| "qom"
|
|
2197
|
+
| "pr"
|
|
2198
|
+
| "goal"
|
|
2199
|
+
| "carrot"
|
|
2200
|
+
| "clubLeader"
|
|
2201
|
+
| "rival"
|
|
2202
|
+
| "last"
|
|
2203
|
+
| "recentBest"
|
|
2204
|
+
| "courseRecord";
|
|
2205
|
+
|
|
2206
|
+
export type SegmentDeleteStatus = number
|
|
2207
|
+
| "doNotDelete"
|
|
2208
|
+
| "deleteOne"
|
|
2209
|
+
| "deleteAll";
|
|
2210
|
+
|
|
2211
|
+
export type SegmentSelectionType = number
|
|
2212
|
+
| "starred"
|
|
2213
|
+
| "suggested";
|
|
2214
|
+
|
|
2215
|
+
export type SourceType = number
|
|
2216
|
+
| "ant" /** External device connected with ANT */
|
|
2217
|
+
| "antplus" /** External device connected with ANT+ */
|
|
2218
|
+
| "bluetooth" /** External device connected with BT */
|
|
2219
|
+
| "bluetoothLowEnergy" /** External device connected with BLE */
|
|
2220
|
+
| "wifi" /** External device connected with Wifi */
|
|
2221
|
+
| "local" /** Onboard device */;
|
|
2222
|
+
|
|
2223
|
+
export type LocalDeviceType = number
|
|
2224
|
+
| "gps" /** Onboard gps receiver */
|
|
2225
|
+
| "glonass" /** Onboard glonass receiver */
|
|
2226
|
+
| "gpsGlonass" /** Onboard gps glonass receiver */
|
|
2227
|
+
| "accelerometer" /** Onboard sensor */
|
|
2228
|
+
| "barometer" /** Onboard sensor */
|
|
2229
|
+
| "temperature" /** Onboard sensor */
|
|
2230
|
+
| "whr" /** Onboard wrist HR sensor */
|
|
2231
|
+
| "sensorHub" /** Onboard software package */;
|
|
2232
|
+
|
|
2233
|
+
export type BleDeviceType = number
|
|
2234
|
+
| "connectedGps" /** GPS that is provided over a proprietary bluetooth service */
|
|
2235
|
+
| "heartRate"
|
|
2236
|
+
| "bikePower"
|
|
2237
|
+
| "bikeSpeedCadence"
|
|
2238
|
+
| "bikeSpeed"
|
|
2239
|
+
| "bikeCadence"
|
|
2240
|
+
| "footpod"
|
|
2241
|
+
| "bikeTrainer" /** Indoor-Bike FTMS protocol */;
|
|
2242
|
+
|
|
2243
|
+
export type AntChannelId = number
|
|
2244
|
+
| "antExtendedDeviceNumberUpperNibble"
|
|
2245
|
+
| "antTransmissionTypeLowerNibble"
|
|
2246
|
+
| "antDeviceType"
|
|
2247
|
+
| "antDeviceNumber";
|
|
2248
|
+
|
|
2249
|
+
export type DisplayOrientation = number
|
|
2250
|
+
| "auto" /** automatic if the device supports it */
|
|
2251
|
+
| "portrait"
|
|
2252
|
+
| "landscape"
|
|
2253
|
+
| "portraitFlipped" /** portrait mode but rotated 180 degrees */
|
|
2254
|
+
| "landscapeFlipped" /** landscape mode but rotated 180 degrees */;
|
|
2255
|
+
|
|
2256
|
+
export type WorkoutEquipment = number
|
|
2257
|
+
| "none"
|
|
2258
|
+
| "swimFins"
|
|
2259
|
+
| "swimKickboard"
|
|
2260
|
+
| "swimPaddles"
|
|
2261
|
+
| "swimPullBuoy"
|
|
2262
|
+
| "swimSnorkel";
|
|
2263
|
+
|
|
2264
|
+
export type WatchfaceMode = number
|
|
2265
|
+
| "digital"
|
|
2266
|
+
| "analog"
|
|
2267
|
+
| "connectIq"
|
|
2268
|
+
| "disabled";
|
|
2269
|
+
|
|
2270
|
+
export type DigitalWatchfaceLayout = number
|
|
2271
|
+
| "traditional"
|
|
2272
|
+
| "modern"
|
|
2273
|
+
| "bold";
|
|
2274
|
+
|
|
2275
|
+
export type AnalogWatchfaceLayout = number
|
|
2276
|
+
| "minimal"
|
|
2277
|
+
| "traditional"
|
|
2278
|
+
| "modern";
|
|
2279
|
+
|
|
2280
|
+
export type RiderPositionType = number
|
|
2281
|
+
| "seated"
|
|
2282
|
+
| "standing"
|
|
2283
|
+
| "transitionToSeated"
|
|
2284
|
+
| "transitionToStanding";
|
|
2285
|
+
|
|
2286
|
+
export type PowerPhaseType = number
|
|
2287
|
+
| "powerPhaseStartAngle"
|
|
2288
|
+
| "powerPhaseEndAngle"
|
|
2289
|
+
| "powerPhaseArcLength"
|
|
2290
|
+
| "powerPhaseCenter";
|
|
2291
|
+
|
|
2292
|
+
export type CameraEventType = number
|
|
2293
|
+
| "videoStart" /** Start of video recording */
|
|
2294
|
+
| "videoSplit" /** Mark of video file split (end of one file, beginning of the other) */
|
|
2295
|
+
| "videoEnd" /** End of video recording */
|
|
2296
|
+
| "photoTaken" /** Still photo taken */
|
|
2297
|
+
| "videoSecondStreamStart"
|
|
2298
|
+
| "videoSecondStreamSplit"
|
|
2299
|
+
| "videoSecondStreamEnd"
|
|
2300
|
+
| "videoSplitStart" /** Mark of video file split start */
|
|
2301
|
+
| "videoSecondStreamSplitStart"
|
|
2302
|
+
| "videoPause" /** Mark when a video recording has been paused */
|
|
2303
|
+
| "videoSecondStreamPause"
|
|
2304
|
+
| "videoResume" /** Mark when a video recording has been resumed */
|
|
2305
|
+
| "videoSecondStreamResume";
|
|
2306
|
+
|
|
2307
|
+
export type SensorType = number
|
|
2308
|
+
| "accelerometer"
|
|
2309
|
+
| "gyroscope"
|
|
2310
|
+
| "compass" /** Magnetometer */
|
|
2311
|
+
| "barometer";
|
|
2312
|
+
|
|
2313
|
+
export type BikeLightNetworkConfigType = number
|
|
2314
|
+
| "auto"
|
|
2315
|
+
| "individual"
|
|
2316
|
+
| "highVisibility"
|
|
2317
|
+
| "trail";
|
|
2318
|
+
|
|
2319
|
+
export type CommTimeoutType = number
|
|
2320
|
+
| "wildcardPairingTimeout" /** Timeout pairing to any device */
|
|
2321
|
+
| "pairingTimeout" /** Timeout pairing to previously paired device */
|
|
2322
|
+
| "connectionLost" /** Temporary loss of communications */
|
|
2323
|
+
| "connectionTimeout" /** Connection closed due to extended bad communications */;
|
|
2324
|
+
|
|
2325
|
+
export type CameraOrientationType = number
|
|
2326
|
+
| "cameraOrientation0"
|
|
2327
|
+
| "cameraOrientation90"
|
|
2328
|
+
| "cameraOrientation180"
|
|
2329
|
+
| "cameraOrientation270";
|
|
2330
|
+
|
|
2331
|
+
export type AttitudeStage = number
|
|
2332
|
+
| "failed"
|
|
2333
|
+
| "aligning"
|
|
2334
|
+
| "degraded"
|
|
2335
|
+
| "valid";
|
|
2336
|
+
|
|
2337
|
+
export type AttitudeValidity = number
|
|
2338
|
+
| "trackAngleHeadingValid"
|
|
2339
|
+
| "pitchValid"
|
|
2340
|
+
| "rollValid"
|
|
2341
|
+
| "lateralBodyAccelValid"
|
|
2342
|
+
| "normalBodyAccelValid"
|
|
2343
|
+
| "turnRateValid"
|
|
2344
|
+
| "hwFail"
|
|
2345
|
+
| "magInvalid"
|
|
2346
|
+
| "noGps"
|
|
2347
|
+
| "gpsInvalid"
|
|
2348
|
+
| "solutionCoasting"
|
|
2349
|
+
| "trueTrackAngle"
|
|
2350
|
+
| "magneticHeading";
|
|
2351
|
+
|
|
2352
|
+
export type AutoSyncFrequency = number
|
|
2353
|
+
| "never"
|
|
2354
|
+
| "occasionally"
|
|
2355
|
+
| "frequent"
|
|
2356
|
+
| "onceADay"
|
|
2357
|
+
| "remote";
|
|
2358
|
+
|
|
2359
|
+
export type ExdLayout = number
|
|
2360
|
+
| "fullScreen"
|
|
2361
|
+
| "halfVertical"
|
|
2362
|
+
| "halfHorizontal"
|
|
2363
|
+
| "halfVerticalRightSplit"
|
|
2364
|
+
| "halfHorizontalBottomSplit"
|
|
2365
|
+
| "fullQuarterSplit"
|
|
2366
|
+
| "halfVerticalLeftSplit"
|
|
2367
|
+
| "halfHorizontalTopSplit"
|
|
2368
|
+
| "dynamic" /** The EXD may display the configured concepts in any layout it sees fit. */;
|
|
2369
|
+
|
|
2370
|
+
export type ExdDisplayType = number
|
|
2371
|
+
| "numerical"
|
|
2372
|
+
| "simple"
|
|
2373
|
+
| "graph"
|
|
2374
|
+
| "bar"
|
|
2375
|
+
| "circleGraph"
|
|
2376
|
+
| "virtualPartner"
|
|
2377
|
+
| "balance"
|
|
2378
|
+
| "stringList"
|
|
2379
|
+
| "string"
|
|
2380
|
+
| "simpleDynamicIcon"
|
|
2381
|
+
| "gauge";
|
|
2382
|
+
|
|
2383
|
+
export type ExdDataUnits = number
|
|
2384
|
+
| "noUnits"
|
|
2385
|
+
| "laps"
|
|
2386
|
+
| "milesPerHour"
|
|
2387
|
+
| "kilometersPerHour"
|
|
2388
|
+
| "feetPerHour"
|
|
2389
|
+
| "metersPerHour"
|
|
2390
|
+
| "degreesCelsius"
|
|
2391
|
+
| "degreesFarenheit"
|
|
2392
|
+
| "zone"
|
|
2393
|
+
| "gear"
|
|
2394
|
+
| "rpm"
|
|
2395
|
+
| "bpm"
|
|
2396
|
+
| "degrees"
|
|
2397
|
+
| "millimeters"
|
|
2398
|
+
| "meters"
|
|
2399
|
+
| "kilometers"
|
|
2400
|
+
| "feet"
|
|
2401
|
+
| "yards"
|
|
2402
|
+
| "kilofeet"
|
|
2403
|
+
| "miles"
|
|
2404
|
+
| "time"
|
|
2405
|
+
| "enumTurnType"
|
|
2406
|
+
| "percent"
|
|
2407
|
+
| "watts"
|
|
2408
|
+
| "wattsPerKilogram"
|
|
2409
|
+
| "enumBatteryStatus"
|
|
2410
|
+
| "enumBikeLightBeamAngleMode"
|
|
2411
|
+
| "enumBikeLightBatteryStatus"
|
|
2412
|
+
| "enumBikeLightNetworkConfigType"
|
|
2413
|
+
| "lights"
|
|
2414
|
+
| "seconds"
|
|
2415
|
+
| "minutes"
|
|
2416
|
+
| "hours"
|
|
2417
|
+
| "calories"
|
|
2418
|
+
| "kilojoules"
|
|
2419
|
+
| "milliseconds"
|
|
2420
|
+
| "secondPerMile"
|
|
2421
|
+
| "secondPerKilometer"
|
|
2422
|
+
| "centimeter"
|
|
2423
|
+
| "enumCoursePoint"
|
|
2424
|
+
| "bradians"
|
|
2425
|
+
| "enumSport"
|
|
2426
|
+
| "inchesHg"
|
|
2427
|
+
| "mmHg"
|
|
2428
|
+
| "mbars"
|
|
2429
|
+
| "hectoPascals"
|
|
2430
|
+
| "feetPerMin"
|
|
2431
|
+
| "metersPerMin"
|
|
2432
|
+
| "metersPerSec"
|
|
2433
|
+
| "eightCardinal";
|
|
2434
|
+
|
|
2435
|
+
export type ExdQualifiers = number
|
|
2436
|
+
| "noQualifier"
|
|
2437
|
+
| "instantaneous"
|
|
2438
|
+
| "average"
|
|
2439
|
+
| "lap"
|
|
2440
|
+
| "maximum"
|
|
2441
|
+
| "maximumAverage"
|
|
2442
|
+
| "maximumLap"
|
|
2443
|
+
| "lastLap"
|
|
2444
|
+
| "averageLap"
|
|
2445
|
+
| "toDestination"
|
|
2446
|
+
| "toGo"
|
|
2447
|
+
| "toNext"
|
|
2448
|
+
| "nextCoursePoint"
|
|
2449
|
+
| "total"
|
|
2450
|
+
| "threeSecondAverage"
|
|
2451
|
+
| "tenSecondAverage"
|
|
2452
|
+
| "thirtySecondAverage"
|
|
2453
|
+
| "percentMaximum"
|
|
2454
|
+
| "percentMaximumAverage"
|
|
2455
|
+
| "lapPercentMaximum"
|
|
2456
|
+
| "elapsed"
|
|
2457
|
+
| "sunrise"
|
|
2458
|
+
| "sunset"
|
|
2459
|
+
| "comparedToVirtualPartner"
|
|
2460
|
+
| "maximum24h"
|
|
2461
|
+
| "minimum24h"
|
|
2462
|
+
| "minimum"
|
|
2463
|
+
| "first"
|
|
2464
|
+
| "second"
|
|
2465
|
+
| "third"
|
|
2466
|
+
| "shifter"
|
|
2467
|
+
| "lastSport"
|
|
2468
|
+
| "moving"
|
|
2469
|
+
| "stopped"
|
|
2470
|
+
| "estimatedTotal"
|
|
2471
|
+
| "zone9"
|
|
2472
|
+
| "zone8"
|
|
2473
|
+
| "zone7"
|
|
2474
|
+
| "zone6"
|
|
2475
|
+
| "zone5"
|
|
2476
|
+
| "zone4"
|
|
2477
|
+
| "zone3"
|
|
2478
|
+
| "zone2"
|
|
2479
|
+
| "zone1";
|
|
2480
|
+
|
|
2481
|
+
export type ExdDescriptors = number
|
|
2482
|
+
| "bikeLightBatteryStatus"
|
|
2483
|
+
| "beamAngleStatus"
|
|
2484
|
+
| "bateryLevel"
|
|
2485
|
+
| "lightNetworkMode"
|
|
2486
|
+
| "numberLightsConnected"
|
|
2487
|
+
| "cadence"
|
|
2488
|
+
| "distance"
|
|
2489
|
+
| "estimatedTimeOfArrival"
|
|
2490
|
+
| "heading"
|
|
2491
|
+
| "time"
|
|
2492
|
+
| "batteryLevel"
|
|
2493
|
+
| "trainerResistance"
|
|
2494
|
+
| "trainerTargetPower"
|
|
2495
|
+
| "timeSeated"
|
|
2496
|
+
| "timeStanding"
|
|
2497
|
+
| "elevation"
|
|
2498
|
+
| "grade"
|
|
2499
|
+
| "ascent"
|
|
2500
|
+
| "descent"
|
|
2501
|
+
| "verticalSpeed"
|
|
2502
|
+
| "di2BatteryLevel"
|
|
2503
|
+
| "frontGear"
|
|
2504
|
+
| "rearGear"
|
|
2505
|
+
| "gearRatio"
|
|
2506
|
+
| "heartRate"
|
|
2507
|
+
| "heartRateZone"
|
|
2508
|
+
| "timeInHeartRateZone"
|
|
2509
|
+
| "heartRateReserve"
|
|
2510
|
+
| "calories"
|
|
2511
|
+
| "gpsAccuracy"
|
|
2512
|
+
| "gpsSignalStrength"
|
|
2513
|
+
| "temperature"
|
|
2514
|
+
| "timeOfDay"
|
|
2515
|
+
| "balance"
|
|
2516
|
+
| "pedalSmoothness"
|
|
2517
|
+
| "power"
|
|
2518
|
+
| "functionalThresholdPower"
|
|
2519
|
+
| "intensityFactor"
|
|
2520
|
+
| "work"
|
|
2521
|
+
| "powerRatio"
|
|
2522
|
+
| "normalizedPower"
|
|
2523
|
+
| "trainingStressScore"
|
|
2524
|
+
| "timeOnZone"
|
|
2525
|
+
| "speed"
|
|
2526
|
+
| "laps"
|
|
2527
|
+
| "reps"
|
|
2528
|
+
| "workoutStep"
|
|
2529
|
+
| "courseDistance"
|
|
2530
|
+
| "navigationDistance"
|
|
2531
|
+
| "courseEstimatedTimeOfArrival"
|
|
2532
|
+
| "navigationEstimatedTimeOfArrival"
|
|
2533
|
+
| "courseTime"
|
|
2534
|
+
| "navigationTime"
|
|
2535
|
+
| "courseHeading"
|
|
2536
|
+
| "navigationHeading"
|
|
2537
|
+
| "powerZone"
|
|
2538
|
+
| "torqueEffectiveness"
|
|
2539
|
+
| "timerTime"
|
|
2540
|
+
| "powerWeightRatio"
|
|
2541
|
+
| "leftPlatformCenterOffset"
|
|
2542
|
+
| "rightPlatformCenterOffset"
|
|
2543
|
+
| "leftPowerPhaseStartAngle"
|
|
2544
|
+
| "rightPowerPhaseStartAngle"
|
|
2545
|
+
| "leftPowerPhaseFinishAngle"
|
|
2546
|
+
| "rightPowerPhaseFinishAngle"
|
|
2547
|
+
| "gears" /** Combined gear information */
|
|
2548
|
+
| "pace"
|
|
2549
|
+
| "trainingEffect"
|
|
2550
|
+
| "verticalOscillation"
|
|
2551
|
+
| "verticalRatio"
|
|
2552
|
+
| "groundContactTime"
|
|
2553
|
+
| "leftGroundContactTimeBalance"
|
|
2554
|
+
| "rightGroundContactTimeBalance"
|
|
2555
|
+
| "strideLength"
|
|
2556
|
+
| "runningCadence"
|
|
2557
|
+
| "performanceCondition"
|
|
2558
|
+
| "courseType"
|
|
2559
|
+
| "timeInPowerZone"
|
|
2560
|
+
| "navigationTurn"
|
|
2561
|
+
| "courseLocation"
|
|
2562
|
+
| "navigationLocation"
|
|
2563
|
+
| "compass"
|
|
2564
|
+
| "gearCombo"
|
|
2565
|
+
| "muscleOxygen"
|
|
2566
|
+
| "icon"
|
|
2567
|
+
| "compassHeading"
|
|
2568
|
+
| "gpsHeading"
|
|
2569
|
+
| "gpsElevation"
|
|
2570
|
+
| "anaerobicTrainingEffect"
|
|
2571
|
+
| "course"
|
|
2572
|
+
| "offCourse"
|
|
2573
|
+
| "glideRatio"
|
|
2574
|
+
| "verticalDistance"
|
|
2575
|
+
| "vmg"
|
|
2576
|
+
| "ambientPressure"
|
|
2577
|
+
| "pressure"
|
|
2578
|
+
| "vam";
|
|
2579
|
+
|
|
2580
|
+
export type AutoActivityDetect = number
|
|
2581
|
+
| "none"
|
|
2582
|
+
| "running"
|
|
2583
|
+
| "cycling"
|
|
2584
|
+
| "swimming"
|
|
2585
|
+
| "walking"
|
|
2586
|
+
| "elliptical"
|
|
2587
|
+
| "sedentary";
|
|
2588
|
+
|
|
2589
|
+
export type SupportedExdScreenLayouts = number
|
|
2590
|
+
| "fullScreen"
|
|
2591
|
+
| "halfVertical"
|
|
2592
|
+
| "halfHorizontal"
|
|
2593
|
+
| "halfVerticalRightSplit"
|
|
2594
|
+
| "halfHorizontalBottomSplit"
|
|
2595
|
+
| "fullQuarterSplit"
|
|
2596
|
+
| "halfVerticalLeftSplit"
|
|
2597
|
+
| "halfHorizontalTopSplit";
|
|
2598
|
+
|
|
2599
|
+
export type FitBaseType = number
|
|
2600
|
+
| "enum"
|
|
2601
|
+
| "sint8"
|
|
2602
|
+
| "uint8"
|
|
2603
|
+
| "sint16"
|
|
2604
|
+
| "uint16"
|
|
2605
|
+
| "sint32"
|
|
2606
|
+
| "uint32"
|
|
2607
|
+
| "string"
|
|
2608
|
+
| "float32"
|
|
2609
|
+
| "float64"
|
|
2610
|
+
| "uint8z"
|
|
2611
|
+
| "uint16z"
|
|
2612
|
+
| "uint32z"
|
|
2613
|
+
| "byte"
|
|
2614
|
+
| "sint64"
|
|
2615
|
+
| "uint64"
|
|
2616
|
+
| "uint64z";
|
|
2617
|
+
|
|
2618
|
+
export type TurnType = number
|
|
2619
|
+
| "arrivingIdx"
|
|
2620
|
+
| "arrivingLeftIdx"
|
|
2621
|
+
| "arrivingRightIdx"
|
|
2622
|
+
| "arrivingViaIdx"
|
|
2623
|
+
| "arrivingViaLeftIdx"
|
|
2624
|
+
| "arrivingViaRightIdx"
|
|
2625
|
+
| "bearKeepLeftIdx"
|
|
2626
|
+
| "bearKeepRightIdx"
|
|
2627
|
+
| "continueIdx"
|
|
2628
|
+
| "exitLeftIdx"
|
|
2629
|
+
| "exitRightIdx"
|
|
2630
|
+
| "ferryIdx"
|
|
2631
|
+
| "roundabout45Idx"
|
|
2632
|
+
| "roundabout90Idx"
|
|
2633
|
+
| "roundabout135Idx"
|
|
2634
|
+
| "roundabout180Idx"
|
|
2635
|
+
| "roundabout225Idx"
|
|
2636
|
+
| "roundabout270Idx"
|
|
2637
|
+
| "roundabout315Idx"
|
|
2638
|
+
| "roundabout360Idx"
|
|
2639
|
+
| "roundaboutNeg45Idx"
|
|
2640
|
+
| "roundaboutNeg90Idx"
|
|
2641
|
+
| "roundaboutNeg135Idx"
|
|
2642
|
+
| "roundaboutNeg180Idx"
|
|
2643
|
+
| "roundaboutNeg225Idx"
|
|
2644
|
+
| "roundaboutNeg270Idx"
|
|
2645
|
+
| "roundaboutNeg315Idx"
|
|
2646
|
+
| "roundaboutNeg360Idx"
|
|
2647
|
+
| "roundaboutGenericIdx"
|
|
2648
|
+
| "roundaboutNegGenericIdx"
|
|
2649
|
+
| "sharpTurnLeftIdx"
|
|
2650
|
+
| "sharpTurnRightIdx"
|
|
2651
|
+
| "turnLeftIdx"
|
|
2652
|
+
| "turnRightIdx"
|
|
2653
|
+
| "uturnLeftIdx"
|
|
2654
|
+
| "uturnRightIdx"
|
|
2655
|
+
| "iconInvIdx"
|
|
2656
|
+
| "iconIdxCnt";
|
|
2657
|
+
|
|
2658
|
+
export type BikeLightBeamAngleMode = number
|
|
2659
|
+
| "manual"
|
|
2660
|
+
| "auto";
|
|
2661
|
+
|
|
2662
|
+
export type FitBaseUnit = number
|
|
2663
|
+
| "other"
|
|
2664
|
+
| "kilogram"
|
|
2665
|
+
| "pound";
|
|
2666
|
+
|
|
2667
|
+
export type SetType = number
|
|
2668
|
+
| "rest"
|
|
2669
|
+
| "active";
|
|
2670
|
+
|
|
2671
|
+
export type MaxMetCategory = number
|
|
2672
|
+
| "generic"
|
|
2673
|
+
| "cycling";
|
|
2674
|
+
|
|
2675
|
+
export type ExerciseCategory = number
|
|
2676
|
+
| "benchPress"
|
|
2677
|
+
| "calfRaise"
|
|
2678
|
+
| "cardio"
|
|
2679
|
+
| "carry"
|
|
2680
|
+
| "chop"
|
|
2681
|
+
| "core"
|
|
2682
|
+
| "crunch"
|
|
2683
|
+
| "curl"
|
|
2684
|
+
| "deadlift"
|
|
2685
|
+
| "flye"
|
|
2686
|
+
| "hipRaise"
|
|
2687
|
+
| "hipStability"
|
|
2688
|
+
| "hipSwing"
|
|
2689
|
+
| "hyperextension"
|
|
2690
|
+
| "lateralRaise"
|
|
2691
|
+
| "legCurl"
|
|
2692
|
+
| "legRaise"
|
|
2693
|
+
| "lunge"
|
|
2694
|
+
| "olympicLift"
|
|
2695
|
+
| "plank"
|
|
2696
|
+
| "plyo"
|
|
2697
|
+
| "pullUp"
|
|
2698
|
+
| "pushUp"
|
|
2699
|
+
| "row"
|
|
2700
|
+
| "shoulderPress"
|
|
2701
|
+
| "shoulderStability"
|
|
2702
|
+
| "shrug"
|
|
2703
|
+
| "sitUp"
|
|
2704
|
+
| "squat"
|
|
2705
|
+
| "totalBody"
|
|
2706
|
+
| "tricepsExtension"
|
|
2707
|
+
| "warmUp"
|
|
2708
|
+
| "run"
|
|
2709
|
+
| "bike"
|
|
2710
|
+
| "cardioSensors" /** Exercises within workouts that use GPS/sensors rather than rep counting */
|
|
2711
|
+
| "move"
|
|
2712
|
+
| "pose"
|
|
2713
|
+
| "bandedExercises"
|
|
2714
|
+
| "battleRope"
|
|
2715
|
+
| "elliptical"
|
|
2716
|
+
| "floorClimb"
|
|
2717
|
+
| "indoorBike"
|
|
2718
|
+
| "indoorRow"
|
|
2719
|
+
| "ladder"
|
|
2720
|
+
| "sandbag"
|
|
2721
|
+
| "sled"
|
|
2722
|
+
| "sledgeHammer"
|
|
2723
|
+
| "stairStepper"
|
|
2724
|
+
| "suspension"
|
|
2725
|
+
| "tire"
|
|
2726
|
+
| "runIndoor"
|
|
2727
|
+
| "bikeOutdoor"
|
|
2728
|
+
| "unknown";
|
|
2729
|
+
|
|
2730
|
+
export type BenchPressExerciseName = number
|
|
2731
|
+
| "alternatingDumbbellChestPressOnSwissBall"
|
|
2732
|
+
| "barbellBenchPress"
|
|
2733
|
+
| "barbellBoardBenchPress"
|
|
2734
|
+
| "barbellFloorPress"
|
|
2735
|
+
| "closeGripBarbellBenchPress"
|
|
2736
|
+
| "declineDumbbellBenchPress"
|
|
2737
|
+
| "dumbbellBenchPress"
|
|
2738
|
+
| "dumbbellFloorPress"
|
|
2739
|
+
| "inclineBarbellBenchPress"
|
|
2740
|
+
| "inclineDumbbellBenchPress"
|
|
2741
|
+
| "inclineSmithMachineBenchPress"
|
|
2742
|
+
| "isometricBarbellBenchPress"
|
|
2743
|
+
| "kettlebellChestPress"
|
|
2744
|
+
| "neutralGripDumbbellBenchPress"
|
|
2745
|
+
| "neutralGripDumbbellInclineBenchPress"
|
|
2746
|
+
| "oneArmFloorPress"
|
|
2747
|
+
| "weightedOneArmFloorPress"
|
|
2748
|
+
| "partialLockout"
|
|
2749
|
+
| "reverseGripBarbellBenchPress"
|
|
2750
|
+
| "reverseGripInclineBenchPress"
|
|
2751
|
+
| "singleArmCableChestPress"
|
|
2752
|
+
| "singleArmDumbbellBenchPress"
|
|
2753
|
+
| "smithMachineBenchPress"
|
|
2754
|
+
| "swissBallDumbbellChestPress"
|
|
2755
|
+
| "tripleStopBarbellBenchPress"
|
|
2756
|
+
| "wideGripBarbellBenchPress"
|
|
2757
|
+
| "alternatingDumbbellChestPress";
|
|
2758
|
+
|
|
2759
|
+
export type CalfRaiseExerciseName = number
|
|
2760
|
+
| "3WayCalfRaise"
|
|
2761
|
+
| "3WayWeightedCalfRaise"
|
|
2762
|
+
| "3WaySingleLegCalfRaise"
|
|
2763
|
+
| "3WayWeightedSingleLegCalfRaise"
|
|
2764
|
+
| "donkeyCalfRaise"
|
|
2765
|
+
| "weightedDonkeyCalfRaise"
|
|
2766
|
+
| "seatedCalfRaise"
|
|
2767
|
+
| "weightedSeatedCalfRaise"
|
|
2768
|
+
| "seatedDumbbellToeRaise"
|
|
2769
|
+
| "singleLegBentKneeCalfRaise"
|
|
2770
|
+
| "weightedSingleLegBentKneeCalfRaise"
|
|
2771
|
+
| "singleLegDeclinePushUp"
|
|
2772
|
+
| "singleLegDonkeyCalfRaise"
|
|
2773
|
+
| "weightedSingleLegDonkeyCalfRaise"
|
|
2774
|
+
| "singleLegHipRaiseWithKneeHold"
|
|
2775
|
+
| "singleLegStandingCalfRaise"
|
|
2776
|
+
| "singleLegStandingDumbbellCalfRaise"
|
|
2777
|
+
| "standingBarbellCalfRaise"
|
|
2778
|
+
| "standingCalfRaise"
|
|
2779
|
+
| "weightedStandingCalfRaise"
|
|
2780
|
+
| "standingDumbbellCalfRaise";
|
|
2781
|
+
|
|
2782
|
+
export type CardioExerciseName = number
|
|
2783
|
+
| "bobAndWeaveCircle"
|
|
2784
|
+
| "weightedBobAndWeaveCircle"
|
|
2785
|
+
| "cardioCoreCrawl"
|
|
2786
|
+
| "weightedCardioCoreCrawl"
|
|
2787
|
+
| "doubleUnder"
|
|
2788
|
+
| "weightedDoubleUnder"
|
|
2789
|
+
| "jumpRope"
|
|
2790
|
+
| "weightedJumpRope"
|
|
2791
|
+
| "jumpRopeCrossover"
|
|
2792
|
+
| "weightedJumpRopeCrossover"
|
|
2793
|
+
| "jumpRopeJog"
|
|
2794
|
+
| "weightedJumpRopeJog"
|
|
2795
|
+
| "jumpingJacks"
|
|
2796
|
+
| "weightedJumpingJacks"
|
|
2797
|
+
| "skiMoguls"
|
|
2798
|
+
| "weightedSkiMoguls"
|
|
2799
|
+
| "splitJacks"
|
|
2800
|
+
| "weightedSplitJacks"
|
|
2801
|
+
| "squatJacks"
|
|
2802
|
+
| "weightedSquatJacks"
|
|
2803
|
+
| "tripleUnder"
|
|
2804
|
+
| "weightedTripleUnder"
|
|
2805
|
+
| "elliptical"
|
|
2806
|
+
| "spinning"
|
|
2807
|
+
| "polePaddleForwardWheelchair"
|
|
2808
|
+
| "polePaddleBackwardWheelchair"
|
|
2809
|
+
| "poleHandcycleForwardWheelchair"
|
|
2810
|
+
| "poleHandcycleBackwardWheelchair"
|
|
2811
|
+
| "poleRainbowWheelchair"
|
|
2812
|
+
| "doublePunchForwardWheelchair"
|
|
2813
|
+
| "doublePunchDownWheelchair"
|
|
2814
|
+
| "doublePunchSidewaysWheelchair"
|
|
2815
|
+
| "doublePunchUpWheelchair"
|
|
2816
|
+
| "sitSkiWheelchair"
|
|
2817
|
+
| "sittingJacksWheelchair"
|
|
2818
|
+
| "punchForwardWheelchair"
|
|
2819
|
+
| "punchDownWheelchair"
|
|
2820
|
+
| "punchSidewaysWheelchair"
|
|
2821
|
+
| "punchUpWheelchair"
|
|
2822
|
+
| "punchBagWheelchair"
|
|
2823
|
+
| "poleDdFfUuWheelchair"
|
|
2824
|
+
| "butterflyArmsWheelchair"
|
|
2825
|
+
| "punch";
|
|
2826
|
+
|
|
2827
|
+
export type CarryExerciseName = number
|
|
2828
|
+
| "barHolds"
|
|
2829
|
+
| "farmersWalk"
|
|
2830
|
+
| "farmersWalkOnToes"
|
|
2831
|
+
| "hexDumbbellHold"
|
|
2832
|
+
| "overheadCarry"
|
|
2833
|
+
| "dumbbellWaiterCarry"
|
|
2834
|
+
| "farmersCarryWalkLunge"
|
|
2835
|
+
| "farmersCarry"
|
|
2836
|
+
| "farmersCarryOnToes";
|
|
2837
|
+
|
|
2838
|
+
export type ChopExerciseName = number
|
|
2839
|
+
| "cablePullThrough"
|
|
2840
|
+
| "cableRotationalLift"
|
|
2841
|
+
| "cableWoodchop"
|
|
2842
|
+
| "crossChopToKnee"
|
|
2843
|
+
| "weightedCrossChopToKnee"
|
|
2844
|
+
| "dumbbellChop"
|
|
2845
|
+
| "halfKneelingRotation"
|
|
2846
|
+
| "weightedHalfKneelingRotation"
|
|
2847
|
+
| "halfKneelingRotationalChop"
|
|
2848
|
+
| "halfKneelingRotationalReverseChop"
|
|
2849
|
+
| "halfKneelingStabilityChop"
|
|
2850
|
+
| "halfKneelingStabilityReverseChop"
|
|
2851
|
+
| "kneelingRotationalChop"
|
|
2852
|
+
| "kneelingRotationalReverseChop"
|
|
2853
|
+
| "kneelingStabilityChop"
|
|
2854
|
+
| "kneelingWoodchopper"
|
|
2855
|
+
| "medicineBallWoodChops"
|
|
2856
|
+
| "powerSquatChops"
|
|
2857
|
+
| "weightedPowerSquatChops"
|
|
2858
|
+
| "standingRotationalChop"
|
|
2859
|
+
| "standingSplitRotationalChop"
|
|
2860
|
+
| "standingSplitRotationalReverseChop"
|
|
2861
|
+
| "standingStabilityReverseChop";
|
|
2862
|
+
|
|
2863
|
+
export type CoreExerciseName = number
|
|
2864
|
+
| "absJabs"
|
|
2865
|
+
| "weightedAbsJabs"
|
|
2866
|
+
| "alternatingPlateReach"
|
|
2867
|
+
| "barbellRollout"
|
|
2868
|
+
| "weightedBarbellRollout"
|
|
2869
|
+
| "bodyBarObliqueTwist"
|
|
2870
|
+
| "cableCorePress"
|
|
2871
|
+
| "cableSideBend"
|
|
2872
|
+
| "sideBend"
|
|
2873
|
+
| "weightedSideBend"
|
|
2874
|
+
| "crescentCircle"
|
|
2875
|
+
| "weightedCrescentCircle"
|
|
2876
|
+
| "cyclingRussianTwist"
|
|
2877
|
+
| "weightedCyclingRussianTwist"
|
|
2878
|
+
| "elevatedFeetRussianTwist"
|
|
2879
|
+
| "weightedElevatedFeetRussianTwist"
|
|
2880
|
+
| "halfTurkishGetUp"
|
|
2881
|
+
| "kettlebellWindmill"
|
|
2882
|
+
| "kneelingAbWheel"
|
|
2883
|
+
| "weightedKneelingAbWheel"
|
|
2884
|
+
| "modifiedFrontLever"
|
|
2885
|
+
| "openKneeTucks"
|
|
2886
|
+
| "weightedOpenKneeTucks"
|
|
2887
|
+
| "sideAbsLegLift"
|
|
2888
|
+
| "weightedSideAbsLegLift"
|
|
2889
|
+
| "swissBallJackknife"
|
|
2890
|
+
| "weightedSwissBallJackknife"
|
|
2891
|
+
| "swissBallPike"
|
|
2892
|
+
| "weightedSwissBallPike"
|
|
2893
|
+
| "swissBallRollout"
|
|
2894
|
+
| "weightedSwissBallRollout"
|
|
2895
|
+
| "triangleHipPress"
|
|
2896
|
+
| "weightedTriangleHipPress"
|
|
2897
|
+
| "trxSuspendedJackknife"
|
|
2898
|
+
| "weightedTrxSuspendedJackknife"
|
|
2899
|
+
| "uBoat"
|
|
2900
|
+
| "weightedUBoat"
|
|
2901
|
+
| "windmillSwitches"
|
|
2902
|
+
| "weightedWindmillSwitches"
|
|
2903
|
+
| "alternatingSlideOut"
|
|
2904
|
+
| "weightedAlternatingSlideOut"
|
|
2905
|
+
| "ghdBackExtensions"
|
|
2906
|
+
| "weightedGhdBackExtensions"
|
|
2907
|
+
| "overheadWalk"
|
|
2908
|
+
| "inchworm"
|
|
2909
|
+
| "weightedModifiedFrontLever"
|
|
2910
|
+
| "russianTwist"
|
|
2911
|
+
| "abdominalLegRotations" /** Deprecated do not use */
|
|
2912
|
+
| "armAndLegExtensionOnKnees"
|
|
2913
|
+
| "bicycle"
|
|
2914
|
+
| "bicepCurlWithLegExtension"
|
|
2915
|
+
| "catCow"
|
|
2916
|
+
| "corkscrew"
|
|
2917
|
+
| "crissCross"
|
|
2918
|
+
| "crissCrossWithBall" /** Deprecated do not use */
|
|
2919
|
+
| "doubleLegStretch"
|
|
2920
|
+
| "kneeFolds"
|
|
2921
|
+
| "lowerLift"
|
|
2922
|
+
| "neckPull"
|
|
2923
|
+
| "pelvicClocks"
|
|
2924
|
+
| "rollOver"
|
|
2925
|
+
| "rollUp"
|
|
2926
|
+
| "rolling"
|
|
2927
|
+
| "rowing1"
|
|
2928
|
+
| "rowing2"
|
|
2929
|
+
| "scissors"
|
|
2930
|
+
| "singleLegCircles"
|
|
2931
|
+
| "singleLegStretch"
|
|
2932
|
+
| "snakeTwist1And2" /** Deprecated do not use */
|
|
2933
|
+
| "swan"
|
|
2934
|
+
| "swimming"
|
|
2935
|
+
| "teaser"
|
|
2936
|
+
| "theHundred"
|
|
2937
|
+
| "bicepCurlWithLegExtensionWithWeights"
|
|
2938
|
+
| "hangingLSit"
|
|
2939
|
+
| "lowerLiftWithWeights"
|
|
2940
|
+
| "ringLSit"
|
|
2941
|
+
| "rowing1WithWeights"
|
|
2942
|
+
| "rowing2WithWeights"
|
|
2943
|
+
| "scissorsWithWeights"
|
|
2944
|
+
| "singleLegStretchWithWeights"
|
|
2945
|
+
| "toesToElbows"
|
|
2946
|
+
| "weightedCrissCross"
|
|
2947
|
+
| "weightedDoubleLegStretch"
|
|
2948
|
+
| "weightedTheHundred"
|
|
2949
|
+
| "lSit"
|
|
2950
|
+
| "turkishGetUp"
|
|
2951
|
+
| "weightedRingLSit"
|
|
2952
|
+
| "weightedHangingLSit"
|
|
2953
|
+
| "weightedLSit"
|
|
2954
|
+
| "sideBendLowWheelchair"
|
|
2955
|
+
| "sideBendMidWheelchair"
|
|
2956
|
+
| "sideBendHighWheelchair"
|
|
2957
|
+
| "seatedSideBend";
|
|
2958
|
+
|
|
2959
|
+
export type CrunchExerciseName = number
|
|
2960
|
+
| "bicycleCrunch"
|
|
2961
|
+
| "cableCrunch"
|
|
2962
|
+
| "circularArmCrunch"
|
|
2963
|
+
| "crossedArmsCrunch"
|
|
2964
|
+
| "weightedCrossedArmsCrunch"
|
|
2965
|
+
| "crossLegReverseCrunch"
|
|
2966
|
+
| "weightedCrossLegReverseCrunch"
|
|
2967
|
+
| "crunchChop"
|
|
2968
|
+
| "weightedCrunchChop"
|
|
2969
|
+
| "doubleCrunch"
|
|
2970
|
+
| "weightedDoubleCrunch"
|
|
2971
|
+
| "elbowToKneeCrunch"
|
|
2972
|
+
| "weightedElbowToKneeCrunch"
|
|
2973
|
+
| "flutterKicks"
|
|
2974
|
+
| "weightedFlutterKicks"
|
|
2975
|
+
| "foamRollerReverseCrunchOnBench"
|
|
2976
|
+
| "weightedFoamRollerReverseCrunchOnBench"
|
|
2977
|
+
| "foamRollerReverseCrunchWithDumbbell"
|
|
2978
|
+
| "foamRollerReverseCrunchWithMedicineBall"
|
|
2979
|
+
| "frogPress"
|
|
2980
|
+
| "hangingKneeRaiseObliqueCrunch"
|
|
2981
|
+
| "weightedHangingKneeRaiseObliqueCrunch"
|
|
2982
|
+
| "hipCrossover"
|
|
2983
|
+
| "weightedHipCrossover"
|
|
2984
|
+
| "hollowRock"
|
|
2985
|
+
| "weightedHollowRock"
|
|
2986
|
+
| "inclineReverseCrunch"
|
|
2987
|
+
| "weightedInclineReverseCrunch"
|
|
2988
|
+
| "kneelingCableCrunch"
|
|
2989
|
+
| "kneelingCrossCrunch"
|
|
2990
|
+
| "weightedKneelingCrossCrunch"
|
|
2991
|
+
| "kneelingObliqueCableCrunch"
|
|
2992
|
+
| "kneesToElbow"
|
|
2993
|
+
| "legExtensions"
|
|
2994
|
+
| "weightedLegExtensions"
|
|
2995
|
+
| "legLevers"
|
|
2996
|
+
| "mcgillCurlUp"
|
|
2997
|
+
| "weightedMcgillCurlUp"
|
|
2998
|
+
| "modifiedPilatesRollUpWithBall"
|
|
2999
|
+
| "weightedModifiedPilatesRollUpWithBall"
|
|
3000
|
+
| "pilatesCrunch"
|
|
3001
|
+
| "weightedPilatesCrunch"
|
|
3002
|
+
| "pilatesRollUpWithBall"
|
|
3003
|
+
| "weightedPilatesRollUpWithBall"
|
|
3004
|
+
| "raisedLegsCrunch"
|
|
3005
|
+
| "weightedRaisedLegsCrunch"
|
|
3006
|
+
| "reverseCrunch"
|
|
3007
|
+
| "weightedReverseCrunch"
|
|
3008
|
+
| "reverseCrunchOnABench"
|
|
3009
|
+
| "weightedReverseCrunchOnABench"
|
|
3010
|
+
| "reverseCurlAndLift"
|
|
3011
|
+
| "weightedReverseCurlAndLift"
|
|
3012
|
+
| "rotationalLift"
|
|
3013
|
+
| "weightedRotationalLift"
|
|
3014
|
+
| "seatedAlternatingReverseCrunch"
|
|
3015
|
+
| "weightedSeatedAlternatingReverseCrunch"
|
|
3016
|
+
| "seatedLegU"
|
|
3017
|
+
| "weightedSeatedLegU"
|
|
3018
|
+
| "sideToSideCrunchAndWeave"
|
|
3019
|
+
| "weightedSideToSideCrunchAndWeave"
|
|
3020
|
+
| "singleLegReverseCrunch"
|
|
3021
|
+
| "weightedSingleLegReverseCrunch"
|
|
3022
|
+
| "skaterCrunchCross"
|
|
3023
|
+
| "weightedSkaterCrunchCross"
|
|
3024
|
+
| "standingCableCrunch"
|
|
3025
|
+
| "standingSideCrunch"
|
|
3026
|
+
| "stepClimb"
|
|
3027
|
+
| "weightedStepClimb"
|
|
3028
|
+
| "swissBallCrunch"
|
|
3029
|
+
| "swissBallReverseCrunch"
|
|
3030
|
+
| "weightedSwissBallReverseCrunch"
|
|
3031
|
+
| "swissBallRussianTwist"
|
|
3032
|
+
| "weightedSwissBallRussianTwist"
|
|
3033
|
+
| "swissBallSideCrunch"
|
|
3034
|
+
| "weightedSwissBallSideCrunch"
|
|
3035
|
+
| "thoracicCrunchesOnFoamRoller"
|
|
3036
|
+
| "weightedThoracicCrunchesOnFoamRoller"
|
|
3037
|
+
| "tricepsCrunch"
|
|
3038
|
+
| "weightedBicycleCrunch"
|
|
3039
|
+
| "weightedCrunch"
|
|
3040
|
+
| "weightedSwissBallCrunch"
|
|
3041
|
+
| "toesToBar"
|
|
3042
|
+
| "weightedToesToBar"
|
|
3043
|
+
| "crunch"
|
|
3044
|
+
| "straightLegCrunchWithBall"
|
|
3045
|
+
| "legClimbCrunch";
|
|
3046
|
+
|
|
3047
|
+
export type CurlExerciseName = number
|
|
3048
|
+
| "alternatingDumbbellBicepsCurl"
|
|
3049
|
+
| "alternatingDumbbellBicepsCurlOnSwissBall"
|
|
3050
|
+
| "alternatingInclineDumbbellBicepsCurl"
|
|
3051
|
+
| "barbellBicepsCurl"
|
|
3052
|
+
| "barbellReverseWristCurl"
|
|
3053
|
+
| "barbellWristCurl"
|
|
3054
|
+
| "behindTheBackBarbellReverseWristCurl"
|
|
3055
|
+
| "behindTheBackOneArmCableCurl"
|
|
3056
|
+
| "cableBicepsCurl"
|
|
3057
|
+
| "cableHammerCurl"
|
|
3058
|
+
| "cheatingBarbellBicepsCurl"
|
|
3059
|
+
| "closeGripEzBarBicepsCurl"
|
|
3060
|
+
| "crossBodyDumbbellHammerCurl"
|
|
3061
|
+
| "deadHangBicepsCurl"
|
|
3062
|
+
| "declineHammerCurl"
|
|
3063
|
+
| "dumbbellBicepsCurlWithStaticHold"
|
|
3064
|
+
| "dumbbellHammerCurl"
|
|
3065
|
+
| "dumbbellReverseWristCurl"
|
|
3066
|
+
| "dumbbellWristCurl"
|
|
3067
|
+
| "ezBarPreacherCurl"
|
|
3068
|
+
| "forwardBendBicepsCurl"
|
|
3069
|
+
| "hammerCurlToPress"
|
|
3070
|
+
| "inclineDumbbellBicepsCurl"
|
|
3071
|
+
| "inclineOffsetThumbDumbbellCurl"
|
|
3072
|
+
| "kettlebellBicepsCurl"
|
|
3073
|
+
| "lyingConcentrationCableCurl"
|
|
3074
|
+
| "oneArmPreacherCurl"
|
|
3075
|
+
| "platePinchCurl"
|
|
3076
|
+
| "preacherCurlWithCable"
|
|
3077
|
+
| "reverseEzBarCurl"
|
|
3078
|
+
| "reverseGripWristCurl"
|
|
3079
|
+
| "reverseGripBarbellBicepsCurl"
|
|
3080
|
+
| "seatedAlternatingDumbbellBicepsCurl"
|
|
3081
|
+
| "seatedDumbbellBicepsCurl"
|
|
3082
|
+
| "seatedReverseDumbbellCurl"
|
|
3083
|
+
| "splitStanceOffsetPinkyDumbbellCurl"
|
|
3084
|
+
| "standingAlternatingDumbbellCurls"
|
|
3085
|
+
| "standingDumbbellBicepsCurl"
|
|
3086
|
+
| "standingEzBarBicepsCurl"
|
|
3087
|
+
| "staticCurl"
|
|
3088
|
+
| "swissBallDumbbellOverheadTricepsExtension"
|
|
3089
|
+
| "swissBallEzBarPreacherCurl"
|
|
3090
|
+
| "twistingStandingDumbbellBicepsCurl"
|
|
3091
|
+
| "wideGripEzBarBicepsCurl"
|
|
3092
|
+
| "oneArmConcentrationCurl"
|
|
3093
|
+
| "standingZottmanBicepsCurl"
|
|
3094
|
+
| "dumbbellBicepsCurl"
|
|
3095
|
+
| "dragCurlWheelchair"
|
|
3096
|
+
| "dumbbellBicepsCurlWheelchair"
|
|
3097
|
+
| "bottleCurl"
|
|
3098
|
+
| "seatedBottleCurl";
|
|
3099
|
+
|
|
3100
|
+
export type DeadliftExerciseName = number
|
|
3101
|
+
| "barbellDeadlift"
|
|
3102
|
+
| "barbellStraightLegDeadlift"
|
|
3103
|
+
| "dumbbellDeadlift"
|
|
3104
|
+
| "dumbbellSingleLegDeadliftToRow"
|
|
3105
|
+
| "dumbbellStraightLegDeadlift"
|
|
3106
|
+
| "kettlebellFloorToShelf"
|
|
3107
|
+
| "oneArmOneLegDeadlift"
|
|
3108
|
+
| "rackPull"
|
|
3109
|
+
| "rotationalDumbbellStraightLegDeadlift"
|
|
3110
|
+
| "singleArmDeadlift"
|
|
3111
|
+
| "singleLegBarbellDeadlift"
|
|
3112
|
+
| "singleLegBarbellStraightLegDeadlift"
|
|
3113
|
+
| "singleLegDeadliftWithBarbell"
|
|
3114
|
+
| "singleLegRdlCircuit"
|
|
3115
|
+
| "singleLegRomanianDeadliftWithDumbbell"
|
|
3116
|
+
| "sumoDeadlift"
|
|
3117
|
+
| "sumoDeadliftHighPull"
|
|
3118
|
+
| "trapBarDeadlift"
|
|
3119
|
+
| "wideGripBarbellDeadlift"
|
|
3120
|
+
| "kettlebellDeadlift"
|
|
3121
|
+
| "kettlebellSumoDeadlift"
|
|
3122
|
+
| "romanianDeadlift"
|
|
3123
|
+
| "singleLegRomanianDeadliftCircuit"
|
|
3124
|
+
| "straightLegDeadlift";
|
|
3125
|
+
|
|
3126
|
+
export type FlyeExerciseName = number
|
|
3127
|
+
| "cableCrossover"
|
|
3128
|
+
| "declineDumbbellFlye"
|
|
3129
|
+
| "dumbbellFlye"
|
|
3130
|
+
| "inclineDumbbellFlye"
|
|
3131
|
+
| "kettlebellFlye"
|
|
3132
|
+
| "kneelingRearFlye"
|
|
3133
|
+
| "singleArmStandingCableReverseFlye"
|
|
3134
|
+
| "swissBallDumbbellFlye"
|
|
3135
|
+
| "armRotations"
|
|
3136
|
+
| "hugATree"
|
|
3137
|
+
| "faceDownInclineReverseFlye"
|
|
3138
|
+
| "inclineReverseFlye"
|
|
3139
|
+
| "rearDeltFlyWheelchair";
|
|
3140
|
+
|
|
3141
|
+
export type HipRaiseExerciseName = number
|
|
3142
|
+
| "barbellHipThrustOnFloor"
|
|
3143
|
+
| "barbellHipThrustWithBench"
|
|
3144
|
+
| "bentKneeSwissBallReverseHipRaise"
|
|
3145
|
+
| "weightedBentKneeSwissBallReverseHipRaise"
|
|
3146
|
+
| "bridgeWithLegExtension"
|
|
3147
|
+
| "weightedBridgeWithLegExtension"
|
|
3148
|
+
| "clamBridge"
|
|
3149
|
+
| "frontKickTabletop"
|
|
3150
|
+
| "weightedFrontKickTabletop"
|
|
3151
|
+
| "hipExtensionAndCross"
|
|
3152
|
+
| "weightedHipExtensionAndCross"
|
|
3153
|
+
| "hipRaise"
|
|
3154
|
+
| "weightedHipRaise"
|
|
3155
|
+
| "hipRaiseWithFeetOnSwissBall"
|
|
3156
|
+
| "weightedHipRaiseWithFeetOnSwissBall"
|
|
3157
|
+
| "hipRaiseWithHeadOnBosuBall"
|
|
3158
|
+
| "weightedHipRaiseWithHeadOnBosuBall"
|
|
3159
|
+
| "hipRaiseWithHeadOnSwissBall"
|
|
3160
|
+
| "weightedHipRaiseWithHeadOnSwissBall"
|
|
3161
|
+
| "hipRaiseWithKneeSqueeze"
|
|
3162
|
+
| "weightedHipRaiseWithKneeSqueeze"
|
|
3163
|
+
| "inclineRearLegExtension"
|
|
3164
|
+
| "weightedInclineRearLegExtension"
|
|
3165
|
+
| "kettlebellSwing"
|
|
3166
|
+
| "marchingHipRaise"
|
|
3167
|
+
| "weightedMarchingHipRaise"
|
|
3168
|
+
| "marchingHipRaiseWithFeetOnASwissBall"
|
|
3169
|
+
| "weightedMarchingHipRaiseWithFeetOnASwissBall"
|
|
3170
|
+
| "reverseHipRaise"
|
|
3171
|
+
| "weightedReverseHipRaise"
|
|
3172
|
+
| "singleLegHipRaise"
|
|
3173
|
+
| "weightedSingleLegHipRaise"
|
|
3174
|
+
| "singleLegHipRaiseWithFootOnBench"
|
|
3175
|
+
| "weightedSingleLegHipRaiseWithFootOnBench"
|
|
3176
|
+
| "singleLegHipRaiseWithFootOnBosuBall"
|
|
3177
|
+
| "weightedSingleLegHipRaiseWithFootOnBosuBall"
|
|
3178
|
+
| "singleLegHipRaiseWithFootOnFoamRoller"
|
|
3179
|
+
| "weightedSingleLegHipRaiseWithFootOnFoamRoller"
|
|
3180
|
+
| "singleLegHipRaiseWithFootOnMedicineBall"
|
|
3181
|
+
| "weightedSingleLegHipRaiseWithFootOnMedicineBall"
|
|
3182
|
+
| "singleLegHipRaiseWithHeadOnBosuBall"
|
|
3183
|
+
| "weightedSingleLegHipRaiseWithHeadOnBosuBall"
|
|
3184
|
+
| "weightedClamBridge"
|
|
3185
|
+
| "singleLegSwissBallHipRaiseAndLegCurl"
|
|
3186
|
+
| "clams"
|
|
3187
|
+
| "innerThighCircles" /** Deprecated do not use */
|
|
3188
|
+
| "innerThighSideLift" /** Deprecated do not use */
|
|
3189
|
+
| "legCircles"
|
|
3190
|
+
| "legLift"
|
|
3191
|
+
| "legLiftInExternalRotation";
|
|
3192
|
+
|
|
3193
|
+
export type HipStabilityExerciseName = number
|
|
3194
|
+
| "bandSideLyingLegRaise"
|
|
3195
|
+
| "deadBug"
|
|
3196
|
+
| "weightedDeadBug"
|
|
3197
|
+
| "externalHipRaise"
|
|
3198
|
+
| "weightedExternalHipRaise"
|
|
3199
|
+
| "fireHydrantKicks"
|
|
3200
|
+
| "weightedFireHydrantKicks"
|
|
3201
|
+
| "hipCircles"
|
|
3202
|
+
| "weightedHipCircles"
|
|
3203
|
+
| "innerThighLift"
|
|
3204
|
+
| "weightedInnerThighLift"
|
|
3205
|
+
| "lateralWalksWithBandAtAnkles"
|
|
3206
|
+
| "pretzelSideKick"
|
|
3207
|
+
| "weightedPretzelSideKick"
|
|
3208
|
+
| "proneHipInternalRotation"
|
|
3209
|
+
| "weightedProneHipInternalRotation"
|
|
3210
|
+
| "quadruped"
|
|
3211
|
+
| "quadrupedHipExtension"
|
|
3212
|
+
| "weightedQuadrupedHipExtension"
|
|
3213
|
+
| "quadrupedWithLegLift"
|
|
3214
|
+
| "weightedQuadrupedWithLegLift"
|
|
3215
|
+
| "sideLyingLegRaise"
|
|
3216
|
+
| "weightedSideLyingLegRaise"
|
|
3217
|
+
| "slidingHipAdduction"
|
|
3218
|
+
| "weightedSlidingHipAdduction"
|
|
3219
|
+
| "standingAdduction"
|
|
3220
|
+
| "weightedStandingAdduction"
|
|
3221
|
+
| "standingCableHipAbduction"
|
|
3222
|
+
| "standingHipAbduction"
|
|
3223
|
+
| "weightedStandingHipAbduction"
|
|
3224
|
+
| "standingRearLegRaise"
|
|
3225
|
+
| "weightedStandingRearLegRaise"
|
|
3226
|
+
| "supineHipInternalRotation"
|
|
3227
|
+
| "weightedSupineHipInternalRotation"
|
|
3228
|
+
| "lyingAbductionStretch";
|
|
3229
|
+
|
|
3230
|
+
export type HipSwingExerciseName = number
|
|
3231
|
+
| "singleArmKettlebellSwing"
|
|
3232
|
+
| "singleArmDumbbellSwing"
|
|
3233
|
+
| "stepOutSwing"
|
|
3234
|
+
| "oneArmSwing";
|
|
3235
|
+
|
|
3236
|
+
export type HyperextensionExerciseName = number
|
|
3237
|
+
| "backExtensionWithOppositeArmAndLegReach"
|
|
3238
|
+
| "weightedBackExtensionWithOppositeArmAndLegReach"
|
|
3239
|
+
| "baseRotations"
|
|
3240
|
+
| "weightedBaseRotations"
|
|
3241
|
+
| "bentKneeReverseHyperextension"
|
|
3242
|
+
| "weightedBentKneeReverseHyperextension"
|
|
3243
|
+
| "hollowHoldAndRoll"
|
|
3244
|
+
| "weightedHollowHoldAndRoll"
|
|
3245
|
+
| "kicks"
|
|
3246
|
+
| "weightedKicks"
|
|
3247
|
+
| "kneeRaises"
|
|
3248
|
+
| "weightedKneeRaises"
|
|
3249
|
+
| "kneelingSuperman"
|
|
3250
|
+
| "weightedKneelingSuperman"
|
|
3251
|
+
| "latPullDownWithRow"
|
|
3252
|
+
| "medicineBallDeadliftToReach"
|
|
3253
|
+
| "oneArmOneLegRow"
|
|
3254
|
+
| "oneArmRowWithBand"
|
|
3255
|
+
| "overheadLungeWithMedicineBall"
|
|
3256
|
+
| "plankKneeTucks"
|
|
3257
|
+
| "weightedPlankKneeTucks"
|
|
3258
|
+
| "sideStep"
|
|
3259
|
+
| "weightedSideStep"
|
|
3260
|
+
| "singleLegBackExtension"
|
|
3261
|
+
| "weightedSingleLegBackExtension"
|
|
3262
|
+
| "spineExtension"
|
|
3263
|
+
| "weightedSpineExtension"
|
|
3264
|
+
| "staticBackExtension"
|
|
3265
|
+
| "weightedStaticBackExtension"
|
|
3266
|
+
| "supermanFromFloor"
|
|
3267
|
+
| "weightedSupermanFromFloor"
|
|
3268
|
+
| "swissBallBackExtension"
|
|
3269
|
+
| "weightedSwissBallBackExtension"
|
|
3270
|
+
| "swissBallHyperextension"
|
|
3271
|
+
| "weightedSwissBallHyperextension"
|
|
3272
|
+
| "swissBallOppositeArmAndLegLift"
|
|
3273
|
+
| "weightedSwissBallOppositeArmAndLegLift"
|
|
3274
|
+
| "supermanOnSwissBall"
|
|
3275
|
+
| "cobra"
|
|
3276
|
+
| "supineFloorBarre" /** Deprecated do not use */;
|
|
3277
|
+
|
|
3278
|
+
export type LateralRaiseExerciseName = number
|
|
3279
|
+
| "45DegreeCableExternalRotation"
|
|
3280
|
+
| "alternatingLateralRaiseWithStaticHold"
|
|
3281
|
+
| "barMuscleUp"
|
|
3282
|
+
| "bentOverLateralRaise"
|
|
3283
|
+
| "cableDiagonalRaise"
|
|
3284
|
+
| "cableFrontRaise"
|
|
3285
|
+
| "calorieRow"
|
|
3286
|
+
| "comboShoulderRaise"
|
|
3287
|
+
| "dumbbellDiagonalRaise"
|
|
3288
|
+
| "dumbbellVRaise"
|
|
3289
|
+
| "frontRaise"
|
|
3290
|
+
| "leaningDumbbellLateralRaise"
|
|
3291
|
+
| "lyingDumbbellRaise"
|
|
3292
|
+
| "muscleUp"
|
|
3293
|
+
| "oneArmCableLateralRaise"
|
|
3294
|
+
| "overhandGripRearLateralRaise"
|
|
3295
|
+
| "plateRaises"
|
|
3296
|
+
| "ringDip"
|
|
3297
|
+
| "weightedRingDip"
|
|
3298
|
+
| "ringMuscleUp"
|
|
3299
|
+
| "weightedRingMuscleUp"
|
|
3300
|
+
| "ropeClimb"
|
|
3301
|
+
| "weightedRopeClimb"
|
|
3302
|
+
| "scaption"
|
|
3303
|
+
| "seatedLateralRaise"
|
|
3304
|
+
| "seatedRearLateralRaise"
|
|
3305
|
+
| "sideLyingLateralRaise"
|
|
3306
|
+
| "standingLift"
|
|
3307
|
+
| "suspendedRow"
|
|
3308
|
+
| "underhandGripRearLateralRaise"
|
|
3309
|
+
| "wallSlide"
|
|
3310
|
+
| "weightedWallSlide"
|
|
3311
|
+
| "armCircles"
|
|
3312
|
+
| "shavingTheHead"
|
|
3313
|
+
| "dumbbellLateralRaise"
|
|
3314
|
+
| "ringDipKipping"
|
|
3315
|
+
| "wallWalk"
|
|
3316
|
+
| "dumbbellFrontRaiseWheelchair"
|
|
3317
|
+
| "dumbbellLateralRaiseWheelchair"
|
|
3318
|
+
| "poleDoubleArmOverheadAndForwardWheelchair"
|
|
3319
|
+
| "poleStraightArmOverheadWheelchair";
|
|
3320
|
+
|
|
3321
|
+
export type LegCurlExerciseName = number
|
|
3322
|
+
| "legCurl"
|
|
3323
|
+
| "weightedLegCurl"
|
|
3324
|
+
| "goodMorning"
|
|
3325
|
+
| "seatedBarbellGoodMorning"
|
|
3326
|
+
| "singleLegBarbellGoodMorning"
|
|
3327
|
+
| "singleLegSlidingLegCurl"
|
|
3328
|
+
| "slidingLegCurl"
|
|
3329
|
+
| "splitBarbellGoodMorning"
|
|
3330
|
+
| "splitStanceExtension"
|
|
3331
|
+
| "staggeredStanceGoodMorning"
|
|
3332
|
+
| "swissBallHipRaiseAndLegCurl"
|
|
3333
|
+
| "zercherGoodMorning"
|
|
3334
|
+
| "bandGoodMorning"
|
|
3335
|
+
| "barGoodMorning";
|
|
3336
|
+
|
|
3337
|
+
export type LegRaiseExerciseName = number
|
|
3338
|
+
| "hangingKneeRaise"
|
|
3339
|
+
| "hangingLegRaise"
|
|
3340
|
+
| "weightedHangingLegRaise"
|
|
3341
|
+
| "hangingSingleLegRaise"
|
|
3342
|
+
| "weightedHangingSingleLegRaise"
|
|
3343
|
+
| "kettlebellLegRaises"
|
|
3344
|
+
| "legLoweringDrill"
|
|
3345
|
+
| "weightedLegLoweringDrill"
|
|
3346
|
+
| "lyingStraightLegRaise"
|
|
3347
|
+
| "weightedLyingStraightLegRaise"
|
|
3348
|
+
| "medicineBallLegDrops"
|
|
3349
|
+
| "quadrupedLegRaise"
|
|
3350
|
+
| "weightedQuadrupedLegRaise"
|
|
3351
|
+
| "reverseLegRaise"
|
|
3352
|
+
| "weightedReverseLegRaise"
|
|
3353
|
+
| "reverseLegRaiseOnSwissBall"
|
|
3354
|
+
| "weightedReverseLegRaiseOnSwissBall"
|
|
3355
|
+
| "singleLegLoweringDrill"
|
|
3356
|
+
| "weightedSingleLegLoweringDrill"
|
|
3357
|
+
| "weightedHangingKneeRaise"
|
|
3358
|
+
| "lateralStepover"
|
|
3359
|
+
| "weightedLateralStepover";
|
|
3360
|
+
|
|
3361
|
+
export type LungeExerciseName = number
|
|
3362
|
+
| "overheadLunge"
|
|
3363
|
+
| "lungeMatrix"
|
|
3364
|
+
| "weightedLungeMatrix"
|
|
3365
|
+
| "alternatingBarbellForwardLunge"
|
|
3366
|
+
| "alternatingDumbbellLungeWithReach"
|
|
3367
|
+
| "backFootElevatedDumbbellSplitSquat"
|
|
3368
|
+
| "barbellBoxLunge"
|
|
3369
|
+
| "barbellBulgarianSplitSquat"
|
|
3370
|
+
| "barbellCrossoverLunge"
|
|
3371
|
+
| "barbellFrontSplitSquat"
|
|
3372
|
+
| "barbellLunge"
|
|
3373
|
+
| "barbellReverseLunge"
|
|
3374
|
+
| "barbellSideLunge"
|
|
3375
|
+
| "barbellSplitSquat"
|
|
3376
|
+
| "coreControlRearLunge"
|
|
3377
|
+
| "diagonalLunge"
|
|
3378
|
+
| "dropLunge"
|
|
3379
|
+
| "dumbbellBoxLunge"
|
|
3380
|
+
| "dumbbellBulgarianSplitSquat"
|
|
3381
|
+
| "dumbbellCrossoverLunge"
|
|
3382
|
+
| "dumbbellDiagonalLunge"
|
|
3383
|
+
| "dumbbellLunge"
|
|
3384
|
+
| "dumbbellLungeAndRotation"
|
|
3385
|
+
| "dumbbellOverheadBulgarianSplitSquat"
|
|
3386
|
+
| "dumbbellReverseLungeToHighKneeAndPress"
|
|
3387
|
+
| "dumbbellSideLunge"
|
|
3388
|
+
| "elevatedFrontFootBarbellSplitSquat"
|
|
3389
|
+
| "frontFootElevatedDumbbellSplitSquat"
|
|
3390
|
+
| "gunslingerLunge"
|
|
3391
|
+
| "lawnmowerLunge"
|
|
3392
|
+
| "lowLungeWithIsometricAdduction"
|
|
3393
|
+
| "lowSideToSideLunge"
|
|
3394
|
+
| "lunge"
|
|
3395
|
+
| "weightedLunge"
|
|
3396
|
+
| "lungeWithArmReach"
|
|
3397
|
+
| "lungeWithDiagonalReach"
|
|
3398
|
+
| "lungeWithSideBend"
|
|
3399
|
+
| "offsetDumbbellLunge"
|
|
3400
|
+
| "offsetDumbbellReverseLunge"
|
|
3401
|
+
| "overheadBulgarianSplitSquat"
|
|
3402
|
+
| "overheadDumbbellReverseLunge"
|
|
3403
|
+
| "overheadDumbbellSplitSquat"
|
|
3404
|
+
| "overheadLungeWithRotation"
|
|
3405
|
+
| "reverseBarbellBoxLunge"
|
|
3406
|
+
| "reverseBoxLunge"
|
|
3407
|
+
| "reverseDumbbellBoxLunge"
|
|
3408
|
+
| "reverseDumbbellCrossoverLunge"
|
|
3409
|
+
| "reverseDumbbellDiagonalLunge"
|
|
3410
|
+
| "reverseLungeWithReachBack"
|
|
3411
|
+
| "weightedReverseLungeWithReachBack"
|
|
3412
|
+
| "reverseLungeWithTwistAndOverheadReach"
|
|
3413
|
+
| "weightedReverseLungeWithTwistAndOverheadReach"
|
|
3414
|
+
| "reverseSlidingBoxLunge"
|
|
3415
|
+
| "weightedReverseSlidingBoxLunge"
|
|
3416
|
+
| "reverseSlidingLunge"
|
|
3417
|
+
| "weightedReverseSlidingLunge"
|
|
3418
|
+
| "runnersLungeToBalance"
|
|
3419
|
+
| "weightedRunnersLungeToBalance"
|
|
3420
|
+
| "shiftingSideLunge"
|
|
3421
|
+
| "sideAndCrossoverLunge"
|
|
3422
|
+
| "weightedSideAndCrossoverLunge"
|
|
3423
|
+
| "sideLunge"
|
|
3424
|
+
| "weightedSideLunge"
|
|
3425
|
+
| "sideLungeAndPress"
|
|
3426
|
+
| "sideLungeJumpOff"
|
|
3427
|
+
| "sideLungeSweep"
|
|
3428
|
+
| "weightedSideLungeSweep"
|
|
3429
|
+
| "sideLungeToCrossoverTap"
|
|
3430
|
+
| "weightedSideLungeToCrossoverTap"
|
|
3431
|
+
| "sideToSideLungeChops"
|
|
3432
|
+
| "weightedSideToSideLungeChops"
|
|
3433
|
+
| "siffJumpLunge"
|
|
3434
|
+
| "weightedSiffJumpLunge"
|
|
3435
|
+
| "singleArmReverseLungeAndPress"
|
|
3436
|
+
| "slidingLateralLunge"
|
|
3437
|
+
| "weightedSlidingLateralLunge"
|
|
3438
|
+
| "walkingBarbellLunge"
|
|
3439
|
+
| "walkingDumbbellLunge"
|
|
3440
|
+
| "walkingLunge"
|
|
3441
|
+
| "weightedWalkingLunge"
|
|
3442
|
+
| "wideGripOverheadBarbellSplitSquat"
|
|
3443
|
+
| "alternatingDumbbellLunge"
|
|
3444
|
+
| "dumbbellReverseLunge"
|
|
3445
|
+
| "overheadDumbbellLunge"
|
|
3446
|
+
| "scissorPowerSwitch"
|
|
3447
|
+
| "dumbbellOverheadWalkingLunge"
|
|
3448
|
+
| "curtsyLunge"
|
|
3449
|
+
| "weightedCurtsyLunge"
|
|
3450
|
+
| "weightedShiftingSideLunge"
|
|
3451
|
+
| "weightedSideLungeAndPress"
|
|
3452
|
+
| "weightedSideLungeJumpOff";
|
|
3453
|
+
|
|
3454
|
+
export type OlympicLiftExerciseName = number
|
|
3455
|
+
| "barbellHangPowerClean"
|
|
3456
|
+
| "barbellHangSquatClean"
|
|
3457
|
+
| "barbellPowerClean"
|
|
3458
|
+
| "barbellPowerSnatch"
|
|
3459
|
+
| "barbellSquatClean"
|
|
3460
|
+
| "cleanAndJerk"
|
|
3461
|
+
| "barbellHangPowerSnatch"
|
|
3462
|
+
| "barbellHangPull"
|
|
3463
|
+
| "barbellHighPull"
|
|
3464
|
+
| "barbellSnatch"
|
|
3465
|
+
| "barbellSplitJerk"
|
|
3466
|
+
| "clean"
|
|
3467
|
+
| "dumbbellClean"
|
|
3468
|
+
| "dumbbellHangPull"
|
|
3469
|
+
| "oneHandDumbbellSplitSnatch"
|
|
3470
|
+
| "pushJerk"
|
|
3471
|
+
| "singleArmDumbbellSnatch"
|
|
3472
|
+
| "singleArmHangSnatch"
|
|
3473
|
+
| "singleArmKettlebellSnatch"
|
|
3474
|
+
| "splitJerk"
|
|
3475
|
+
| "squatCleanAndJerk"
|
|
3476
|
+
| "dumbbellHangSnatch"
|
|
3477
|
+
| "dumbbellPowerCleanAndJerk"
|
|
3478
|
+
| "dumbbellPowerCleanAndPushPress"
|
|
3479
|
+
| "dumbbellPowerCleanAndStrictPress"
|
|
3480
|
+
| "dumbbellSnatch"
|
|
3481
|
+
| "medicineBallClean"
|
|
3482
|
+
| "cleanAndPress"
|
|
3483
|
+
| "snatch";
|
|
3484
|
+
|
|
3485
|
+
export type PlankExerciseName = number
|
|
3486
|
+
| "45DegreePlank"
|
|
3487
|
+
| "weighted45DegreePlank"
|
|
3488
|
+
| "90DegreeStaticHold"
|
|
3489
|
+
| "weighted90DegreeStaticHold"
|
|
3490
|
+
| "bearCrawl"
|
|
3491
|
+
| "weightedBearCrawl"
|
|
3492
|
+
| "crossBodyMountainClimber"
|
|
3493
|
+
| "weightedCrossBodyMountainClimber"
|
|
3494
|
+
| "elbowPlankPikeJacks"
|
|
3495
|
+
| "weightedElbowPlankPikeJacks"
|
|
3496
|
+
| "elevatedFeetPlank"
|
|
3497
|
+
| "weightedElevatedFeetPlank"
|
|
3498
|
+
| "elevatorAbs"
|
|
3499
|
+
| "weightedElevatorAbs"
|
|
3500
|
+
| "extendedPlank"
|
|
3501
|
+
| "weightedExtendedPlank"
|
|
3502
|
+
| "fullPlankPasseTwist"
|
|
3503
|
+
| "weightedFullPlankPasseTwist"
|
|
3504
|
+
| "inchingElbowPlank"
|
|
3505
|
+
| "weightedInchingElbowPlank"
|
|
3506
|
+
| "inchwormToSidePlank"
|
|
3507
|
+
| "weightedInchwormToSidePlank"
|
|
3508
|
+
| "kneelingPlank"
|
|
3509
|
+
| "weightedKneelingPlank"
|
|
3510
|
+
| "kneelingSidePlankWithLegLift"
|
|
3511
|
+
| "weightedKneelingSidePlankWithLegLift"
|
|
3512
|
+
| "lateralRoll"
|
|
3513
|
+
| "weightedLateralRoll"
|
|
3514
|
+
| "lyingReversePlank"
|
|
3515
|
+
| "weightedLyingReversePlank"
|
|
3516
|
+
| "medicineBallMountainClimber"
|
|
3517
|
+
| "weightedMedicineBallMountainClimber"
|
|
3518
|
+
| "modifiedMountainClimberAndExtension"
|
|
3519
|
+
| "weightedModifiedMountainClimberAndExtension"
|
|
3520
|
+
| "mountainClimber"
|
|
3521
|
+
| "weightedMountainClimber"
|
|
3522
|
+
| "mountainClimberOnSlidingDiscs"
|
|
3523
|
+
| "weightedMountainClimberOnSlidingDiscs"
|
|
3524
|
+
| "mountainClimberWithFeetOnBosuBall"
|
|
3525
|
+
| "weightedMountainClimberWithFeetOnBosuBall"
|
|
3526
|
+
| "mountainClimberWithHandsOnBench"
|
|
3527
|
+
| "mountainClimberWithHandsOnSwissBall"
|
|
3528
|
+
| "weightedMountainClimberWithHandsOnSwissBall"
|
|
3529
|
+
| "plank"
|
|
3530
|
+
| "plankJacksWithFeetOnSlidingDiscs"
|
|
3531
|
+
| "weightedPlankJacksWithFeetOnSlidingDiscs"
|
|
3532
|
+
| "plankKneeTwist"
|
|
3533
|
+
| "weightedPlankKneeTwist"
|
|
3534
|
+
| "plankPikeJumps"
|
|
3535
|
+
| "weightedPlankPikeJumps"
|
|
3536
|
+
| "plankPikes"
|
|
3537
|
+
| "weightedPlankPikes"
|
|
3538
|
+
| "plankToStandUp"
|
|
3539
|
+
| "weightedPlankToStandUp"
|
|
3540
|
+
| "plankWithArmRaise"
|
|
3541
|
+
| "weightedPlankWithArmRaise"
|
|
3542
|
+
| "plankWithKneeToElbow"
|
|
3543
|
+
| "weightedPlankWithKneeToElbow"
|
|
3544
|
+
| "plankWithObliqueCrunch"
|
|
3545
|
+
| "weightedPlankWithObliqueCrunch"
|
|
3546
|
+
| "plyometricSidePlank"
|
|
3547
|
+
| "weightedPlyometricSidePlank"
|
|
3548
|
+
| "rollingSidePlank"
|
|
3549
|
+
| "weightedRollingSidePlank"
|
|
3550
|
+
| "sideKickPlank"
|
|
3551
|
+
| "weightedSideKickPlank"
|
|
3552
|
+
| "sidePlank"
|
|
3553
|
+
| "weightedSidePlank"
|
|
3554
|
+
| "sidePlankAndRow"
|
|
3555
|
+
| "weightedSidePlankAndRow"
|
|
3556
|
+
| "sidePlankLift"
|
|
3557
|
+
| "weightedSidePlankLift"
|
|
3558
|
+
| "sidePlankWithElbowOnBosuBall"
|
|
3559
|
+
| "weightedSidePlankWithElbowOnBosuBall"
|
|
3560
|
+
| "sidePlankWithFeetOnBench"
|
|
3561
|
+
| "weightedSidePlankWithFeetOnBench"
|
|
3562
|
+
| "sidePlankWithKneeCircle"
|
|
3563
|
+
| "weightedSidePlankWithKneeCircle"
|
|
3564
|
+
| "sidePlankWithKneeTuck"
|
|
3565
|
+
| "weightedSidePlankWithKneeTuck"
|
|
3566
|
+
| "sidePlankWithLegLift"
|
|
3567
|
+
| "weightedSidePlankWithLegLift"
|
|
3568
|
+
| "sidePlankWithReachUnder"
|
|
3569
|
+
| "weightedSidePlankWithReachUnder"
|
|
3570
|
+
| "singleLegElevatedFeetPlank"
|
|
3571
|
+
| "weightedSingleLegElevatedFeetPlank"
|
|
3572
|
+
| "singleLegFlexAndExtend"
|
|
3573
|
+
| "weightedSingleLegFlexAndExtend"
|
|
3574
|
+
| "singleLegSidePlank"
|
|
3575
|
+
| "weightedSingleLegSidePlank"
|
|
3576
|
+
| "spidermanPlank"
|
|
3577
|
+
| "weightedSpidermanPlank"
|
|
3578
|
+
| "straightArmPlank"
|
|
3579
|
+
| "weightedStraightArmPlank"
|
|
3580
|
+
| "straightArmPlankWithShoulderTouch"
|
|
3581
|
+
| "weightedStraightArmPlankWithShoulderTouch"
|
|
3582
|
+
| "swissBallPlank"
|
|
3583
|
+
| "weightedSwissBallPlank"
|
|
3584
|
+
| "swissBallPlankLegLift"
|
|
3585
|
+
| "weightedSwissBallPlankLegLift"
|
|
3586
|
+
| "swissBallPlankLegLiftAndHold"
|
|
3587
|
+
| "swissBallPlankWithFeetOnBench"
|
|
3588
|
+
| "weightedSwissBallPlankWithFeetOnBench"
|
|
3589
|
+
| "swissBallProneJackknife"
|
|
3590
|
+
| "weightedSwissBallProneJackknife"
|
|
3591
|
+
| "swissBallSidePlank"
|
|
3592
|
+
| "weightedSwissBallSidePlank"
|
|
3593
|
+
| "threeWayPlank"
|
|
3594
|
+
| "weightedThreeWayPlank"
|
|
3595
|
+
| "towelPlankAndKneeIn"
|
|
3596
|
+
| "weightedTowelPlankAndKneeIn"
|
|
3597
|
+
| "tStabilization"
|
|
3598
|
+
| "weightedTStabilization"
|
|
3599
|
+
| "turkishGetUpToSidePlank"
|
|
3600
|
+
| "weightedTurkishGetUpToSidePlank"
|
|
3601
|
+
| "twoPointPlank"
|
|
3602
|
+
| "weightedTwoPointPlank"
|
|
3603
|
+
| "weightedPlank"
|
|
3604
|
+
| "wideStancePlankWithDiagonalArmLift"
|
|
3605
|
+
| "weightedWideStancePlankWithDiagonalArmLift"
|
|
3606
|
+
| "wideStancePlankWithDiagonalLegLift"
|
|
3607
|
+
| "weightedWideStancePlankWithDiagonalLegLift"
|
|
3608
|
+
| "wideStancePlankWithLegLift"
|
|
3609
|
+
| "weightedWideStancePlankWithLegLift"
|
|
3610
|
+
| "wideStancePlankWithOppositeArmAndLegLift"
|
|
3611
|
+
| "weightedMountainClimberWithHandsOnBench"
|
|
3612
|
+
| "weightedSwissBallPlankLegLiftAndHold"
|
|
3613
|
+
| "weightedWideStancePlankWithOppositeArmAndLegLift"
|
|
3614
|
+
| "plankWithFeetOnSwissBall"
|
|
3615
|
+
| "sidePlankToPlankWithReachUnder"
|
|
3616
|
+
| "bridgeWithGluteLowerLift"
|
|
3617
|
+
| "bridgeOneLegBridge"
|
|
3618
|
+
| "plankWithArmVariations"
|
|
3619
|
+
| "plankWithLegLift"
|
|
3620
|
+
| "reversePlankWithLegPull"
|
|
3621
|
+
| "ringPlankSprawls";
|
|
3622
|
+
|
|
3623
|
+
export type PlyoExerciseName = number
|
|
3624
|
+
| "alternatingJumpLunge"
|
|
3625
|
+
| "weightedAlternatingJumpLunge"
|
|
3626
|
+
| "barbellJumpSquat"
|
|
3627
|
+
| "bodyWeightJumpSquat"
|
|
3628
|
+
| "weightedJumpSquat"
|
|
3629
|
+
| "crossKneeStrike"
|
|
3630
|
+
| "weightedCrossKneeStrike"
|
|
3631
|
+
| "depthJump"
|
|
3632
|
+
| "weightedDepthJump"
|
|
3633
|
+
| "dumbbellJumpSquat"
|
|
3634
|
+
| "dumbbellSplitJump"
|
|
3635
|
+
| "frontKneeStrike"
|
|
3636
|
+
| "weightedFrontKneeStrike"
|
|
3637
|
+
| "highBoxJump"
|
|
3638
|
+
| "weightedHighBoxJump"
|
|
3639
|
+
| "isometricExplosiveBodyWeightJumpSquat"
|
|
3640
|
+
| "weightedIsometricExplosiveJumpSquat"
|
|
3641
|
+
| "lateralLeapAndHop"
|
|
3642
|
+
| "weightedLateralLeapAndHop"
|
|
3643
|
+
| "lateralPlyoSquats"
|
|
3644
|
+
| "weightedLateralPlyoSquats"
|
|
3645
|
+
| "lateralSlide"
|
|
3646
|
+
| "weightedLateralSlide"
|
|
3647
|
+
| "medicineBallOverheadThrows"
|
|
3648
|
+
| "medicineBallSideThrow"
|
|
3649
|
+
| "medicineBallSlam"
|
|
3650
|
+
| "sideToSideMedicineBallThrows"
|
|
3651
|
+
| "sideToSideShuffleJump"
|
|
3652
|
+
| "weightedSideToSideShuffleJump"
|
|
3653
|
+
| "squatJumpOntoBox"
|
|
3654
|
+
| "weightedSquatJumpOntoBox"
|
|
3655
|
+
| "squatJumpsInAndOut"
|
|
3656
|
+
| "weightedSquatJumpsInAndOut"
|
|
3657
|
+
| "boxJump"
|
|
3658
|
+
| "boxJumpOvers"
|
|
3659
|
+
| "boxJumpOversOverTheBox"
|
|
3660
|
+
| "starJumpSquats"
|
|
3661
|
+
| "jumpSquat";
|
|
3662
|
+
|
|
3663
|
+
export type PullUpExerciseName = number
|
|
3664
|
+
| "bandedPullUps"
|
|
3665
|
+
| "30DegreeLatPulldown"
|
|
3666
|
+
| "bandAssistedChinUp"
|
|
3667
|
+
| "closeGripChinUp"
|
|
3668
|
+
| "weightedCloseGripChinUp"
|
|
3669
|
+
| "closeGripLatPulldown"
|
|
3670
|
+
| "crossoverChinUp"
|
|
3671
|
+
| "weightedCrossoverChinUp"
|
|
3672
|
+
| "ezBarPullover"
|
|
3673
|
+
| "hangingHurdle"
|
|
3674
|
+
| "weightedHangingHurdle"
|
|
3675
|
+
| "kneelingLatPulldown"
|
|
3676
|
+
| "kneelingUnderhandGripLatPulldown"
|
|
3677
|
+
| "latPulldown"
|
|
3678
|
+
| "mixedGripChinUp"
|
|
3679
|
+
| "weightedMixedGripChinUp"
|
|
3680
|
+
| "mixedGripPullUp"
|
|
3681
|
+
| "weightedMixedGripPullUp"
|
|
3682
|
+
| "reverseGripPulldown"
|
|
3683
|
+
| "standingCablePullover"
|
|
3684
|
+
| "straightArmPulldown"
|
|
3685
|
+
| "swissBallEzBarPullover"
|
|
3686
|
+
| "towelPullUp"
|
|
3687
|
+
| "weightedTowelPullUp"
|
|
3688
|
+
| "weightedPullUp"
|
|
3689
|
+
| "wideGripLatPulldown"
|
|
3690
|
+
| "wideGripPullUp"
|
|
3691
|
+
| "weightedWideGripPullUp"
|
|
3692
|
+
| "burpeePullUp"
|
|
3693
|
+
| "weightedBurpeePullUp"
|
|
3694
|
+
| "jumpingPullUps"
|
|
3695
|
+
| "weightedJumpingPullUps"
|
|
3696
|
+
| "kippingPullUp"
|
|
3697
|
+
| "weightedKippingPullUp"
|
|
3698
|
+
| "lPullUp"
|
|
3699
|
+
| "weightedLPullUp"
|
|
3700
|
+
| "suspendedChinUp"
|
|
3701
|
+
| "weightedSuspendedChinUp"
|
|
3702
|
+
| "pullUp"
|
|
3703
|
+
| "chinUp"
|
|
3704
|
+
| "neutralGripChinUp"
|
|
3705
|
+
| "weightedChinUp"
|
|
3706
|
+
| "bandAssistedPullUp"
|
|
3707
|
+
| "neutralGripPullUp"
|
|
3708
|
+
| "weightedNeutralGripChinUp"
|
|
3709
|
+
| "weightedNeutralGripPullUp";
|
|
3710
|
+
|
|
3711
|
+
export type PushUpExerciseName = number
|
|
3712
|
+
| "chestPressWithBand"
|
|
3713
|
+
| "alternatingStaggeredPushUp"
|
|
3714
|
+
| "weightedAlternatingStaggeredPushUp"
|
|
3715
|
+
| "alternatingHandsMedicineBallPushUp"
|
|
3716
|
+
| "weightedAlternatingHandsMedicineBallPushUp"
|
|
3717
|
+
| "bosuBallPushUp"
|
|
3718
|
+
| "weightedBosuBallPushUp"
|
|
3719
|
+
| "clappingPushUp"
|
|
3720
|
+
| "weightedClappingPushUp"
|
|
3721
|
+
| "closeGripMedicineBallPushUp"
|
|
3722
|
+
| "weightedCloseGripMedicineBallPushUp"
|
|
3723
|
+
| "closeHandsPushUp"
|
|
3724
|
+
| "weightedCloseHandsPushUp"
|
|
3725
|
+
| "declinePushUp"
|
|
3726
|
+
| "weightedDeclinePushUp"
|
|
3727
|
+
| "diamondPushUp"
|
|
3728
|
+
| "weightedDiamondPushUp"
|
|
3729
|
+
| "explosiveCrossoverPushUp"
|
|
3730
|
+
| "weightedExplosiveCrossoverPushUp"
|
|
3731
|
+
| "explosivePushUp"
|
|
3732
|
+
| "weightedExplosivePushUp"
|
|
3733
|
+
| "feetElevatedSideToSidePushUp"
|
|
3734
|
+
| "weightedFeetElevatedSideToSidePushUp"
|
|
3735
|
+
| "handReleasePushUp"
|
|
3736
|
+
| "weightedHandReleasePushUp"
|
|
3737
|
+
| "handstandPushUp"
|
|
3738
|
+
| "weightedHandstandPushUp"
|
|
3739
|
+
| "inclinePushUp"
|
|
3740
|
+
| "weightedInclinePushUp"
|
|
3741
|
+
| "isometricExplosivePushUp"
|
|
3742
|
+
| "weightedIsometricExplosivePushUp"
|
|
3743
|
+
| "judoPushUp"
|
|
3744
|
+
| "weightedJudoPushUp"
|
|
3745
|
+
| "kneelingPushUp"
|
|
3746
|
+
| "weightedKneelingPushUp"
|
|
3747
|
+
| "medicineBallChestPass"
|
|
3748
|
+
| "medicineBallPushUp"
|
|
3749
|
+
| "weightedMedicineBallPushUp"
|
|
3750
|
+
| "oneArmPushUp"
|
|
3751
|
+
| "weightedOneArmPushUp"
|
|
3752
|
+
| "weightedPushUp"
|
|
3753
|
+
| "pushUpAndRow"
|
|
3754
|
+
| "weightedPushUpAndRow"
|
|
3755
|
+
| "pushUpPlus"
|
|
3756
|
+
| "weightedPushUpPlus"
|
|
3757
|
+
| "pushUpWithFeetOnSwissBall"
|
|
3758
|
+
| "weightedPushUpWithFeetOnSwissBall"
|
|
3759
|
+
| "pushUpWithOneHandOnMedicineBall"
|
|
3760
|
+
| "weightedPushUpWithOneHandOnMedicineBall"
|
|
3761
|
+
| "shoulderPushUp"
|
|
3762
|
+
| "weightedShoulderPushUp"
|
|
3763
|
+
| "singleArmMedicineBallPushUp"
|
|
3764
|
+
| "weightedSingleArmMedicineBallPushUp"
|
|
3765
|
+
| "spidermanPushUp"
|
|
3766
|
+
| "weightedSpidermanPushUp"
|
|
3767
|
+
| "stackedFeetPushUp"
|
|
3768
|
+
| "weightedStackedFeetPushUp"
|
|
3769
|
+
| "staggeredHandsPushUp"
|
|
3770
|
+
| "weightedStaggeredHandsPushUp"
|
|
3771
|
+
| "suspendedPushUp"
|
|
3772
|
+
| "weightedSuspendedPushUp"
|
|
3773
|
+
| "swissBallPushUp"
|
|
3774
|
+
| "weightedSwissBallPushUp"
|
|
3775
|
+
| "swissBallPushUpPlus"
|
|
3776
|
+
| "weightedSwissBallPushUpPlus"
|
|
3777
|
+
| "tPushUp"
|
|
3778
|
+
| "weightedTPushUp"
|
|
3779
|
+
| "tripleStopPushUp"
|
|
3780
|
+
| "weightedTripleStopPushUp"
|
|
3781
|
+
| "wideHandsPushUp"
|
|
3782
|
+
| "weightedWideHandsPushUp"
|
|
3783
|
+
| "paralletteHandstandPushUp"
|
|
3784
|
+
| "weightedParalletteHandstandPushUp"
|
|
3785
|
+
| "ringHandstandPushUp"
|
|
3786
|
+
| "weightedRingHandstandPushUp"
|
|
3787
|
+
| "ringPushUp"
|
|
3788
|
+
| "weightedRingPushUp"
|
|
3789
|
+
| "pushUp"
|
|
3790
|
+
| "pilatesPushup"
|
|
3791
|
+
| "dynamicPushUp"
|
|
3792
|
+
| "kippingHandstandPushUp"
|
|
3793
|
+
| "shoulderTappingPushUp"
|
|
3794
|
+
| "bicepsPushUp"
|
|
3795
|
+
| "hinduPushUp"
|
|
3796
|
+
| "pikePushUp"
|
|
3797
|
+
| "wideGripPushUp"
|
|
3798
|
+
| "weightedBicepsPushUp"
|
|
3799
|
+
| "weightedHinduPushUp"
|
|
3800
|
+
| "weightedPikePushUp"
|
|
3801
|
+
| "kippingParalletteHandstandPushUp"
|
|
3802
|
+
| "wallPushUp";
|
|
3803
|
+
|
|
3804
|
+
export type RowExerciseName = number
|
|
3805
|
+
| "barbellStraightLegDeadliftToRow"
|
|
3806
|
+
| "cableRowStanding"
|
|
3807
|
+
| "dumbbellRow"
|
|
3808
|
+
| "elevatedFeetInvertedRow"
|
|
3809
|
+
| "weightedElevatedFeetInvertedRow"
|
|
3810
|
+
| "facePull"
|
|
3811
|
+
| "facePullWithExternalRotation"
|
|
3812
|
+
| "invertedRowWithFeetOnSwissBall"
|
|
3813
|
+
| "weightedInvertedRowWithFeetOnSwissBall"
|
|
3814
|
+
| "kettlebellRow"
|
|
3815
|
+
| "modifiedInvertedRow"
|
|
3816
|
+
| "weightedModifiedInvertedRow"
|
|
3817
|
+
| "neutralGripAlternatingDumbbellRow"
|
|
3818
|
+
| "oneArmBentOverRow"
|
|
3819
|
+
| "oneLeggedDumbbellRow"
|
|
3820
|
+
| "renegadeRow"
|
|
3821
|
+
| "reverseGripBarbellRow"
|
|
3822
|
+
| "ropeHandleCableRow"
|
|
3823
|
+
| "seatedCableRow"
|
|
3824
|
+
| "seatedDumbbellRow"
|
|
3825
|
+
| "singleArmCableRow"
|
|
3826
|
+
| "singleArmCableRowAndRotation"
|
|
3827
|
+
| "singleArmInvertedRow"
|
|
3828
|
+
| "weightedSingleArmInvertedRow"
|
|
3829
|
+
| "singleArmNeutralGripDumbbellRow"
|
|
3830
|
+
| "singleArmNeutralGripDumbbellRowAndRotation"
|
|
3831
|
+
| "suspendedInvertedRow"
|
|
3832
|
+
| "weightedSuspendedInvertedRow"
|
|
3833
|
+
| "tBarRow"
|
|
3834
|
+
| "towelGripInvertedRow"
|
|
3835
|
+
| "weightedTowelGripInvertedRow"
|
|
3836
|
+
| "underhandGripCableRow"
|
|
3837
|
+
| "vGripCableRow"
|
|
3838
|
+
| "wideGripSeatedCableRow"
|
|
3839
|
+
| "alternatingDumbbellRow"
|
|
3840
|
+
| "invertedRow"
|
|
3841
|
+
| "row"
|
|
3842
|
+
| "weightedRow"
|
|
3843
|
+
| "indoorRow"
|
|
3844
|
+
| "bandedFacePulls"
|
|
3845
|
+
| "chestSupportedDumbbellRow"
|
|
3846
|
+
| "declineRingRow"
|
|
3847
|
+
| "elevatedRingRow"
|
|
3848
|
+
| "rdlBentOverRowWithBarbellDumbbell"
|
|
3849
|
+
| "ringRow"
|
|
3850
|
+
| "barbellRow"
|
|
3851
|
+
| "bentOverRowWithBarbell"
|
|
3852
|
+
| "bentOverRowWithDumbell"
|
|
3853
|
+
| "seatedUnderhandGripCableRow"
|
|
3854
|
+
| "trxInvertedRow"
|
|
3855
|
+
| "weightedInvertedRow"
|
|
3856
|
+
| "weightedTrxInvertedRow"
|
|
3857
|
+
| "dumbbellRowWheelchair";
|
|
3858
|
+
|
|
3859
|
+
export type ShoulderPressExerciseName = number
|
|
3860
|
+
| "alternatingDumbbellShoulderPress"
|
|
3861
|
+
| "arnoldPress"
|
|
3862
|
+
| "barbellFrontSquatToPushPress"
|
|
3863
|
+
| "barbellPushPress"
|
|
3864
|
+
| "barbellShoulderPress"
|
|
3865
|
+
| "deadCurlPress"
|
|
3866
|
+
| "dumbbellAlternatingShoulderPressAndTwist"
|
|
3867
|
+
| "dumbbellHammerCurlToLungeToPress"
|
|
3868
|
+
| "dumbbellPushPress"
|
|
3869
|
+
| "floorInvertedShoulderPress"
|
|
3870
|
+
| "weightedFloorInvertedShoulderPress"
|
|
3871
|
+
| "invertedShoulderPress"
|
|
3872
|
+
| "weightedInvertedShoulderPress"
|
|
3873
|
+
| "oneArmPushPress"
|
|
3874
|
+
| "overheadBarbellPress"
|
|
3875
|
+
| "overheadDumbbellPress"
|
|
3876
|
+
| "seatedBarbellShoulderPress"
|
|
3877
|
+
| "seatedDumbbellShoulderPress"
|
|
3878
|
+
| "singleArmDumbbellShoulderPress"
|
|
3879
|
+
| "singleArmStepUpAndPress"
|
|
3880
|
+
| "smithMachineOverheadPress"
|
|
3881
|
+
| "splitStanceHammerCurlToPress"
|
|
3882
|
+
| "swissBallDumbbellShoulderPress"
|
|
3883
|
+
| "weightPlateFrontRaise"
|
|
3884
|
+
| "dumbbellShoulderPress"
|
|
3885
|
+
| "militaryPress"
|
|
3886
|
+
| "strictPress"
|
|
3887
|
+
| "dumbbellFrontRaise"
|
|
3888
|
+
| "dumbbellCurlToOverheadPressWheelchair"
|
|
3889
|
+
| "arnoldPressWheelchair"
|
|
3890
|
+
| "overheadDumbbellPressWheelchair";
|
|
3891
|
+
|
|
3892
|
+
export type ShoulderStabilityExerciseName = number
|
|
3893
|
+
| "90DegreeCableExternalRotation"
|
|
3894
|
+
| "bandExternalRotation"
|
|
3895
|
+
| "bandInternalRotation"
|
|
3896
|
+
| "bentArmLateralRaiseAndExternalRotation"
|
|
3897
|
+
| "cableExternalRotation"
|
|
3898
|
+
| "dumbbellFacePullWithExternalRotation"
|
|
3899
|
+
| "floorIRaise"
|
|
3900
|
+
| "weightedFloorIRaise"
|
|
3901
|
+
| "floorTRaise"
|
|
3902
|
+
| "weightedFloorTRaise"
|
|
3903
|
+
| "floorYRaise"
|
|
3904
|
+
| "weightedFloorYRaise"
|
|
3905
|
+
| "inclineIRaise"
|
|
3906
|
+
| "weightedInclineIRaise"
|
|
3907
|
+
| "inclineLRaise"
|
|
3908
|
+
| "weightedInclineLRaise"
|
|
3909
|
+
| "inclineTRaise"
|
|
3910
|
+
| "weightedInclineTRaise"
|
|
3911
|
+
| "inclineWRaise"
|
|
3912
|
+
| "weightedInclineWRaise"
|
|
3913
|
+
| "inclineYRaise"
|
|
3914
|
+
| "weightedInclineYRaise"
|
|
3915
|
+
| "lyingExternalRotation"
|
|
3916
|
+
| "seatedDumbbellExternalRotation"
|
|
3917
|
+
| "standingLRaise"
|
|
3918
|
+
| "swissBallIRaise"
|
|
3919
|
+
| "weightedSwissBallIRaise"
|
|
3920
|
+
| "swissBallTRaise"
|
|
3921
|
+
| "weightedSwissBallTRaise"
|
|
3922
|
+
| "swissBallWRaise"
|
|
3923
|
+
| "weightedSwissBallWRaise"
|
|
3924
|
+
| "swissBallYRaise"
|
|
3925
|
+
| "weightedSwissBallYRaise"
|
|
3926
|
+
| "cableInternalRotation"
|
|
3927
|
+
| "lyingInternalRotation"
|
|
3928
|
+
| "seatedDumbbellInternalRotation";
|
|
3929
|
+
|
|
3930
|
+
export type ShrugExerciseName = number
|
|
3931
|
+
| "barbellJumpShrug"
|
|
3932
|
+
| "barbellShrug"
|
|
3933
|
+
| "barbellUprightRow"
|
|
3934
|
+
| "behindTheBackSmithMachineShrug"
|
|
3935
|
+
| "dumbbellJumpShrug"
|
|
3936
|
+
| "dumbbellShrug"
|
|
3937
|
+
| "dumbbellUprightRow"
|
|
3938
|
+
| "inclineDumbbellShrug"
|
|
3939
|
+
| "overheadBarbellShrug"
|
|
3940
|
+
| "overheadDumbbellShrug"
|
|
3941
|
+
| "scaptionAndShrug"
|
|
3942
|
+
| "scapularRetraction"
|
|
3943
|
+
| "serratusChairShrug"
|
|
3944
|
+
| "weightedSerratusChairShrug"
|
|
3945
|
+
| "serratusShrug"
|
|
3946
|
+
| "weightedSerratusShrug"
|
|
3947
|
+
| "wideGripJumpShrug"
|
|
3948
|
+
| "wideGripBarbellShrug"
|
|
3949
|
+
| "behindTheBackShrug"
|
|
3950
|
+
| "dumbbellShrugWheelchair"
|
|
3951
|
+
| "shrugWheelchair"
|
|
3952
|
+
| "shrugArmDownWheelchair"
|
|
3953
|
+
| "shrugArmMidWheelchair"
|
|
3954
|
+
| "shrugArmUpWheelchair"
|
|
3955
|
+
| "uprightRow";
|
|
3956
|
+
|
|
3957
|
+
export type SitUpExerciseName = number
|
|
3958
|
+
| "alternatingSitUp"
|
|
3959
|
+
| "weightedAlternatingSitUp"
|
|
3960
|
+
| "bentKneeVUp"
|
|
3961
|
+
| "weightedBentKneeVUp"
|
|
3962
|
+
| "butterflySitUp"
|
|
3963
|
+
| "weightedButterflySitup"
|
|
3964
|
+
| "crossPunchRollUp"
|
|
3965
|
+
| "weightedCrossPunchRollUp"
|
|
3966
|
+
| "crossedArmsSitUp"
|
|
3967
|
+
| "weightedCrossedArmsSitUp"
|
|
3968
|
+
| "getUpSitUp"
|
|
3969
|
+
| "weightedGetUpSitUp"
|
|
3970
|
+
| "hoveringSitUp"
|
|
3971
|
+
| "weightedHoveringSitUp"
|
|
3972
|
+
| "kettlebellSitUp"
|
|
3973
|
+
| "medicineBallAlternatingVUp"
|
|
3974
|
+
| "medicineBallSitUp"
|
|
3975
|
+
| "medicineBallVUp"
|
|
3976
|
+
| "modifiedSitUp"
|
|
3977
|
+
| "negativeSitUp"
|
|
3978
|
+
| "oneArmFullSitUp"
|
|
3979
|
+
| "recliningCircle"
|
|
3980
|
+
| "weightedRecliningCircle"
|
|
3981
|
+
| "reverseCurlUp"
|
|
3982
|
+
| "weightedReverseCurlUp"
|
|
3983
|
+
| "singleLegSwissBallJackknife"
|
|
3984
|
+
| "weightedSingleLegSwissBallJackknife"
|
|
3985
|
+
| "theTeaser"
|
|
3986
|
+
| "theTeaserWeighted"
|
|
3987
|
+
| "threePartRollDown"
|
|
3988
|
+
| "weightedThreePartRollDown"
|
|
3989
|
+
| "vUp"
|
|
3990
|
+
| "weightedVUp"
|
|
3991
|
+
| "weightedRussianTwistOnSwissBall"
|
|
3992
|
+
| "weightedSitUp"
|
|
3993
|
+
| "xAbs"
|
|
3994
|
+
| "weightedXAbs"
|
|
3995
|
+
| "sitUp"
|
|
3996
|
+
| "ghdSitUps"
|
|
3997
|
+
| "sitUpTurkishGetUp"
|
|
3998
|
+
| "russianTwistOnSwissBall";
|
|
3999
|
+
|
|
4000
|
+
export type SquatExerciseName = number
|
|
4001
|
+
| "legPress"
|
|
4002
|
+
| "backSquatWithBodyBar"
|
|
4003
|
+
| "backSquats"
|
|
4004
|
+
| "weightedBackSquats"
|
|
4005
|
+
| "balancingSquat"
|
|
4006
|
+
| "weightedBalancingSquat"
|
|
4007
|
+
| "barbellBackSquat"
|
|
4008
|
+
| "barbellBoxSquat"
|
|
4009
|
+
| "barbellFrontSquat"
|
|
4010
|
+
| "barbellHackSquat"
|
|
4011
|
+
| "barbellHangSquatSnatch"
|
|
4012
|
+
| "barbellLateralStepUp"
|
|
4013
|
+
| "barbellQuarterSquat"
|
|
4014
|
+
| "barbellSiffSquat"
|
|
4015
|
+
| "barbellSquatSnatch"
|
|
4016
|
+
| "barbellSquatWithHeelsRaised"
|
|
4017
|
+
| "barbellStepover"
|
|
4018
|
+
| "barbellStepUp"
|
|
4019
|
+
| "benchSquatWithRotationalChop"
|
|
4020
|
+
| "weightedBenchSquatWithRotationalChop"
|
|
4021
|
+
| "bodyWeightWallSquat"
|
|
4022
|
+
| "weightedWallSquat"
|
|
4023
|
+
| "boxStepSquat"
|
|
4024
|
+
| "weightedBoxStepSquat"
|
|
4025
|
+
| "bracedSquat"
|
|
4026
|
+
| "crossedArmBarbellFrontSquat"
|
|
4027
|
+
| "crossoverDumbbellStepUp"
|
|
4028
|
+
| "dumbbellFrontSquat"
|
|
4029
|
+
| "dumbbellSplitSquat"
|
|
4030
|
+
| "dumbbellSquat"
|
|
4031
|
+
| "dumbbellSquatClean"
|
|
4032
|
+
| "dumbbellStepover"
|
|
4033
|
+
| "dumbbellStepUp"
|
|
4034
|
+
| "elevatedSingleLegSquat"
|
|
4035
|
+
| "weightedElevatedSingleLegSquat"
|
|
4036
|
+
| "figureFourSquats"
|
|
4037
|
+
| "weightedFigureFourSquats"
|
|
4038
|
+
| "gobletSquat"
|
|
4039
|
+
| "kettlebellSquat"
|
|
4040
|
+
| "kettlebellSwingOverhead"
|
|
4041
|
+
| "kettlebellSwingWithFlipToSquat"
|
|
4042
|
+
| "lateralDumbbellStepUp"
|
|
4043
|
+
| "oneLeggedSquat"
|
|
4044
|
+
| "overheadDumbbellSquat"
|
|
4045
|
+
| "overheadSquat"
|
|
4046
|
+
| "partialSingleLegSquat"
|
|
4047
|
+
| "weightedPartialSingleLegSquat"
|
|
4048
|
+
| "pistolSquat"
|
|
4049
|
+
| "weightedPistolSquat"
|
|
4050
|
+
| "plieSlides"
|
|
4051
|
+
| "weightedPlieSlides"
|
|
4052
|
+
| "plieSquat"
|
|
4053
|
+
| "weightedPlieSquat"
|
|
4054
|
+
| "prisonerSquat"
|
|
4055
|
+
| "weightedPrisonerSquat"
|
|
4056
|
+
| "singleLegBenchGetUp"
|
|
4057
|
+
| "weightedSingleLegBenchGetUp"
|
|
4058
|
+
| "singleLegBenchSquat"
|
|
4059
|
+
| "weightedSingleLegBenchSquat"
|
|
4060
|
+
| "singleLegSquatOnSwissBall"
|
|
4061
|
+
| "weightedSingleLegSquatOnSwissBall"
|
|
4062
|
+
| "squat"
|
|
4063
|
+
| "weightedSquat"
|
|
4064
|
+
| "squatsWithBand"
|
|
4065
|
+
| "staggeredSquat"
|
|
4066
|
+
| "weightedStaggeredSquat"
|
|
4067
|
+
| "stepUp"
|
|
4068
|
+
| "weightedStepUp"
|
|
4069
|
+
| "suitcaseSquats"
|
|
4070
|
+
| "sumoSquat"
|
|
4071
|
+
| "sumoSquatSlideIn"
|
|
4072
|
+
| "weightedSumoSquatSlideIn"
|
|
4073
|
+
| "sumoSquatToHighPull"
|
|
4074
|
+
| "sumoSquatToStand"
|
|
4075
|
+
| "weightedSumoSquatToStand"
|
|
4076
|
+
| "sumoSquatWithRotation"
|
|
4077
|
+
| "weightedSumoSquatWithRotation"
|
|
4078
|
+
| "swissBallBodyWeightWallSquat"
|
|
4079
|
+
| "weightedSwissBallWallSquat"
|
|
4080
|
+
| "thrusters"
|
|
4081
|
+
| "unevenSquat"
|
|
4082
|
+
| "weightedUnevenSquat"
|
|
4083
|
+
| "waistSlimmingSquat"
|
|
4084
|
+
| "wallBall"
|
|
4085
|
+
| "wideStanceBarbellSquat"
|
|
4086
|
+
| "wideStanceGobletSquat"
|
|
4087
|
+
| "zercherSquat"
|
|
4088
|
+
| "kbsOverhead" /** Deprecated do not use */
|
|
4089
|
+
| "squatAndSideKick"
|
|
4090
|
+
| "squatJumpsInNOut"
|
|
4091
|
+
| "pilatesPlieSquatsParallelTurnedOutFlatAndHeels"
|
|
4092
|
+
| "releveStraightLegAndKneeBentWithOneLegVariation"
|
|
4093
|
+
| "alternatingBoxDumbbellStepUps"
|
|
4094
|
+
| "dumbbellOverheadSquatSingleArm"
|
|
4095
|
+
| "dumbbellSquatSnatch"
|
|
4096
|
+
| "medicineBallSquat"
|
|
4097
|
+
| "wallBallSquatAndPress"
|
|
4098
|
+
| "squatAmericanSwing"
|
|
4099
|
+
| "airSquat"
|
|
4100
|
+
| "dumbbellThrusters"
|
|
4101
|
+
| "overheadBarbellSquat";
|
|
4102
|
+
|
|
4103
|
+
export type TotalBodyExerciseName = number
|
|
4104
|
+
| "burpee"
|
|
4105
|
+
| "weightedBurpee"
|
|
4106
|
+
| "burpeeBoxJump"
|
|
4107
|
+
| "weightedBurpeeBoxJump"
|
|
4108
|
+
| "highPullBurpee"
|
|
4109
|
+
| "manMakers"
|
|
4110
|
+
| "oneArmBurpee"
|
|
4111
|
+
| "squatThrusts"
|
|
4112
|
+
| "weightedSquatThrusts"
|
|
4113
|
+
| "squatPlankPushUp"
|
|
4114
|
+
| "weightedSquatPlankPushUp"
|
|
4115
|
+
| "standingTRotationBalance"
|
|
4116
|
+
| "weightedStandingTRotationBalance"
|
|
4117
|
+
| "barbellBurpee"
|
|
4118
|
+
| "burpeeBoxJumpOverYesLiterallyJumpingOverTheBox"
|
|
4119
|
+
| "burpeeBoxJumpStepUpOver"
|
|
4120
|
+
| "lateralBarbellBurpee"
|
|
4121
|
+
| "totalBodyBurpeeOverBar"
|
|
4122
|
+
| "burpeeBoxJumpOver"
|
|
4123
|
+
| "burpeeWheelchair";
|
|
4124
|
+
|
|
4125
|
+
export type MoveExerciseName = number
|
|
4126
|
+
| "archAndCurl"
|
|
4127
|
+
| "armCirclesWithBallBandAndWeight"
|
|
4128
|
+
| "armStretch"
|
|
4129
|
+
| "backMassage"
|
|
4130
|
+
| "bellyBreathing"
|
|
4131
|
+
| "bridgeWithBall"
|
|
4132
|
+
| "diamondLegCrunch"
|
|
4133
|
+
| "diamondLegLift"
|
|
4134
|
+
| "eightPointShoulderOpener"
|
|
4135
|
+
| "footRolling"
|
|
4136
|
+
| "footwork"
|
|
4137
|
+
| "footworkOnDisc"
|
|
4138
|
+
| "forwardFold"
|
|
4139
|
+
| "frogWithBand"
|
|
4140
|
+
| "halfRollUp"
|
|
4141
|
+
| "hamstringCurl"
|
|
4142
|
+
| "hamstringStretch"
|
|
4143
|
+
| "hipStretch"
|
|
4144
|
+
| "hugATreeWithBallBandAndWeight"
|
|
4145
|
+
| "kneeCircles"
|
|
4146
|
+
| "kneeFoldsOnDisc"
|
|
4147
|
+
| "lateralFlexion"
|
|
4148
|
+
| "legStretchWithBand"
|
|
4149
|
+
| "legStretchWithLegCircles"
|
|
4150
|
+
| "lowerLiftOnDisc"
|
|
4151
|
+
| "lungeSquat"
|
|
4152
|
+
| "lungesWithKneeLift"
|
|
4153
|
+
| "mermaidStretch"
|
|
4154
|
+
| "neutralPelvicPosition"
|
|
4155
|
+
| "pelvicClocksOnDisc"
|
|
4156
|
+
| "pilatesPlieSquatsParallelTurnedOutFlatAndHeelsWithChair"
|
|
4157
|
+
| "piriformisStretch"
|
|
4158
|
+
| "plankKneeCrosses"
|
|
4159
|
+
| "plankKneePulls"
|
|
4160
|
+
| "plankUpDowns"
|
|
4161
|
+
| "prayerMudra"
|
|
4162
|
+
| "psoasLungeStretch"
|
|
4163
|
+
| "ribcageBreathing"
|
|
4164
|
+
| "rollDown"
|
|
4165
|
+
| "rollUpWithWeightAndBand"
|
|
4166
|
+
| "saw"
|
|
4167
|
+
| "scapularStabilization"
|
|
4168
|
+
| "scissorsOnDisc"
|
|
4169
|
+
| "seatedHipStretchup"
|
|
4170
|
+
| "seatedTwist"
|
|
4171
|
+
| "shavingTheHeadWithBallBandAndWeight"
|
|
4172
|
+
| "spinalTwist"
|
|
4173
|
+
| "spinalTwistStretch"
|
|
4174
|
+
| "spineStretchForward"
|
|
4175
|
+
| "squatOpenArmTwistPose"
|
|
4176
|
+
| "squatsWithBall"
|
|
4177
|
+
| "standAndHang"
|
|
4178
|
+
| "standingSideStretch"
|
|
4179
|
+
| "standingSingleLegForwardBendWithItBandOpener"
|
|
4180
|
+
| "straightLegCrunchWithLegLift"
|
|
4181
|
+
| "straightLegCrunchWithLegLiftWithBall"
|
|
4182
|
+
| "straightLegCrunchWithLegsCrossed"
|
|
4183
|
+
| "straightLegCrunchWithLegsCrossedWithBall"
|
|
4184
|
+
| "straightLegDiagonalCrunch"
|
|
4185
|
+
| "straightLegDiagonalCrunchWithBall"
|
|
4186
|
+
| "tailboneCurl"
|
|
4187
|
+
| "throatLock"
|
|
4188
|
+
| "tickTockSideRoll"
|
|
4189
|
+
| "twist"
|
|
4190
|
+
| "vLegCrunches"
|
|
4191
|
+
| "vSit"
|
|
4192
|
+
| "forwardFoldWheelchair"
|
|
4193
|
+
| "forwardFoldPlusWheelchair"
|
|
4194
|
+
| "armCirclesLowForwardWheelchair"
|
|
4195
|
+
| "armCirclesMidForwardWheelchair"
|
|
4196
|
+
| "armCirclesHighForwardWheelchair"
|
|
4197
|
+
| "armCirclesLowBackwardWheelchair"
|
|
4198
|
+
| "armCirclesMidBackwardWheelchair"
|
|
4199
|
+
| "armCirclesHighBackwardWheelchair"
|
|
4200
|
+
| "coreTwistsWheelchair"
|
|
4201
|
+
| "armRaiseWheelchair"
|
|
4202
|
+
| "chestExpandWheelchair"
|
|
4203
|
+
| "armExtendWheelchair"
|
|
4204
|
+
| "forwardBendWheelchair"
|
|
4205
|
+
| "toeTouchWheelchair"
|
|
4206
|
+
| "extendedToeTouchWheelchair"
|
|
4207
|
+
| "seatedArmCircles"
|
|
4208
|
+
| "trunkRotations"
|
|
4209
|
+
| "seatedTrunkRotations"
|
|
4210
|
+
| "toeTouch";
|
|
4211
|
+
|
|
4212
|
+
export type PoseExerciseName = number
|
|
4213
|
+
| "allFours"
|
|
4214
|
+
| "ankleToKnee"
|
|
4215
|
+
| "babyCobra"
|
|
4216
|
+
| "boat"
|
|
4217
|
+
| "boundAngle"
|
|
4218
|
+
| "boundSeatedSingleLegForwardBend"
|
|
4219
|
+
| "bow"
|
|
4220
|
+
| "bowedHalfMoon"
|
|
4221
|
+
| "bridge"
|
|
4222
|
+
| "cat"
|
|
4223
|
+
| "chair"
|
|
4224
|
+
| "childs"
|
|
4225
|
+
| "corpse"
|
|
4226
|
+
| "cowFace"
|
|
4227
|
+
| "cow"
|
|
4228
|
+
| "devotionalWarrior"
|
|
4229
|
+
| "dolphinPlank"
|
|
4230
|
+
| "dolphin"
|
|
4231
|
+
| "downDogKneeToNose"
|
|
4232
|
+
| "downDogSplit"
|
|
4233
|
+
| "downDogSplitOpenHipBentKnee"
|
|
4234
|
+
| "downwardFacingDog"
|
|
4235
|
+
| "eagle"
|
|
4236
|
+
| "easySeated"
|
|
4237
|
+
| "extendedPuppy"
|
|
4238
|
+
| "extendedSideAngle"
|
|
4239
|
+
| "fish"
|
|
4240
|
+
| "fourLimbedStaff"
|
|
4241
|
+
| "fullSplit"
|
|
4242
|
+
| "gate"
|
|
4243
|
+
| "halfChairHalfAnkleToKnee"
|
|
4244
|
+
| "halfMoon"
|
|
4245
|
+
| "headToKnee"
|
|
4246
|
+
| "heron"
|
|
4247
|
+
| "heros"
|
|
4248
|
+
| "highLunge"
|
|
4249
|
+
| "kneesChestChin"
|
|
4250
|
+
| "lizard"
|
|
4251
|
+
| "locust"
|
|
4252
|
+
| "lowLunge"
|
|
4253
|
+
| "lowLungeTwist"
|
|
4254
|
+
| "lowLungeWithKneeDown"
|
|
4255
|
+
| "mermaid"
|
|
4256
|
+
| "mountain"
|
|
4257
|
+
| "oneLeggedDownwardFacingPoseOpenHipBentKnee"
|
|
4258
|
+
| "oneLeggedPigeon"
|
|
4259
|
+
| "peacefulWarrior"
|
|
4260
|
+
| "plank"
|
|
4261
|
+
| "plow"
|
|
4262
|
+
| "reclinedHandToFoot"
|
|
4263
|
+
| "revolvedHalfMoon"
|
|
4264
|
+
| "revolvedHeadToKnee"
|
|
4265
|
+
| "revolvedTriangle"
|
|
4266
|
+
| "runnersLunge"
|
|
4267
|
+
| "seatedEasySideBend"
|
|
4268
|
+
| "seatedEasyTwist"
|
|
4269
|
+
| "seatedLongLegForwardBend"
|
|
4270
|
+
| "seatedWideLegForwardBend"
|
|
4271
|
+
| "shoulderStand"
|
|
4272
|
+
| "sideBoat"
|
|
4273
|
+
| "sidePlank"
|
|
4274
|
+
| "sphinx"
|
|
4275
|
+
| "squatOpenArmTwist"
|
|
4276
|
+
| "squatPalmPress"
|
|
4277
|
+
| "staff"
|
|
4278
|
+
| "standingArmsUp"
|
|
4279
|
+
| "standingForwardBendHalfwayUp"
|
|
4280
|
+
| "standingForwardBend"
|
|
4281
|
+
| "standingSideOpener"
|
|
4282
|
+
| "standingSingleLegForwardBend"
|
|
4283
|
+
| "standingSplit"
|
|
4284
|
+
| "standingWideLegForwardBend"
|
|
4285
|
+
| "standingWideLegForwardBendWithTwist"
|
|
4286
|
+
| "supineSpinalTwist"
|
|
4287
|
+
| "tableTop"
|
|
4288
|
+
| "threadTheNeedle"
|
|
4289
|
+
| "thunderbolt"
|
|
4290
|
+
| "thunderboltPoseBothSidesArmStretch"
|
|
4291
|
+
| "tree"
|
|
4292
|
+
| "triangle"
|
|
4293
|
+
| "upDog"
|
|
4294
|
+
| "upwardFacingPlank"
|
|
4295
|
+
| "warriorOne"
|
|
4296
|
+
| "warriorThree"
|
|
4297
|
+
| "warriorTwo"
|
|
4298
|
+
| "wheel"
|
|
4299
|
+
| "wideSideLunge"
|
|
4300
|
+
| "deepBreathingWheelchair"
|
|
4301
|
+
| "deepBreathingLowWheelchair"
|
|
4302
|
+
| "deepBreathingMidWheelchair"
|
|
4303
|
+
| "deepBreathingHighWheelchair"
|
|
4304
|
+
| "prayerWheelchair"
|
|
4305
|
+
| "overheadPrayerWheelchair"
|
|
4306
|
+
| "cactusWheelchair"
|
|
4307
|
+
| "breathingPunchesWheelchair"
|
|
4308
|
+
| "breathingPunchesExtendedWheelchair"
|
|
4309
|
+
| "breathingPunchesOverheadWheelchair"
|
|
4310
|
+
| "breathingPunchesOverheadAndDownWheelchair"
|
|
4311
|
+
| "breathingPunchesSideWheelchair"
|
|
4312
|
+
| "breathingPunchesExtendedSideWheelchair"
|
|
4313
|
+
| "breathingPunchesOverheadSideWheelchair"
|
|
4314
|
+
| "breathingPunchesOverheadAndDownSideWheelchair"
|
|
4315
|
+
| "leftHandBackWheelchair"
|
|
4316
|
+
| "triangleWheelchair"
|
|
4317
|
+
| "threadTheNeedleWheelchair"
|
|
4318
|
+
| "neckFlexionAndExtensionWheelchair"
|
|
4319
|
+
| "neckLateralFlexionWheelchair"
|
|
4320
|
+
| "spineFlexionAndExtensionWheelchair"
|
|
4321
|
+
| "spineRotationWheelchair"
|
|
4322
|
+
| "spineLateralFlexionWheelchair"
|
|
4323
|
+
| "alternativeSkiingWheelchair"
|
|
4324
|
+
| "reachForwardWheelchair"
|
|
4325
|
+
| "warriorWheelchair"
|
|
4326
|
+
| "reverseWarriorWheelchair"
|
|
4327
|
+
| "downwardFacingDogToCobra"
|
|
4328
|
+
| "seatedCatCow";
|
|
4329
|
+
|
|
4330
|
+
export type TricepsExtensionExerciseName = number
|
|
4331
|
+
| "benchDip"
|
|
4332
|
+
| "weightedBenchDip"
|
|
4333
|
+
| "bodyWeightDip"
|
|
4334
|
+
| "cableKickback"
|
|
4335
|
+
| "cableLyingTricepsExtension"
|
|
4336
|
+
| "cableOverheadTricepsExtension"
|
|
4337
|
+
| "dumbbellKickback"
|
|
4338
|
+
| "dumbbellLyingTricepsExtension"
|
|
4339
|
+
| "ezBarOverheadTricepsExtension"
|
|
4340
|
+
| "inclineDip"
|
|
4341
|
+
| "weightedInclineDip"
|
|
4342
|
+
| "inclineEzBarLyingTricepsExtension"
|
|
4343
|
+
| "lyingDumbbellPulloverToExtension"
|
|
4344
|
+
| "lyingEzBarTricepsExtension"
|
|
4345
|
+
| "lyingTricepsExtensionToCloseGripBenchPress"
|
|
4346
|
+
| "overheadDumbbellTricepsExtension"
|
|
4347
|
+
| "recliningTricepsPress"
|
|
4348
|
+
| "reverseGripPressdown"
|
|
4349
|
+
| "reverseGripTricepsPressdown"
|
|
4350
|
+
| "ropePressdown"
|
|
4351
|
+
| "seatedBarbellOverheadTricepsExtension"
|
|
4352
|
+
| "seatedDumbbellOverheadTricepsExtension"
|
|
4353
|
+
| "seatedEzBarOverheadTricepsExtension"
|
|
4354
|
+
| "seatedSingleArmOverheadDumbbellExtension"
|
|
4355
|
+
| "singleArmDumbbellOverheadTricepsExtension"
|
|
4356
|
+
| "singleDumbbellSeatedOverheadTricepsExtension"
|
|
4357
|
+
| "singleLegBenchDipAndKick"
|
|
4358
|
+
| "weightedSingleLegBenchDipAndKick"
|
|
4359
|
+
| "singleLegDip"
|
|
4360
|
+
| "weightedSingleLegDip"
|
|
4361
|
+
| "staticLyingTricepsExtension"
|
|
4362
|
+
| "suspendedDip"
|
|
4363
|
+
| "weightedSuspendedDip"
|
|
4364
|
+
| "swissBallDumbbellLyingTricepsExtension"
|
|
4365
|
+
| "swissBallEzBarLyingTricepsExtension"
|
|
4366
|
+
| "swissBallEzBarOverheadTricepsExtension"
|
|
4367
|
+
| "tabletopDip"
|
|
4368
|
+
| "weightedTabletopDip"
|
|
4369
|
+
| "tricepsExtensionOnFloor"
|
|
4370
|
+
| "tricepsPressdown"
|
|
4371
|
+
| "weightedDip"
|
|
4372
|
+
| "alternatingDumbbellLyingTricepsExtension"
|
|
4373
|
+
| "tricepsPress"
|
|
4374
|
+
| "dumbbellKickbackWheelchair"
|
|
4375
|
+
| "overheadDumbbellTricepsExtensionWheelchair";
|
|
4376
|
+
|
|
4377
|
+
export type WarmUpExerciseName = number
|
|
4378
|
+
| "quadrupedRocking"
|
|
4379
|
+
| "neckTilts"
|
|
4380
|
+
| "ankleCircles"
|
|
4381
|
+
| "ankleDorsiflexionWithBand"
|
|
4382
|
+
| "ankleInternalRotation"
|
|
4383
|
+
| "armCircles"
|
|
4384
|
+
| "bentOverReachToSky"
|
|
4385
|
+
| "catCamel"
|
|
4386
|
+
| "elbowToFootLunge"
|
|
4387
|
+
| "forwardAndBackwardLegSwings"
|
|
4388
|
+
| "groiners"
|
|
4389
|
+
| "invertedHamstringStretch"
|
|
4390
|
+
| "lateralDuckUnder"
|
|
4391
|
+
| "neckRotations"
|
|
4392
|
+
| "oppositeArmAndLegBalance"
|
|
4393
|
+
| "reachRollAndLift"
|
|
4394
|
+
| "scorpion" /** Deprecated do not use */
|
|
4395
|
+
| "shoulderCircles"
|
|
4396
|
+
| "sideToSideLegSwings"
|
|
4397
|
+
| "sleeperStretch"
|
|
4398
|
+
| "slideOut"
|
|
4399
|
+
| "swissBallHipCrossover"
|
|
4400
|
+
| "swissBallReachRollAndLift"
|
|
4401
|
+
| "swissBallWindshieldWipers"
|
|
4402
|
+
| "thoracicRotation"
|
|
4403
|
+
| "walkingHighKicks"
|
|
4404
|
+
| "walkingHighKnees"
|
|
4405
|
+
| "walkingKneeHugs"
|
|
4406
|
+
| "walkingLegCradles"
|
|
4407
|
+
| "walkout"
|
|
4408
|
+
| "walkoutFromPushUpPosition"
|
|
4409
|
+
| "bicepsStretch"
|
|
4410
|
+
| "glutesStretch"
|
|
4411
|
+
| "standingHamstringStretch"
|
|
4412
|
+
| "stretch90_90"
|
|
4413
|
+
| "stretchAbs"
|
|
4414
|
+
| "stretchButterfly"
|
|
4415
|
+
| "stretchCalf"
|
|
4416
|
+
| "stretchCatCow"
|
|
4417
|
+
| "stretchChildsPose"
|
|
4418
|
+
| "stretchCobra"
|
|
4419
|
+
| "stretchForearms"
|
|
4420
|
+
| "stretchForwardGlutes"
|
|
4421
|
+
| "stretchFrontSplit"
|
|
4422
|
+
| "stretchHamstring"
|
|
4423
|
+
| "stretchHipFlexorAndQuad"
|
|
4424
|
+
| "stretchLat"
|
|
4425
|
+
| "stretchLevatorScapulae"
|
|
4426
|
+
| "stretchLungeWithSpinalTwist"
|
|
4427
|
+
| "stretchLungingHipFlexor"
|
|
4428
|
+
| "stretchLyingAbduction"
|
|
4429
|
+
| "stretchLyingItBand"
|
|
4430
|
+
| "stretchLyingKneeToChest"
|
|
4431
|
+
| "stretchLyingPiriformis"
|
|
4432
|
+
| "stretchLyingSpinalTwist"
|
|
4433
|
+
| "stretchNeck"
|
|
4434
|
+
| "stretchObliques"
|
|
4435
|
+
| "stretchOverUnderShoulder"
|
|
4436
|
+
| "stretchPectoral"
|
|
4437
|
+
| "stretchPigeonPose"
|
|
4438
|
+
| "stretchPiriformis"
|
|
4439
|
+
| "stretchQuad"
|
|
4440
|
+
| "stretchScorpion"
|
|
4441
|
+
| "stretchShoulder"
|
|
4442
|
+
| "stretchSide"
|
|
4443
|
+
| "stretchSideLunge"
|
|
4444
|
+
| "stretchSideSplit"
|
|
4445
|
+
| "stretchStandingItBand"
|
|
4446
|
+
| "stretchStraddle"
|
|
4447
|
+
| "stretchTriceps"
|
|
4448
|
+
| "stretchWallChestAndShoulder"
|
|
4449
|
+
| "neckRotationsWheelchair"
|
|
4450
|
+
| "halfKneelingArmRotation"
|
|
4451
|
+
| "threeWayAnkleMobilization"
|
|
4452
|
+
| "ninetyNinetyHipSwitch" /** 90_90_hip_switch */
|
|
4453
|
+
| "activeFrog"
|
|
4454
|
+
| "shoulderSweeps"
|
|
4455
|
+
| "ankleLunges"
|
|
4456
|
+
| "backRollFoamRoller"
|
|
4457
|
+
| "bearCrawl"
|
|
4458
|
+
| "latissimusDorsiFoamRoll"
|
|
4459
|
+
| "reverseTHipOpener"
|
|
4460
|
+
| "shoulderRolls"
|
|
4461
|
+
| "chestOpeners"
|
|
4462
|
+
| "tricepsStretch"
|
|
4463
|
+
| "upperBackStretch"
|
|
4464
|
+
| "hipCircles"
|
|
4465
|
+
| "ankleStretch"
|
|
4466
|
+
| "marchingInPlace"
|
|
4467
|
+
| "tricepsStretchWheelchair"
|
|
4468
|
+
| "upperBackStretchWheelchair";
|
|
4469
|
+
|
|
4470
|
+
export type RunExerciseName = number
|
|
4471
|
+
| "run"
|
|
4472
|
+
| "walk"
|
|
4473
|
+
| "jog"
|
|
4474
|
+
| "sprint"
|
|
4475
|
+
| "runOrWalk"
|
|
4476
|
+
| "speedWalk"
|
|
4477
|
+
| "warmUp";
|
|
4478
|
+
|
|
4479
|
+
export type BikeExerciseName = number
|
|
4480
|
+
| "bike"
|
|
4481
|
+
| "ride"
|
|
4482
|
+
| "sprint";
|
|
4483
|
+
|
|
4484
|
+
export type BandedExercisesExerciseName = number
|
|
4485
|
+
| "abTwist"
|
|
4486
|
+
| "backExtension"
|
|
4487
|
+
| "bicycleCrunch"
|
|
4488
|
+
| "calfRaises"
|
|
4489
|
+
| "chestPress"
|
|
4490
|
+
| "clamShells"
|
|
4491
|
+
| "curl"
|
|
4492
|
+
| "deadbug"
|
|
4493
|
+
| "deadlift"
|
|
4494
|
+
| "donkeyKick"
|
|
4495
|
+
| "externalRotation"
|
|
4496
|
+
| "externalRotationAt90DegreeAbduction"
|
|
4497
|
+
| "facePull"
|
|
4498
|
+
| "fireHydrant"
|
|
4499
|
+
| "fly"
|
|
4500
|
+
| "frontRaise"
|
|
4501
|
+
| "gluteBridge"
|
|
4502
|
+
| "hamstringCurls"
|
|
4503
|
+
| "highPlankLegLifts"
|
|
4504
|
+
| "hipExtension"
|
|
4505
|
+
| "internalRotation"
|
|
4506
|
+
| "jumpingJack"
|
|
4507
|
+
| "kneelingCrunch"
|
|
4508
|
+
| "lateralBandWalks"
|
|
4509
|
+
| "lateralRaise"
|
|
4510
|
+
| "latpull"
|
|
4511
|
+
| "legAbduction"
|
|
4512
|
+
| "legAdduction"
|
|
4513
|
+
| "legExtension"
|
|
4514
|
+
| "lunge"
|
|
4515
|
+
| "plank"
|
|
4516
|
+
| "pullApart"
|
|
4517
|
+
| "pushUps"
|
|
4518
|
+
| "reverseCrunch"
|
|
4519
|
+
| "row"
|
|
4520
|
+
| "shoulderAbduction"
|
|
4521
|
+
| "shoulderExtension"
|
|
4522
|
+
| "shoulderExternalRotation"
|
|
4523
|
+
| "shoulderFlexionTo90Degrees"
|
|
4524
|
+
| "sidePlankLegLifts"
|
|
4525
|
+
| "sideRaise"
|
|
4526
|
+
| "squat"
|
|
4527
|
+
| "squatToPress"
|
|
4528
|
+
| "tricepExtension"
|
|
4529
|
+
| "tricepKickback"
|
|
4530
|
+
| "uprightRow"
|
|
4531
|
+
| "wallCrawlWithExternalRotation"
|
|
4532
|
+
| "lateralRaiseWheelchair"
|
|
4533
|
+
| "tricepsExtensionWheelchair"
|
|
4534
|
+
| "chestFlyInclineWheelchair"
|
|
4535
|
+
| "chestFlyDeclineWheelchair"
|
|
4536
|
+
| "pullDownWheelchair"
|
|
4537
|
+
| "straightArmPullDownWheelchair"
|
|
4538
|
+
| "curlWheelchair"
|
|
4539
|
+
| "overheadCurlWheelchair"
|
|
4540
|
+
| "facePullWheelchair"
|
|
4541
|
+
| "aroundTheWorldWheelchair"
|
|
4542
|
+
| "pullApartWheelchair"
|
|
4543
|
+
| "sideCurlWheelchair"
|
|
4544
|
+
| "overheadPressWheelchair";
|
|
4545
|
+
|
|
4546
|
+
export type BattleRopeExerciseName = number
|
|
4547
|
+
| "alternatingFigureEight"
|
|
4548
|
+
| "alternatingJumpWave"
|
|
4549
|
+
| "alternatingKneelingToStandingWave"
|
|
4550
|
+
| "alternatingLungeWave"
|
|
4551
|
+
| "alternatingSquatWave"
|
|
4552
|
+
| "alternatingWave"
|
|
4553
|
+
| "alternatingWaveWithLateralShuffle"
|
|
4554
|
+
| "clapWave"
|
|
4555
|
+
| "doubleArmFigureEight"
|
|
4556
|
+
| "doubleArmSideToSideSnake"
|
|
4557
|
+
| "doubleArmSideWave"
|
|
4558
|
+
| "doubleArmSlam"
|
|
4559
|
+
| "doubleArmWave"
|
|
4560
|
+
| "grapplerToss"
|
|
4561
|
+
| "hipToss"
|
|
4562
|
+
| "inAndOutWave"
|
|
4563
|
+
| "insideCircle"
|
|
4564
|
+
| "jumpingJacks"
|
|
4565
|
+
| "outsideCircle"
|
|
4566
|
+
| "rainbow"
|
|
4567
|
+
| "sidePlankWave"
|
|
4568
|
+
| "sidewinder"
|
|
4569
|
+
| "sittingRussianTwist"
|
|
4570
|
+
| "snakeWave"
|
|
4571
|
+
| "splitJack"
|
|
4572
|
+
| "stageCoach"
|
|
4573
|
+
| "ultimateWarrior"
|
|
4574
|
+
| "upperCuts";
|
|
4575
|
+
|
|
4576
|
+
export type EllipticalExerciseName = number
|
|
4577
|
+
| "elliptical";
|
|
4578
|
+
|
|
4579
|
+
export type FloorClimbExerciseName = number
|
|
4580
|
+
| "floorClimb";
|
|
4581
|
+
|
|
4582
|
+
export type IndoorBikeExerciseName = number
|
|
4583
|
+
| "airBike"
|
|
4584
|
+
| "assaultBike"
|
|
4585
|
+
| "stationaryBike";
|
|
4586
|
+
|
|
4587
|
+
export type IndoorRowExerciseName = number
|
|
4588
|
+
| "rowingMachine";
|
|
4589
|
+
|
|
4590
|
+
export type LadderExerciseName = number
|
|
4591
|
+
| "agility"
|
|
4592
|
+
| "speed";
|
|
4593
|
+
|
|
4594
|
+
export type SandbagExerciseName = number
|
|
4595
|
+
| "aroundTheWorld"
|
|
4596
|
+
| "backSquat"
|
|
4597
|
+
| "bearCrawlPullThrough"
|
|
4598
|
+
| "bearHugSquat"
|
|
4599
|
+
| "clean"
|
|
4600
|
+
| "cleanAndPress"
|
|
4601
|
+
| "curl"
|
|
4602
|
+
| "frontCarry"
|
|
4603
|
+
| "frontSquat"
|
|
4604
|
+
| "lunge"
|
|
4605
|
+
| "overheadPress"
|
|
4606
|
+
| "plankPullThrough"
|
|
4607
|
+
| "rotationalLunge"
|
|
4608
|
+
| "row"
|
|
4609
|
+
| "russianTwist"
|
|
4610
|
+
| "shouldering"
|
|
4611
|
+
| "shoveling"
|
|
4612
|
+
| "sideLunge"
|
|
4613
|
+
| "sprint"
|
|
4614
|
+
| "zercherSquat";
|
|
4615
|
+
|
|
4616
|
+
export type SledExerciseName = number
|
|
4617
|
+
| "backwardDrag"
|
|
4618
|
+
| "chestPress"
|
|
4619
|
+
| "forwardDrag"
|
|
4620
|
+
| "lowPush"
|
|
4621
|
+
| "push"
|
|
4622
|
+
| "row";
|
|
4623
|
+
|
|
4624
|
+
export type SledgeHammerExerciseName = number
|
|
4625
|
+
| "lateralSwing"
|
|
4626
|
+
| "hammerSlam";
|
|
4627
|
+
|
|
4628
|
+
export type StairStepperExerciseName = number
|
|
4629
|
+
| "stairStepper";
|
|
4630
|
+
|
|
4631
|
+
export type SuspensionExerciseName = number
|
|
4632
|
+
| "chestFly"
|
|
4633
|
+
| "chestPress"
|
|
4634
|
+
| "crunch"
|
|
4635
|
+
| "curl"
|
|
4636
|
+
| "dip"
|
|
4637
|
+
| "facePull"
|
|
4638
|
+
| "gluteBridge"
|
|
4639
|
+
| "hamstringCurl"
|
|
4640
|
+
| "hipDrop"
|
|
4641
|
+
| "invertedRow"
|
|
4642
|
+
| "kneeDriveJump"
|
|
4643
|
+
| "kneeToChest"
|
|
4644
|
+
| "latPullover"
|
|
4645
|
+
| "lunge"
|
|
4646
|
+
| "mountainClimber"
|
|
4647
|
+
| "pendulum"
|
|
4648
|
+
| "pike"
|
|
4649
|
+
| "plank"
|
|
4650
|
+
| "powerPull"
|
|
4651
|
+
| "pullUp"
|
|
4652
|
+
| "pushUp"
|
|
4653
|
+
| "reverseMountainClimber"
|
|
4654
|
+
| "reversePlank"
|
|
4655
|
+
| "rollout"
|
|
4656
|
+
| "row"
|
|
4657
|
+
| "sideLunge"
|
|
4658
|
+
| "sidePlank"
|
|
4659
|
+
| "singleLegDeadlift"
|
|
4660
|
+
| "singleLegSquat"
|
|
4661
|
+
| "sitUp"
|
|
4662
|
+
| "split"
|
|
4663
|
+
| "squat"
|
|
4664
|
+
| "squatJump"
|
|
4665
|
+
| "tricepPress"
|
|
4666
|
+
| "yFly";
|
|
4667
|
+
|
|
4668
|
+
export type TireExerciseName = number
|
|
4669
|
+
| "flip";
|
|
4670
|
+
|
|
4671
|
+
export type BikeOutdoorExerciseName = number
|
|
4672
|
+
| "bike";
|
|
4673
|
+
|
|
4674
|
+
export type RunIndoorExerciseName = number
|
|
4675
|
+
| "indoorTrackRun"
|
|
4676
|
+
| "treadmill";
|
|
4677
|
+
|
|
4678
|
+
export type WaterType = number
|
|
4679
|
+
| "fresh"
|
|
4680
|
+
| "salt"
|
|
4681
|
+
| "en13319"
|
|
4682
|
+
| "custom";
|
|
4683
|
+
|
|
4684
|
+
export type TissueModelType = number
|
|
4685
|
+
| "zhl16c" /** Buhlmann's decompression algorithm, version C */;
|
|
4686
|
+
|
|
4687
|
+
export type DiveGasStatus = number
|
|
4688
|
+
| "disabled"
|
|
4689
|
+
| "enabled"
|
|
4690
|
+
| "backupOnly";
|
|
4691
|
+
|
|
4692
|
+
export type DiveAlert = number
|
|
4693
|
+
| "ndlReached"
|
|
4694
|
+
| "gasSwitchPrompted"
|
|
4695
|
+
| "nearSurface"
|
|
4696
|
+
| "approachingNdl"
|
|
4697
|
+
| "po2Warn"
|
|
4698
|
+
| "po2CritHigh"
|
|
4699
|
+
| "po2CritLow"
|
|
4700
|
+
| "timeAlert"
|
|
4701
|
+
| "depthAlert"
|
|
4702
|
+
| "decoCeilingBroken"
|
|
4703
|
+
| "decoComplete"
|
|
4704
|
+
| "safetyStopBroken"
|
|
4705
|
+
| "safetyStopComplete"
|
|
4706
|
+
| "cnsWarning"
|
|
4707
|
+
| "cnsCritical"
|
|
4708
|
+
| "otuWarning"
|
|
4709
|
+
| "otuCritical"
|
|
4710
|
+
| "ascentCritical"
|
|
4711
|
+
| "alertDismissedByKey"
|
|
4712
|
+
| "alertDismissedByTimeout"
|
|
4713
|
+
| "batteryLow"
|
|
4714
|
+
| "batteryCritical"
|
|
4715
|
+
| "safetyStopStarted"
|
|
4716
|
+
| "approachingFirstDecoStop"
|
|
4717
|
+
| "setpointSwitchAutoLow"
|
|
4718
|
+
| "setpointSwitchAutoHigh"
|
|
4719
|
+
| "setpointSwitchManualLow"
|
|
4720
|
+
| "setpointSwitchManualHigh"
|
|
4721
|
+
| "autoSetpointSwitchIgnored"
|
|
4722
|
+
| "switchedToOpenCircuit"
|
|
4723
|
+
| "switchedToClosedCircuit"
|
|
4724
|
+
| "tankBatteryLow"
|
|
4725
|
+
| "po2CcrDilLow" /** ccr diluent has low po2 */
|
|
4726
|
+
| "decoStopCleared" /** a deco stop has been cleared */
|
|
4727
|
+
| "apneaNeutralBuoyancy" /** Target Depth Apnea Alarm triggered */
|
|
4728
|
+
| "apneaTargetDepth" /** Neutral Buoyance Apnea Alarm triggered */
|
|
4729
|
+
| "apneaSurface" /** Surface Apnea Alarm triggered */
|
|
4730
|
+
| "apneaHighSpeed" /** High Speed Apnea Alarm triggered */
|
|
4731
|
+
| "apneaLowSpeed" /** Low Speed Apnea Alarm triggered */;
|
|
4732
|
+
|
|
4733
|
+
export type DiveAlarmType = number
|
|
4734
|
+
| "depth" /** Alarm when a certain depth is crossed */
|
|
4735
|
+
| "time" /** Alarm when a certain time has transpired */
|
|
4736
|
+
| "speed" /** Alarm when a certain ascent or descent rate is exceeded */;
|
|
4737
|
+
|
|
4738
|
+
export type DiveBacklightMode = number
|
|
4739
|
+
| "atDepth"
|
|
4740
|
+
| "alwaysOn";
|
|
4741
|
+
|
|
4742
|
+
export type SleepLevel = number
|
|
4743
|
+
| "unmeasurable"
|
|
4744
|
+
| "awake"
|
|
4745
|
+
| "light"
|
|
4746
|
+
| "deep"
|
|
4747
|
+
| "rem";
|
|
4748
|
+
|
|
4749
|
+
export type Spo2MeasurementType = number
|
|
4750
|
+
| "offWrist"
|
|
4751
|
+
| "spotCheck"
|
|
4752
|
+
| "continuousCheck"
|
|
4753
|
+
| "periodic";
|
|
4754
|
+
|
|
4755
|
+
export type CcrSetpointSwitchMode = number
|
|
4756
|
+
| "manual" /** User switches setpoints manually */
|
|
4757
|
+
| "automatic" /** Switch automatically based on depth */;
|
|
4758
|
+
|
|
4759
|
+
export type DiveGasMode = number
|
|
4760
|
+
| "openCircuit"
|
|
4761
|
+
| "closedCircuitDiluent";
|
|
4762
|
+
|
|
4763
|
+
export type ProjectileType = number
|
|
4764
|
+
| "arrow" /** Arrow projectile type */
|
|
4765
|
+
| "rifleCartridge" /** Rifle cartridge projectile type */
|
|
4766
|
+
| "pistolCartridge" /** Pistol cartridge projectile type */
|
|
4767
|
+
| "shotshell" /** Shotshell projectile type */
|
|
4768
|
+
| "airRiflePellet" /** Air rifle pellet projectile type */
|
|
4769
|
+
| "other" /** Other projectile type */;
|
|
4770
|
+
|
|
4771
|
+
export type FaveroProduct = number
|
|
4772
|
+
| "assiomaUno"
|
|
4773
|
+
| "assiomaDuo";
|
|
4774
|
+
|
|
4775
|
+
export type SplitType = number
|
|
4776
|
+
| "ascentSplit"
|
|
4777
|
+
| "descentSplit"
|
|
4778
|
+
| "intervalActive"
|
|
4779
|
+
| "intervalRest"
|
|
4780
|
+
| "intervalWarmup"
|
|
4781
|
+
| "intervalCooldown"
|
|
4782
|
+
| "intervalRecovery"
|
|
4783
|
+
| "intervalOther"
|
|
4784
|
+
| "climbActive"
|
|
4785
|
+
| "climbRest"
|
|
4786
|
+
| "surfActive"
|
|
4787
|
+
| "runActive"
|
|
4788
|
+
| "runRest"
|
|
4789
|
+
| "workoutRound"
|
|
4790
|
+
| "rwdRun" /** run/walk detection running */
|
|
4791
|
+
| "rwdWalk" /** run/walk detection walking */
|
|
4792
|
+
| "windsurfActive"
|
|
4793
|
+
| "rwdStand" /** run/walk detection standing */
|
|
4794
|
+
| "transition" /** Marks the time going from ascent_split to descent_split/used in backcountry ski */
|
|
4795
|
+
| "skiLiftSplit"
|
|
4796
|
+
| "skiRunSplit";
|
|
4797
|
+
|
|
4798
|
+
export type ClimbProEvent = number
|
|
4799
|
+
| "approach"
|
|
4800
|
+
| "start"
|
|
4801
|
+
| "complete";
|
|
4802
|
+
|
|
4803
|
+
export type GasConsumptionRateType = number
|
|
4804
|
+
| "pressureSac" /** Pressure-based Surface Air Consumption */
|
|
4805
|
+
| "volumeSac" /** Volumetric Surface Air Consumption */
|
|
4806
|
+
| "rmv" /** Respiratory Minute Volume */;
|
|
4807
|
+
|
|
4808
|
+
export type TapSensitivity = number
|
|
4809
|
+
| "high"
|
|
4810
|
+
| "medium"
|
|
4811
|
+
| "low";
|
|
4812
|
+
|
|
4813
|
+
export type RadarThreatLevelType = number
|
|
4814
|
+
| "threatUnknown"
|
|
4815
|
+
| "threatNone"
|
|
4816
|
+
| "threatApproaching"
|
|
4817
|
+
| "threatApproachingFast";
|
|
4818
|
+
|
|
4819
|
+
export type SleepDisruptionSeverity = number
|
|
4820
|
+
| "none"
|
|
4821
|
+
| "low"
|
|
4822
|
+
| "medium"
|
|
4823
|
+
| "high";
|
|
4824
|
+
|
|
4825
|
+
export type NapPeriodFeedback = number
|
|
4826
|
+
| "none"
|
|
4827
|
+
| "multipleNapsDuringDay"
|
|
4828
|
+
| "jetlagIdealTimingIdealDuration"
|
|
4829
|
+
| "jetlagIdealTimingLongDuration"
|
|
4830
|
+
| "jetlagLateTimingIdealDuration"
|
|
4831
|
+
| "jetlagLateTimingLongDuration"
|
|
4832
|
+
| "idealTimingIdealDurationLowNeed"
|
|
4833
|
+
| "idealTimingIdealDurationHighNeed"
|
|
4834
|
+
| "idealTimingLongDurationLowNeed"
|
|
4835
|
+
| "idealTimingLongDurationHighNeed"
|
|
4836
|
+
| "lateTimingIdealDurationLowNeed"
|
|
4837
|
+
| "lateTimingIdealDurationHighNeed"
|
|
4838
|
+
| "lateTimingLongDurationLowNeed"
|
|
4839
|
+
| "lateTimingLongDurationHighNeed"
|
|
4840
|
+
| "idealDurationLowNeed"
|
|
4841
|
+
| "idealDurationHighNeed"
|
|
4842
|
+
| "longDurationLowNeed"
|
|
4843
|
+
| "longDurationHighNeed";
|
|
4844
|
+
|
|
4845
|
+
export type NapSource = number
|
|
4846
|
+
| "automatic"
|
|
4847
|
+
| "manualDevice"
|
|
4848
|
+
| "manualGc";
|
|
4849
|
+
|
|
4850
|
+
export type MaxMetSpeedSource = number
|
|
4851
|
+
| "onboardGps"
|
|
4852
|
+
| "connectedGps"
|
|
4853
|
+
| "cadence";
|
|
4854
|
+
|
|
4855
|
+
export type MaxMetHeartRateSource = number
|
|
4856
|
+
| "whr" /** Wrist Heart Rate Monitor */
|
|
4857
|
+
| "hrm" /** Chest Strap Heart Rate Monitor */;
|
|
4858
|
+
|
|
4859
|
+
export type HrvStatus = number
|
|
4860
|
+
| "none"
|
|
4861
|
+
| "poor"
|
|
4862
|
+
| "low"
|
|
4863
|
+
| "unbalanced"
|
|
4864
|
+
| "balanced";
|
|
4865
|
+
|
|
4866
|
+
export type NoFlyTimeMode = number
|
|
4867
|
+
| "standard" /** Standard Diver Alert Network no-fly guidance */
|
|
4868
|
+
| "flat24Hours" /** Flat 24 hour no-fly guidance */;
|
|
4869
|
+
}
|
|
4870
|
+
|
|
4871
|
+
export default Types;
|