@stuartshay/otel-data-types 1.0.726 → 1.0.732
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/index.d.ts +8 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -550,6 +550,14 @@ export type paths = {
|
|
|
550
550
|
/**
|
|
551
551
|
* Create Segment
|
|
552
552
|
* @description Save a new segment (path) from a climb, lap, or manual selection (auth required).
|
|
553
|
+
*
|
|
554
|
+
* distance_meters is computed server-side from GPS data rather than
|
|
555
|
+
* trusting the client -- Garmin devices can report a lap's own recorded
|
|
556
|
+
* distance (garmin_activity_laps.distance_meters) that disagrees sharply
|
|
557
|
+
* with that same lap's actual track points (e.g. GPS degradation near
|
|
558
|
+
* large structures during an auto-lap-by-distance trigger), and the
|
|
559
|
+
* client (a "save this lap/climb as a segment" button) otherwise passes
|
|
560
|
+
* that value straight through with no validation.
|
|
553
561
|
*/
|
|
554
562
|
post: operations["create_segment_api_v1_garmin_segments_post"];
|
|
555
563
|
delete?: never;
|