@stuartshay/otel-data-types 1.0.36 → 1.0.39
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 +4 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -202,7 +202,8 @@ export type paths = {
|
|
|
202
202
|
* @description List track points for a specific activity.
|
|
203
203
|
*
|
|
204
204
|
* Returns GPS track points with altitude, speed, heart rate, and cadence data.
|
|
205
|
-
*
|
|
205
|
+
* Use the `simplify` parameter to apply Douglas-Peucker line simplification
|
|
206
|
+
* for efficient map rendering of the complete route.
|
|
206
207
|
*/
|
|
207
208
|
get: operations["list_track_points_api_v1_garmin_activities__activity_id__tracks_get"];
|
|
208
209
|
put?: never;
|
|
@@ -1253,6 +1254,8 @@ export interface operations {
|
|
|
1253
1254
|
/** @description Sort column (timestamp, altitude, speed_kmh, heart_rate, created_at) */
|
|
1254
1255
|
sort?: string;
|
|
1255
1256
|
order?: "asc" | "desc";
|
|
1257
|
+
/** @description Douglas-Peucker simplification tolerance in degrees. When set, returns the full route simplified via PostGIS ST_Simplify, ignoring limit/offset. Recommended: 0.00001 (~1m), 0.00005 (~5m). */
|
|
1258
|
+
simplify?: number | null;
|
|
1256
1259
|
};
|
|
1257
1260
|
header?: never;
|
|
1258
1261
|
path: {
|