@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.
- package/index.d.ts +8 -0
- 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
|