@stuartshay/otel-data-types 1.0.541 → 1.0.545

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 +8 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -2203,6 +2203,14 @@ export type components = {
2203
2203
  * @description UTC last-update timestamp
2204
2204
  */
2205
2205
  updated_at?: string | null;
2206
+ /**
2207
+ * Route
2208
+ * @description Ordered [latitude, longitude] pairs tracing the segment path, recovered and simplified from the source activity's GPS track. Null when no source activity track can be matched.
2209
+ */
2210
+ route?: [
2211
+ number,
2212
+ number
2213
+ ][] | null;
2206
2214
  };
2207
2215
  /**
2208
2216
  * GarminSegmentCreate
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stuartshay/otel-data-types",
3
- "version": "1.0.541",
3
+ "version": "1.0.545",
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": {