@stuartshay/otel-data-types 1.0.462 → 1.0.473
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 +51 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -825,6 +825,13 @@ export type components = {
|
|
|
825
825
|
* "avg_temperature_c": 18,
|
|
826
826
|
* "calories": 1689,
|
|
827
827
|
* "created_at": "2026-02-09T23:56:37+00:00",
|
|
828
|
+
* "device": {
|
|
829
|
+
* "device_id": 3444454776,
|
|
830
|
+
* "garmin_product": 4061,
|
|
831
|
+
* "manufacturer": "garmin",
|
|
832
|
+
* "model": "Edge 540 Solar",
|
|
833
|
+
* "software_version": "31.30"
|
|
834
|
+
* },
|
|
828
835
|
* "device_manufacturer": "garmin",
|
|
829
836
|
* "distance_km": 50.6,
|
|
830
837
|
* "duration_seconds": 6932,
|
|
@@ -850,6 +857,7 @@ export type components = {
|
|
|
850
857
|
* "total_distance": 50598.95,
|
|
851
858
|
* "total_elapsed_time": 7200.5,
|
|
852
859
|
* "total_intensity_minutes": 146,
|
|
860
|
+
* "total_strokes": 4250,
|
|
853
861
|
* "total_timer_time": 6932.1,
|
|
854
862
|
* "track_point_count": 10707,
|
|
855
863
|
* "unpaved_distance_km": 0.65,
|
|
@@ -984,6 +992,11 @@ export type components = {
|
|
|
984
992
|
* @description Maximum cadence in RPM
|
|
985
993
|
*/
|
|
986
994
|
max_cadence?: number | null;
|
|
995
|
+
/**
|
|
996
|
+
* Total Strokes
|
|
997
|
+
* @description Total activity strokes
|
|
998
|
+
*/
|
|
999
|
+
total_strokes?: number | null;
|
|
987
1000
|
/**
|
|
988
1001
|
* Calories
|
|
989
1002
|
* @description Total calories burned
|
|
@@ -1064,6 +1077,8 @@ export type components = {
|
|
|
1064
1077
|
* @description Number of GPS track points in this activity
|
|
1065
1078
|
*/
|
|
1066
1079
|
track_point_count?: number | null;
|
|
1080
|
+
/** @description Recording device metadata */
|
|
1081
|
+
device?: components["schemas"]["GarminDevice"] | null;
|
|
1067
1082
|
};
|
|
1068
1083
|
/**
|
|
1069
1084
|
* GarminActivityAddress
|
|
@@ -1285,6 +1300,11 @@ export type components = {
|
|
|
1285
1300
|
* @description Maximum cadence in RPM
|
|
1286
1301
|
*/
|
|
1287
1302
|
max_cadence?: number | null;
|
|
1303
|
+
/**
|
|
1304
|
+
* Total Strokes
|
|
1305
|
+
* @description Total activity strokes
|
|
1306
|
+
*/
|
|
1307
|
+
total_strokes?: number | null;
|
|
1288
1308
|
/**
|
|
1289
1309
|
* Calories
|
|
1290
1310
|
* @description Total calories burned
|
|
@@ -1510,6 +1530,37 @@ export type components = {
|
|
|
1510
1530
|
*/
|
|
1511
1531
|
max_date: string;
|
|
1512
1532
|
};
|
|
1533
|
+
/**
|
|
1534
|
+
* GarminDevice
|
|
1535
|
+
* @description Recording device metadata for a Garmin activity.
|
|
1536
|
+
*/
|
|
1537
|
+
GarminDevice: {
|
|
1538
|
+
/**
|
|
1539
|
+
* Device Id
|
|
1540
|
+
* @description Recording device serial number
|
|
1541
|
+
*/
|
|
1542
|
+
device_id?: number | null;
|
|
1543
|
+
/**
|
|
1544
|
+
* Manufacturer
|
|
1545
|
+
* @description Device manufacturer (e.g. garmin)
|
|
1546
|
+
*/
|
|
1547
|
+
manufacturer?: string | null;
|
|
1548
|
+
/**
|
|
1549
|
+
* Garmin Product
|
|
1550
|
+
* @description Raw Garmin product enum id from the FIT file (e.g. 4061)
|
|
1551
|
+
*/
|
|
1552
|
+
garmin_product?: number | null;
|
|
1553
|
+
/**
|
|
1554
|
+
* Model
|
|
1555
|
+
* @description Friendly device model name (e.g. Edge 540 Solar)
|
|
1556
|
+
*/
|
|
1557
|
+
model?: string | null;
|
|
1558
|
+
/**
|
|
1559
|
+
* Software Version
|
|
1560
|
+
* @description Device firmware/software version (e.g. 31.30)
|
|
1561
|
+
*/
|
|
1562
|
+
software_version?: string | null;
|
|
1563
|
+
};
|
|
1513
1564
|
/**
|
|
1514
1565
|
* GarminSyncResponse
|
|
1515
1566
|
* @description Response payload for Garmin on-demand sync trigger requests.
|