@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.
Files changed (2) hide show
  1. package/index.d.ts +4 -1
  2. 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
- * Supports up to 10,000 points per request for full activity visualization.
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: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stuartshay/otel-data-types",
3
- "version": "1.0.36",
3
+ "version": "1.0.39",
4
4
  "description": "TypeScript types for otel-data-api — Auto-generated from OpenAPI 3.1 specification",
5
5
  "types": "index.d.ts",
6
6
  "exports": {