@stuartshay/otel-data-types 1.0.34
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/README.md +41 -0
- package/index.d.ts +1635 -0
- package/package.json +38 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,1635 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by openapi-typescript.
|
|
3
|
+
* Do not make direct changes to the file.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
export type paths = {
|
|
7
|
+
"/health": {
|
|
8
|
+
parameters: {
|
|
9
|
+
query?: never;
|
|
10
|
+
header?: never;
|
|
11
|
+
path?: never;
|
|
12
|
+
cookie?: never;
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* Health
|
|
16
|
+
* @description Liveness probe — returns healthy if the service is running.
|
|
17
|
+
*/
|
|
18
|
+
get: operations["health_health_get"];
|
|
19
|
+
put?: never;
|
|
20
|
+
post?: never;
|
|
21
|
+
delete?: never;
|
|
22
|
+
options?: never;
|
|
23
|
+
head?: never;
|
|
24
|
+
patch?: never;
|
|
25
|
+
trace?: never;
|
|
26
|
+
};
|
|
27
|
+
"/ready": {
|
|
28
|
+
parameters: {
|
|
29
|
+
query?: never;
|
|
30
|
+
header?: never;
|
|
31
|
+
path?: never;
|
|
32
|
+
cookie?: never;
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* Ready
|
|
36
|
+
* @description Readiness probe — returns ready if the database is reachable.
|
|
37
|
+
*/
|
|
38
|
+
get: operations["ready_ready_get"];
|
|
39
|
+
put?: never;
|
|
40
|
+
post?: never;
|
|
41
|
+
delete?: never;
|
|
42
|
+
options?: never;
|
|
43
|
+
head?: never;
|
|
44
|
+
patch?: never;
|
|
45
|
+
trace?: never;
|
|
46
|
+
};
|
|
47
|
+
"/api/v1/locations": {
|
|
48
|
+
parameters: {
|
|
49
|
+
query?: never;
|
|
50
|
+
header?: never;
|
|
51
|
+
path?: never;
|
|
52
|
+
cookie?: never;
|
|
53
|
+
};
|
|
54
|
+
/**
|
|
55
|
+
* List Locations
|
|
56
|
+
* @description List OwnTracks locations with filtering and pagination.
|
|
57
|
+
*
|
|
58
|
+
* Returns paginated GPS location data recorded by OwnTracks mobile app.
|
|
59
|
+
* Filter by device ID and date range. Includes battery, accuracy, and connection metadata.
|
|
60
|
+
*/
|
|
61
|
+
get: operations["list_locations_api_v1_locations_get"];
|
|
62
|
+
put?: never;
|
|
63
|
+
post?: never;
|
|
64
|
+
delete?: never;
|
|
65
|
+
options?: never;
|
|
66
|
+
head?: never;
|
|
67
|
+
patch?: never;
|
|
68
|
+
trace?: never;
|
|
69
|
+
};
|
|
70
|
+
"/api/v1/locations/devices": {
|
|
71
|
+
parameters: {
|
|
72
|
+
query?: never;
|
|
73
|
+
header?: never;
|
|
74
|
+
path?: never;
|
|
75
|
+
cookie?: never;
|
|
76
|
+
};
|
|
77
|
+
/**
|
|
78
|
+
* List Devices
|
|
79
|
+
* @description List all distinct device IDs.
|
|
80
|
+
*/
|
|
81
|
+
get: operations["list_devices_api_v1_locations_devices_get"];
|
|
82
|
+
put?: never;
|
|
83
|
+
post?: never;
|
|
84
|
+
delete?: never;
|
|
85
|
+
options?: never;
|
|
86
|
+
head?: never;
|
|
87
|
+
patch?: never;
|
|
88
|
+
trace?: never;
|
|
89
|
+
};
|
|
90
|
+
"/api/v1/locations/count": {
|
|
91
|
+
parameters: {
|
|
92
|
+
query?: never;
|
|
93
|
+
header?: never;
|
|
94
|
+
path?: never;
|
|
95
|
+
cookie?: never;
|
|
96
|
+
};
|
|
97
|
+
/**
|
|
98
|
+
* Location Count
|
|
99
|
+
* @description Get total location count with optional filters.
|
|
100
|
+
*/
|
|
101
|
+
get: operations["location_count_api_v1_locations_count_get"];
|
|
102
|
+
put?: never;
|
|
103
|
+
post?: never;
|
|
104
|
+
delete?: never;
|
|
105
|
+
options?: never;
|
|
106
|
+
head?: never;
|
|
107
|
+
patch?: never;
|
|
108
|
+
trace?: never;
|
|
109
|
+
};
|
|
110
|
+
"/api/v1/locations/{location_id}": {
|
|
111
|
+
parameters: {
|
|
112
|
+
query?: never;
|
|
113
|
+
header?: never;
|
|
114
|
+
path?: never;
|
|
115
|
+
cookie?: never;
|
|
116
|
+
};
|
|
117
|
+
/**
|
|
118
|
+
* Get Location
|
|
119
|
+
* @description Get a single location by ID, including raw payload.
|
|
120
|
+
*/
|
|
121
|
+
get: operations["get_location_api_v1_locations__location_id__get"];
|
|
122
|
+
put?: never;
|
|
123
|
+
post?: never;
|
|
124
|
+
delete?: never;
|
|
125
|
+
options?: never;
|
|
126
|
+
head?: never;
|
|
127
|
+
patch?: never;
|
|
128
|
+
trace?: never;
|
|
129
|
+
};
|
|
130
|
+
"/api/v1/garmin/activities": {
|
|
131
|
+
parameters: {
|
|
132
|
+
query?: never;
|
|
133
|
+
header?: never;
|
|
134
|
+
path?: never;
|
|
135
|
+
cookie?: never;
|
|
136
|
+
};
|
|
137
|
+
/**
|
|
138
|
+
* List Activities
|
|
139
|
+
* @description List Garmin activities with filtering and pagination.
|
|
140
|
+
*
|
|
141
|
+
* Returns paginated Garmin cycling/running activities with track point counts.
|
|
142
|
+
* Filter by sport type or date range. Sort by start time, distance, duration, etc.
|
|
143
|
+
*/
|
|
144
|
+
get: operations["list_activities_api_v1_garmin_activities_get"];
|
|
145
|
+
put?: never;
|
|
146
|
+
post?: never;
|
|
147
|
+
delete?: never;
|
|
148
|
+
options?: never;
|
|
149
|
+
head?: never;
|
|
150
|
+
patch?: never;
|
|
151
|
+
trace?: never;
|
|
152
|
+
};
|
|
153
|
+
"/api/v1/garmin/sports": {
|
|
154
|
+
parameters: {
|
|
155
|
+
query?: never;
|
|
156
|
+
header?: never;
|
|
157
|
+
path?: never;
|
|
158
|
+
cookie?: never;
|
|
159
|
+
};
|
|
160
|
+
/**
|
|
161
|
+
* List Sports
|
|
162
|
+
* @description List distinct sport types with activity counts.
|
|
163
|
+
*/
|
|
164
|
+
get: operations["list_sports_api_v1_garmin_sports_get"];
|
|
165
|
+
put?: never;
|
|
166
|
+
post?: never;
|
|
167
|
+
delete?: never;
|
|
168
|
+
options?: never;
|
|
169
|
+
head?: never;
|
|
170
|
+
patch?: never;
|
|
171
|
+
trace?: never;
|
|
172
|
+
};
|
|
173
|
+
"/api/v1/garmin/activities/{activity_id}": {
|
|
174
|
+
parameters: {
|
|
175
|
+
query?: never;
|
|
176
|
+
header?: never;
|
|
177
|
+
path?: never;
|
|
178
|
+
cookie?: never;
|
|
179
|
+
};
|
|
180
|
+
/**
|
|
181
|
+
* Get Activity
|
|
182
|
+
* @description Get a single Garmin activity by ID with track point count.
|
|
183
|
+
*/
|
|
184
|
+
get: operations["get_activity_api_v1_garmin_activities__activity_id__get"];
|
|
185
|
+
put?: never;
|
|
186
|
+
post?: never;
|
|
187
|
+
delete?: never;
|
|
188
|
+
options?: never;
|
|
189
|
+
head?: never;
|
|
190
|
+
patch?: never;
|
|
191
|
+
trace?: never;
|
|
192
|
+
};
|
|
193
|
+
"/api/v1/garmin/activities/{activity_id}/tracks": {
|
|
194
|
+
parameters: {
|
|
195
|
+
query?: never;
|
|
196
|
+
header?: never;
|
|
197
|
+
path?: never;
|
|
198
|
+
cookie?: never;
|
|
199
|
+
};
|
|
200
|
+
/**
|
|
201
|
+
* List Track Points
|
|
202
|
+
* @description List track points for a specific activity.
|
|
203
|
+
*
|
|
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.
|
|
206
|
+
*/
|
|
207
|
+
get: operations["list_track_points_api_v1_garmin_activities__activity_id__tracks_get"];
|
|
208
|
+
put?: never;
|
|
209
|
+
post?: never;
|
|
210
|
+
delete?: never;
|
|
211
|
+
options?: never;
|
|
212
|
+
head?: never;
|
|
213
|
+
patch?: never;
|
|
214
|
+
trace?: never;
|
|
215
|
+
};
|
|
216
|
+
"/api/v1/gps/unified": {
|
|
217
|
+
parameters: {
|
|
218
|
+
query?: never;
|
|
219
|
+
header?: never;
|
|
220
|
+
path?: never;
|
|
221
|
+
cookie?: never;
|
|
222
|
+
};
|
|
223
|
+
/**
|
|
224
|
+
* List Unified Gps
|
|
225
|
+
* @description Query the unified_gps_points view combining OwnTracks + Garmin data.
|
|
226
|
+
*
|
|
227
|
+
* Merges OwnTracks location data and Garmin track points into a single
|
|
228
|
+
* chronological stream. Filter by data source or date range.
|
|
229
|
+
*/
|
|
230
|
+
get: operations["list_unified_gps_api_v1_gps_unified_get"];
|
|
231
|
+
put?: never;
|
|
232
|
+
post?: never;
|
|
233
|
+
delete?: never;
|
|
234
|
+
options?: never;
|
|
235
|
+
head?: never;
|
|
236
|
+
patch?: never;
|
|
237
|
+
trace?: never;
|
|
238
|
+
};
|
|
239
|
+
"/api/v1/gps/daily-summary": {
|
|
240
|
+
parameters: {
|
|
241
|
+
query?: never;
|
|
242
|
+
header?: never;
|
|
243
|
+
path?: never;
|
|
244
|
+
cookie?: never;
|
|
245
|
+
};
|
|
246
|
+
/**
|
|
247
|
+
* Daily Summary
|
|
248
|
+
* @description Query the daily_activity_summary view for aggregated daily stats.
|
|
249
|
+
*
|
|
250
|
+
* Returns per-day aggregates including OwnTracks point counts, battery stats,
|
|
251
|
+
* and Garmin activity metrics (distance, duration, heart rate, calories).
|
|
252
|
+
*/
|
|
253
|
+
get: operations["daily_summary_api_v1_gps_daily_summary_get"];
|
|
254
|
+
put?: never;
|
|
255
|
+
post?: never;
|
|
256
|
+
delete?: never;
|
|
257
|
+
options?: never;
|
|
258
|
+
head?: never;
|
|
259
|
+
patch?: never;
|
|
260
|
+
trace?: never;
|
|
261
|
+
};
|
|
262
|
+
"/api/v1/reference-locations": {
|
|
263
|
+
parameters: {
|
|
264
|
+
query?: never;
|
|
265
|
+
header?: never;
|
|
266
|
+
path?: never;
|
|
267
|
+
cookie?: never;
|
|
268
|
+
};
|
|
269
|
+
/**
|
|
270
|
+
* List Reference Locations
|
|
271
|
+
* @description List all reference locations.
|
|
272
|
+
*/
|
|
273
|
+
get: operations["list_reference_locations_api_v1_reference_locations_get"];
|
|
274
|
+
put?: never;
|
|
275
|
+
/**
|
|
276
|
+
* Create Reference Location
|
|
277
|
+
* @description Create a new reference location (auth required).
|
|
278
|
+
*/
|
|
279
|
+
post: operations["create_reference_location_api_v1_reference_locations_post"];
|
|
280
|
+
delete?: never;
|
|
281
|
+
options?: never;
|
|
282
|
+
head?: never;
|
|
283
|
+
patch?: never;
|
|
284
|
+
trace?: never;
|
|
285
|
+
};
|
|
286
|
+
"/api/v1/reference-locations/{location_id}": {
|
|
287
|
+
parameters: {
|
|
288
|
+
query?: never;
|
|
289
|
+
header?: never;
|
|
290
|
+
path?: never;
|
|
291
|
+
cookie?: never;
|
|
292
|
+
};
|
|
293
|
+
/**
|
|
294
|
+
* Get Reference Location
|
|
295
|
+
* @description Get a single reference location by ID.
|
|
296
|
+
*/
|
|
297
|
+
get: operations["get_reference_location_api_v1_reference_locations__location_id__get"];
|
|
298
|
+
/**
|
|
299
|
+
* Update Reference Location
|
|
300
|
+
* @description Update a reference location (auth required).
|
|
301
|
+
*/
|
|
302
|
+
put: operations["update_reference_location_api_v1_reference_locations__location_id__put"];
|
|
303
|
+
post?: never;
|
|
304
|
+
/**
|
|
305
|
+
* Delete Reference Location
|
|
306
|
+
* @description Delete a reference location (auth required).
|
|
307
|
+
*/
|
|
308
|
+
delete: operations["delete_reference_location_api_v1_reference_locations__location_id__delete"];
|
|
309
|
+
options?: never;
|
|
310
|
+
head?: never;
|
|
311
|
+
patch?: never;
|
|
312
|
+
trace?: never;
|
|
313
|
+
};
|
|
314
|
+
"/api/v1/spatial/nearby": {
|
|
315
|
+
parameters: {
|
|
316
|
+
query?: never;
|
|
317
|
+
header?: never;
|
|
318
|
+
path?: never;
|
|
319
|
+
cookie?: never;
|
|
320
|
+
};
|
|
321
|
+
/**
|
|
322
|
+
* Find Nearby
|
|
323
|
+
* @description Find GPS points within a radius of a given lat/lon using PostGIS ST_DWithin.
|
|
324
|
+
*
|
|
325
|
+
* Searches both OwnTracks locations and Garmin track points within the
|
|
326
|
+
* specified radius. Results are sorted by distance from the center point.
|
|
327
|
+
*/
|
|
328
|
+
get: operations["find_nearby_api_v1_spatial_nearby_get"];
|
|
329
|
+
put?: never;
|
|
330
|
+
post?: never;
|
|
331
|
+
delete?: never;
|
|
332
|
+
options?: never;
|
|
333
|
+
head?: never;
|
|
334
|
+
patch?: never;
|
|
335
|
+
trace?: never;
|
|
336
|
+
};
|
|
337
|
+
"/api/v1/spatial/distance": {
|
|
338
|
+
parameters: {
|
|
339
|
+
query?: never;
|
|
340
|
+
header?: never;
|
|
341
|
+
path?: never;
|
|
342
|
+
cookie?: never;
|
|
343
|
+
};
|
|
344
|
+
/**
|
|
345
|
+
* Calculate Distance
|
|
346
|
+
* @description Calculate the distance in meters between two points using PostGIS ST_Distance.
|
|
347
|
+
*
|
|
348
|
+
* Uses geodesic (geography) distance for accurate results on the Earth's surface.
|
|
349
|
+
*/
|
|
350
|
+
get: operations["calculate_distance_api_v1_spatial_distance_get"];
|
|
351
|
+
put?: never;
|
|
352
|
+
post?: never;
|
|
353
|
+
delete?: never;
|
|
354
|
+
options?: never;
|
|
355
|
+
head?: never;
|
|
356
|
+
patch?: never;
|
|
357
|
+
trace?: never;
|
|
358
|
+
};
|
|
359
|
+
"/api/v1/spatial/within-reference/{name}": {
|
|
360
|
+
parameters: {
|
|
361
|
+
query?: never;
|
|
362
|
+
header?: never;
|
|
363
|
+
path?: never;
|
|
364
|
+
cookie?: never;
|
|
365
|
+
};
|
|
366
|
+
/**
|
|
367
|
+
* Within Reference
|
|
368
|
+
* @description Find all GPS points within a named reference location's radius.
|
|
369
|
+
*
|
|
370
|
+
* Looks up a named reference location (e.g. 'home') and finds all GPS points
|
|
371
|
+
* from OwnTracks and/or Garmin data within its configured radius.
|
|
372
|
+
*/
|
|
373
|
+
get: operations["within_reference_api_v1_spatial_within_reference__name__get"];
|
|
374
|
+
put?: never;
|
|
375
|
+
post?: never;
|
|
376
|
+
delete?: never;
|
|
377
|
+
options?: never;
|
|
378
|
+
head?: never;
|
|
379
|
+
patch?: never;
|
|
380
|
+
trace?: never;
|
|
381
|
+
};
|
|
382
|
+
};
|
|
383
|
+
export type webhooks = Record<string, never>;
|
|
384
|
+
export type components = {
|
|
385
|
+
schemas: {
|
|
386
|
+
/**
|
|
387
|
+
* DailyActivitySummary
|
|
388
|
+
* @example {
|
|
389
|
+
* "activity_date": "2026-02-11",
|
|
390
|
+
* "avg_accuracy": 4.89,
|
|
391
|
+
* "avg_heart_rate": 142,
|
|
392
|
+
* "garmin_activities": 1,
|
|
393
|
+
* "garmin_sport": "cycling",
|
|
394
|
+
* "max_battery": 100,
|
|
395
|
+
* "min_battery": 64,
|
|
396
|
+
* "owntracks_device": "iphone_stuart",
|
|
397
|
+
* "owntracks_points": 1429,
|
|
398
|
+
* "total_calories": 1689,
|
|
399
|
+
* "total_distance_km": 50.6,
|
|
400
|
+
* "total_duration_seconds": 6932
|
|
401
|
+
* }
|
|
402
|
+
*/
|
|
403
|
+
DailyActivitySummary: {
|
|
404
|
+
/** Activity Date */
|
|
405
|
+
activity_date?: string | null;
|
|
406
|
+
/** Owntracks Device */
|
|
407
|
+
owntracks_device?: string | null;
|
|
408
|
+
/** Owntracks Points */
|
|
409
|
+
owntracks_points?: number | null;
|
|
410
|
+
/** Min Battery */
|
|
411
|
+
min_battery?: number | null;
|
|
412
|
+
/** Max Battery */
|
|
413
|
+
max_battery?: number | null;
|
|
414
|
+
/** Avg Accuracy */
|
|
415
|
+
avg_accuracy?: number | null;
|
|
416
|
+
/** Garmin Sport */
|
|
417
|
+
garmin_sport?: string | null;
|
|
418
|
+
/** Garmin Activities */
|
|
419
|
+
garmin_activities?: number | null;
|
|
420
|
+
/** Total Distance Km */
|
|
421
|
+
total_distance_km?: number | null;
|
|
422
|
+
/** Total Duration Seconds */
|
|
423
|
+
total_duration_seconds?: number | null;
|
|
424
|
+
/** Avg Heart Rate */
|
|
425
|
+
avg_heart_rate?: number | null;
|
|
426
|
+
/** Total Calories */
|
|
427
|
+
total_calories?: number | null;
|
|
428
|
+
};
|
|
429
|
+
/**
|
|
430
|
+
* DeviceInfo
|
|
431
|
+
* @example {
|
|
432
|
+
* "device_id": "iphone_stuart"
|
|
433
|
+
* }
|
|
434
|
+
*/
|
|
435
|
+
DeviceInfo: {
|
|
436
|
+
/** Device Id */
|
|
437
|
+
device_id: string;
|
|
438
|
+
};
|
|
439
|
+
/**
|
|
440
|
+
* DistanceResult
|
|
441
|
+
* @example {
|
|
442
|
+
* "distance_meters": 5309.71,
|
|
443
|
+
* "from_lat": 40.7128,
|
|
444
|
+
* "from_lon": -74.006,
|
|
445
|
+
* "to_lat": 40.758,
|
|
446
|
+
* "to_lon": -73.9855
|
|
447
|
+
* }
|
|
448
|
+
*/
|
|
449
|
+
DistanceResult: {
|
|
450
|
+
/** Distance Meters */
|
|
451
|
+
distance_meters: number;
|
|
452
|
+
/** From Lat */
|
|
453
|
+
from_lat: number;
|
|
454
|
+
/** From Lon */
|
|
455
|
+
from_lon: number;
|
|
456
|
+
/** To Lat */
|
|
457
|
+
to_lat: number;
|
|
458
|
+
/** To Lon */
|
|
459
|
+
to_lon: number;
|
|
460
|
+
};
|
|
461
|
+
/**
|
|
462
|
+
* GarminActivity
|
|
463
|
+
* @example {
|
|
464
|
+
* "activity_id": "20932993811",
|
|
465
|
+
* "avg_cadence": 78,
|
|
466
|
+
* "avg_heart_rate": 142,
|
|
467
|
+
* "avg_pace": 3.513345,
|
|
468
|
+
* "avg_speed_kmh": 26.3,
|
|
469
|
+
* "avg_temperature_c": 18,
|
|
470
|
+
* "calories": 1689,
|
|
471
|
+
* "created_at": "2026-02-09T23:56:37+00:00",
|
|
472
|
+
* "device_manufacturer": "garmin",
|
|
473
|
+
* "distance_km": 50.6,
|
|
474
|
+
* "duration_seconds": 6932,
|
|
475
|
+
* "end_time": "2025-11-08T20:16:45+00:00",
|
|
476
|
+
* "max_cadence": 112,
|
|
477
|
+
* "max_heart_rate": 178,
|
|
478
|
+
* "max_speed_kmh": 48.7,
|
|
479
|
+
* "max_temperature_c": 22,
|
|
480
|
+
* "min_temperature_c": 14,
|
|
481
|
+
* "sport": "cycling",
|
|
482
|
+
* "start_time": "2025-11-08T18:21:13+00:00",
|
|
483
|
+
* "sub_sport": "road",
|
|
484
|
+
* "total_ascent_m": 385,
|
|
485
|
+
* "total_descent_m": 380,
|
|
486
|
+
* "total_distance": 50598.95,
|
|
487
|
+
* "total_elapsed_time": 7200.5,
|
|
488
|
+
* "total_timer_time": 6932.1,
|
|
489
|
+
* "track_point_count": 10707,
|
|
490
|
+
* "uploaded_at": "2026-02-09T23:56:37+00:00"
|
|
491
|
+
* }
|
|
492
|
+
*/
|
|
493
|
+
GarminActivity: {
|
|
494
|
+
/** Activity Id */
|
|
495
|
+
activity_id: string;
|
|
496
|
+
/** Sport */
|
|
497
|
+
sport: string;
|
|
498
|
+
/** Sub Sport */
|
|
499
|
+
sub_sport?: string | null;
|
|
500
|
+
/** Start Time */
|
|
501
|
+
start_time?: string | null;
|
|
502
|
+
/** End Time */
|
|
503
|
+
end_time?: string | null;
|
|
504
|
+
/** Distance Km */
|
|
505
|
+
distance_km?: number | null;
|
|
506
|
+
/** Duration Seconds */
|
|
507
|
+
duration_seconds?: number | null;
|
|
508
|
+
/** Avg Heart Rate */
|
|
509
|
+
avg_heart_rate?: number | null;
|
|
510
|
+
/** Max Heart Rate */
|
|
511
|
+
max_heart_rate?: number | null;
|
|
512
|
+
/** Avg Cadence */
|
|
513
|
+
avg_cadence?: number | null;
|
|
514
|
+
/** Max Cadence */
|
|
515
|
+
max_cadence?: number | null;
|
|
516
|
+
/** Calories */
|
|
517
|
+
calories?: number | null;
|
|
518
|
+
/** Avg Speed Kmh */
|
|
519
|
+
avg_speed_kmh?: number | null;
|
|
520
|
+
/** Max Speed Kmh */
|
|
521
|
+
max_speed_kmh?: number | null;
|
|
522
|
+
/** Total Ascent M */
|
|
523
|
+
total_ascent_m?: number | null;
|
|
524
|
+
/** Total Descent M */
|
|
525
|
+
total_descent_m?: number | null;
|
|
526
|
+
/** Total Distance */
|
|
527
|
+
total_distance?: number | null;
|
|
528
|
+
/** Avg Pace */
|
|
529
|
+
avg_pace?: number | null;
|
|
530
|
+
/** Device Manufacturer */
|
|
531
|
+
device_manufacturer?: string | null;
|
|
532
|
+
/** Avg Temperature C */
|
|
533
|
+
avg_temperature_c?: number | null;
|
|
534
|
+
/** Min Temperature C */
|
|
535
|
+
min_temperature_c?: number | null;
|
|
536
|
+
/** Max Temperature C */
|
|
537
|
+
max_temperature_c?: number | null;
|
|
538
|
+
/** Total Elapsed Time */
|
|
539
|
+
total_elapsed_time?: number | null;
|
|
540
|
+
/** Total Timer Time */
|
|
541
|
+
total_timer_time?: number | null;
|
|
542
|
+
/** Created At */
|
|
543
|
+
created_at?: string | null;
|
|
544
|
+
/** Uploaded At */
|
|
545
|
+
uploaded_at?: string | null;
|
|
546
|
+
/** Track Point Count */
|
|
547
|
+
track_point_count?: number | null;
|
|
548
|
+
};
|
|
549
|
+
/**
|
|
550
|
+
* GarminTrackPoint
|
|
551
|
+
* @example {
|
|
552
|
+
* "activity_id": "20932993811",
|
|
553
|
+
* "altitude": 12.4,
|
|
554
|
+
* "cadence": 80,
|
|
555
|
+
* "created_at": "2026-02-09T23:56:37Z",
|
|
556
|
+
* "distance_from_start_km": 0,
|
|
557
|
+
* "heart_rate": 135,
|
|
558
|
+
* "id": 7454,
|
|
559
|
+
* "latitude": 40.71501586586237,
|
|
560
|
+
* "longitude": -74.01768794283271,
|
|
561
|
+
* "speed_kmh": 24.5,
|
|
562
|
+
* "temperature_c": 18,
|
|
563
|
+
* "timestamp": "2025-11-08T18:21:13Z"
|
|
564
|
+
* }
|
|
565
|
+
*/
|
|
566
|
+
GarminTrackPoint: {
|
|
567
|
+
/** Id */
|
|
568
|
+
id: number;
|
|
569
|
+
/** Activity Id */
|
|
570
|
+
activity_id: string;
|
|
571
|
+
/** Latitude */
|
|
572
|
+
latitude: number;
|
|
573
|
+
/** Longitude */
|
|
574
|
+
longitude: number;
|
|
575
|
+
/**
|
|
576
|
+
* Timestamp
|
|
577
|
+
* Format: date-time
|
|
578
|
+
*/
|
|
579
|
+
timestamp: string;
|
|
580
|
+
/** Altitude */
|
|
581
|
+
altitude?: number | null;
|
|
582
|
+
/** Distance From Start Km */
|
|
583
|
+
distance_from_start_km?: number | null;
|
|
584
|
+
/** Speed Kmh */
|
|
585
|
+
speed_kmh?: number | null;
|
|
586
|
+
/** Heart Rate */
|
|
587
|
+
heart_rate?: number | null;
|
|
588
|
+
/** Cadence */
|
|
589
|
+
cadence?: number | null;
|
|
590
|
+
/** Temperature C */
|
|
591
|
+
temperature_c?: number | null;
|
|
592
|
+
/** Created At */
|
|
593
|
+
created_at?: string | null;
|
|
594
|
+
};
|
|
595
|
+
/** HTTPValidationError */
|
|
596
|
+
HTTPValidationError: {
|
|
597
|
+
/** Detail */
|
|
598
|
+
detail?: components["schemas"]["ValidationError"][];
|
|
599
|
+
};
|
|
600
|
+
/**
|
|
601
|
+
* Location
|
|
602
|
+
* @example {
|
|
603
|
+
* "accuracy": 7,
|
|
604
|
+
* "altitude": 4,
|
|
605
|
+
* "battery": 100,
|
|
606
|
+
* "battery_status": 2,
|
|
607
|
+
* "connection_type": "w",
|
|
608
|
+
* "created_at": "2026-02-12T08:10:55+00:00",
|
|
609
|
+
* "device_id": "iphone_stuart",
|
|
610
|
+
* "id": 101160,
|
|
611
|
+
* "latitude": 40.736238,
|
|
612
|
+
* "longitude": -74.039405,
|
|
613
|
+
* "tid": "ss",
|
|
614
|
+
* "timestamp": "2026-02-12T08:10:55+00:00",
|
|
615
|
+
* "trigger": "t"
|
|
616
|
+
* }
|
|
617
|
+
*/
|
|
618
|
+
Location: {
|
|
619
|
+
/** Id */
|
|
620
|
+
id: number;
|
|
621
|
+
/** Device Id */
|
|
622
|
+
device_id: string;
|
|
623
|
+
/** Tid */
|
|
624
|
+
tid?: string | null;
|
|
625
|
+
/** Latitude */
|
|
626
|
+
latitude: number;
|
|
627
|
+
/** Longitude */
|
|
628
|
+
longitude: number;
|
|
629
|
+
/** Accuracy */
|
|
630
|
+
accuracy?: number | null;
|
|
631
|
+
/** Altitude */
|
|
632
|
+
altitude?: number | null;
|
|
633
|
+
/** Velocity */
|
|
634
|
+
velocity?: number | null;
|
|
635
|
+
/** Battery */
|
|
636
|
+
battery?: number | null;
|
|
637
|
+
/** Battery Status */
|
|
638
|
+
battery_status?: number | null;
|
|
639
|
+
/** Connection Type */
|
|
640
|
+
connection_type?: string | null;
|
|
641
|
+
/** Trigger */
|
|
642
|
+
trigger?: string | null;
|
|
643
|
+
/**
|
|
644
|
+
* Timestamp
|
|
645
|
+
* Format: date-time
|
|
646
|
+
*/
|
|
647
|
+
timestamp: string;
|
|
648
|
+
/** Created At */
|
|
649
|
+
created_at?: string | null;
|
|
650
|
+
};
|
|
651
|
+
/**
|
|
652
|
+
* LocationCount
|
|
653
|
+
* @example {
|
|
654
|
+
* "count": 45883,
|
|
655
|
+
* "device_id": "iphone_stuart"
|
|
656
|
+
* }
|
|
657
|
+
*/
|
|
658
|
+
LocationCount: {
|
|
659
|
+
/** Count */
|
|
660
|
+
count: number;
|
|
661
|
+
/** Date */
|
|
662
|
+
date?: string | null;
|
|
663
|
+
/** Device Id */
|
|
664
|
+
device_id?: string | null;
|
|
665
|
+
};
|
|
666
|
+
/**
|
|
667
|
+
* LocationDetail
|
|
668
|
+
* @example {
|
|
669
|
+
* "accuracy": 7,
|
|
670
|
+
* "altitude": 4,
|
|
671
|
+
* "battery": 100,
|
|
672
|
+
* "battery_status": 2,
|
|
673
|
+
* "connection_type": "w",
|
|
674
|
+
* "created_at": "2026-02-12T08:10:55Z",
|
|
675
|
+
* "device_id": "iphone_stuart",
|
|
676
|
+
* "id": 101160,
|
|
677
|
+
* "latitude": 40.736238,
|
|
678
|
+
* "longitude": -74.039405,
|
|
679
|
+
* "raw_payload": {
|
|
680
|
+
* "_type": "location",
|
|
681
|
+
* "acc": 7,
|
|
682
|
+
* "batt": 100,
|
|
683
|
+
* "lat": 40.736238,
|
|
684
|
+
* "lon": -74.039405,
|
|
685
|
+
* "tid": "ss"
|
|
686
|
+
* },
|
|
687
|
+
* "tid": "ss",
|
|
688
|
+
* "timestamp": "2026-02-12T08:10:55Z",
|
|
689
|
+
* "trigger": "t"
|
|
690
|
+
* }
|
|
691
|
+
*/
|
|
692
|
+
LocationDetail: {
|
|
693
|
+
/** Id */
|
|
694
|
+
id: number;
|
|
695
|
+
/** Device Id */
|
|
696
|
+
device_id: string;
|
|
697
|
+
/** Tid */
|
|
698
|
+
tid?: string | null;
|
|
699
|
+
/** Latitude */
|
|
700
|
+
latitude: number;
|
|
701
|
+
/** Longitude */
|
|
702
|
+
longitude: number;
|
|
703
|
+
/** Accuracy */
|
|
704
|
+
accuracy?: number | null;
|
|
705
|
+
/** Altitude */
|
|
706
|
+
altitude?: number | null;
|
|
707
|
+
/** Velocity */
|
|
708
|
+
velocity?: number | null;
|
|
709
|
+
/** Battery */
|
|
710
|
+
battery?: number | null;
|
|
711
|
+
/** Battery Status */
|
|
712
|
+
battery_status?: number | null;
|
|
713
|
+
/** Connection Type */
|
|
714
|
+
connection_type?: string | null;
|
|
715
|
+
/** Trigger */
|
|
716
|
+
trigger?: string | null;
|
|
717
|
+
/**
|
|
718
|
+
* Timestamp
|
|
719
|
+
* Format: date-time
|
|
720
|
+
*/
|
|
721
|
+
timestamp: string;
|
|
722
|
+
/** Created At */
|
|
723
|
+
created_at?: string | null;
|
|
724
|
+
/** Raw Payload */
|
|
725
|
+
raw_payload?: {
|
|
726
|
+
[key: string]: unknown;
|
|
727
|
+
} | null;
|
|
728
|
+
};
|
|
729
|
+
/**
|
|
730
|
+
* NearbyPoint
|
|
731
|
+
* @example {
|
|
732
|
+
* "distance_meters": 0.4,
|
|
733
|
+
* "id": 35144,
|
|
734
|
+
* "latitude": 40.736202,
|
|
735
|
+
* "longitude": -74.039404,
|
|
736
|
+
* "source": "owntracks",
|
|
737
|
+
* "timestamp": "2026-02-02T10:30:53Z"
|
|
738
|
+
* }
|
|
739
|
+
*/
|
|
740
|
+
NearbyPoint: {
|
|
741
|
+
/** Source */
|
|
742
|
+
source: string;
|
|
743
|
+
/** Id */
|
|
744
|
+
id: number;
|
|
745
|
+
/** Latitude */
|
|
746
|
+
latitude: number;
|
|
747
|
+
/** Longitude */
|
|
748
|
+
longitude: number;
|
|
749
|
+
/** Distance Meters */
|
|
750
|
+
distance_meters: number;
|
|
751
|
+
/**
|
|
752
|
+
* Timestamp
|
|
753
|
+
* Format: date-time
|
|
754
|
+
*/
|
|
755
|
+
timestamp: string;
|
|
756
|
+
};
|
|
757
|
+
/** PaginatedResponse[GarminActivity] */
|
|
758
|
+
PaginatedResponse_GarminActivity_: {
|
|
759
|
+
/** Items */
|
|
760
|
+
items: components["schemas"]["GarminActivity"][];
|
|
761
|
+
/** Total */
|
|
762
|
+
total: number;
|
|
763
|
+
/** Limit */
|
|
764
|
+
limit: number;
|
|
765
|
+
/** Offset */
|
|
766
|
+
offset: number;
|
|
767
|
+
};
|
|
768
|
+
/** PaginatedResponse[GarminTrackPoint] */
|
|
769
|
+
PaginatedResponse_GarminTrackPoint_: {
|
|
770
|
+
/** Items */
|
|
771
|
+
items: components["schemas"]["GarminTrackPoint"][];
|
|
772
|
+
/** Total */
|
|
773
|
+
total: number;
|
|
774
|
+
/** Limit */
|
|
775
|
+
limit: number;
|
|
776
|
+
/** Offset */
|
|
777
|
+
offset: number;
|
|
778
|
+
};
|
|
779
|
+
/** PaginatedResponse[Location] */
|
|
780
|
+
PaginatedResponse_Location_: {
|
|
781
|
+
/** Items */
|
|
782
|
+
items: components["schemas"]["Location"][];
|
|
783
|
+
/** Total */
|
|
784
|
+
total: number;
|
|
785
|
+
/** Limit */
|
|
786
|
+
limit: number;
|
|
787
|
+
/** Offset */
|
|
788
|
+
offset: number;
|
|
789
|
+
};
|
|
790
|
+
/** PaginatedResponse[UnifiedGpsPoint] */
|
|
791
|
+
PaginatedResponse_UnifiedGpsPoint_: {
|
|
792
|
+
/** Items */
|
|
793
|
+
items: components["schemas"]["UnifiedGpsPoint"][];
|
|
794
|
+
/** Total */
|
|
795
|
+
total: number;
|
|
796
|
+
/** Limit */
|
|
797
|
+
limit: number;
|
|
798
|
+
/** Offset */
|
|
799
|
+
offset: number;
|
|
800
|
+
};
|
|
801
|
+
/**
|
|
802
|
+
* ReferenceLocation
|
|
803
|
+
* @example {
|
|
804
|
+
* "created_at": "2026-02-03T22:49:07+00:00",
|
|
805
|
+
* "description": "Primary apartment - 40m radius",
|
|
806
|
+
* "id": 1,
|
|
807
|
+
* "latitude": 40.7362,
|
|
808
|
+
* "longitude": -74.0394,
|
|
809
|
+
* "name": "home",
|
|
810
|
+
* "radius_meters": 40,
|
|
811
|
+
* "updated_at": "2026-02-03T22:50:01+00:00"
|
|
812
|
+
* }
|
|
813
|
+
*/
|
|
814
|
+
ReferenceLocation: {
|
|
815
|
+
/** Id */
|
|
816
|
+
id: number;
|
|
817
|
+
/** Name */
|
|
818
|
+
name: string;
|
|
819
|
+
/** Latitude */
|
|
820
|
+
latitude: number;
|
|
821
|
+
/** Longitude */
|
|
822
|
+
longitude: number;
|
|
823
|
+
/**
|
|
824
|
+
* Radius Meters
|
|
825
|
+
* @default 50
|
|
826
|
+
*/
|
|
827
|
+
radius_meters: number;
|
|
828
|
+
/** Description */
|
|
829
|
+
description?: string | null;
|
|
830
|
+
/** Created At */
|
|
831
|
+
created_at?: string | null;
|
|
832
|
+
/** Updated At */
|
|
833
|
+
updated_at?: string | null;
|
|
834
|
+
};
|
|
835
|
+
/**
|
|
836
|
+
* ReferenceLocationCreate
|
|
837
|
+
* @example {
|
|
838
|
+
* "description": "Downtown office building",
|
|
839
|
+
* "latitude": 40.7128,
|
|
840
|
+
* "longitude": -74.006,
|
|
841
|
+
* "name": "office",
|
|
842
|
+
* "radius_meters": 100
|
|
843
|
+
* }
|
|
844
|
+
*/
|
|
845
|
+
ReferenceLocationCreate: {
|
|
846
|
+
/** Name */
|
|
847
|
+
name: string;
|
|
848
|
+
/** Latitude */
|
|
849
|
+
latitude: number;
|
|
850
|
+
/** Longitude */
|
|
851
|
+
longitude: number;
|
|
852
|
+
/**
|
|
853
|
+
* Radius Meters
|
|
854
|
+
* @default 50
|
|
855
|
+
*/
|
|
856
|
+
radius_meters: number;
|
|
857
|
+
/** Description */
|
|
858
|
+
description?: string | null;
|
|
859
|
+
};
|
|
860
|
+
/**
|
|
861
|
+
* ReferenceLocationUpdate
|
|
862
|
+
* @example {
|
|
863
|
+
* "description": "Updated radius for office building",
|
|
864
|
+
* "radius_meters": 75
|
|
865
|
+
* }
|
|
866
|
+
*/
|
|
867
|
+
ReferenceLocationUpdate: {
|
|
868
|
+
/** Name */
|
|
869
|
+
name?: string | null;
|
|
870
|
+
/** Latitude */
|
|
871
|
+
latitude?: number | null;
|
|
872
|
+
/** Longitude */
|
|
873
|
+
longitude?: number | null;
|
|
874
|
+
/** Radius Meters */
|
|
875
|
+
radius_meters?: number | null;
|
|
876
|
+
/** Description */
|
|
877
|
+
description?: string | null;
|
|
878
|
+
};
|
|
879
|
+
/**
|
|
880
|
+
* SportInfo
|
|
881
|
+
* @example {
|
|
882
|
+
* "activity_count": 20,
|
|
883
|
+
* "sport": "cycling"
|
|
884
|
+
* }
|
|
885
|
+
*/
|
|
886
|
+
SportInfo: {
|
|
887
|
+
/** Sport */
|
|
888
|
+
sport: string;
|
|
889
|
+
/** Activity Count */
|
|
890
|
+
activity_count: number;
|
|
891
|
+
};
|
|
892
|
+
/**
|
|
893
|
+
* UnifiedGpsPoint
|
|
894
|
+
* @example {
|
|
895
|
+
* "accuracy": 7,
|
|
896
|
+
* "battery": 100,
|
|
897
|
+
* "created_at": "2026-02-12T08:11:55+00:00",
|
|
898
|
+
* "identifier": "iphone_stuart",
|
|
899
|
+
* "latitude": 40.736238,
|
|
900
|
+
* "longitude": -74.039405,
|
|
901
|
+
* "source": "owntracks",
|
|
902
|
+
* "timestamp": "2026-02-12T08:11:55+00:00"
|
|
903
|
+
* }
|
|
904
|
+
*/
|
|
905
|
+
UnifiedGpsPoint: {
|
|
906
|
+
/** Source */
|
|
907
|
+
source: string;
|
|
908
|
+
/** Identifier */
|
|
909
|
+
identifier: string;
|
|
910
|
+
/** Latitude */
|
|
911
|
+
latitude: number;
|
|
912
|
+
/** Longitude */
|
|
913
|
+
longitude: number;
|
|
914
|
+
/**
|
|
915
|
+
* Timestamp
|
|
916
|
+
* Format: date-time
|
|
917
|
+
*/
|
|
918
|
+
timestamp: string;
|
|
919
|
+
/** Accuracy */
|
|
920
|
+
accuracy?: number | null;
|
|
921
|
+
/** Battery */
|
|
922
|
+
battery?: number | null;
|
|
923
|
+
/** Speed Kmh */
|
|
924
|
+
speed_kmh?: number | null;
|
|
925
|
+
/** Heart Rate */
|
|
926
|
+
heart_rate?: number | null;
|
|
927
|
+
/** Created At */
|
|
928
|
+
created_at?: string | null;
|
|
929
|
+
};
|
|
930
|
+
/** ValidationError */
|
|
931
|
+
ValidationError: {
|
|
932
|
+
/** Location */
|
|
933
|
+
loc: (string | number)[];
|
|
934
|
+
/** Message */
|
|
935
|
+
msg: string;
|
|
936
|
+
/** Error Type */
|
|
937
|
+
type: string;
|
|
938
|
+
/** Input */
|
|
939
|
+
input?: unknown;
|
|
940
|
+
/** Context */
|
|
941
|
+
ctx?: Record<string, never>;
|
|
942
|
+
};
|
|
943
|
+
/**
|
|
944
|
+
* WithinReferenceResult
|
|
945
|
+
* @example {
|
|
946
|
+
* "points": [
|
|
947
|
+
* {
|
|
948
|
+
* "distance_meters": 0.4,
|
|
949
|
+
* "id": 35144,
|
|
950
|
+
* "latitude": 40.736202,
|
|
951
|
+
* "longitude": -74.039404,
|
|
952
|
+
* "source": "owntracks",
|
|
953
|
+
* "timestamp": "2026-02-02T10:30:53Z"
|
|
954
|
+
* }
|
|
955
|
+
* ],
|
|
956
|
+
* "radius_meters": 40,
|
|
957
|
+
* "reference_name": "home",
|
|
958
|
+
* "total_points": 2
|
|
959
|
+
* }
|
|
960
|
+
*/
|
|
961
|
+
WithinReferenceResult: {
|
|
962
|
+
/** Reference Name */
|
|
963
|
+
reference_name: string;
|
|
964
|
+
/** Radius Meters */
|
|
965
|
+
radius_meters: number;
|
|
966
|
+
/** Total Points */
|
|
967
|
+
total_points: number;
|
|
968
|
+
/** Points */
|
|
969
|
+
points: components["schemas"]["NearbyPoint"][];
|
|
970
|
+
};
|
|
971
|
+
};
|
|
972
|
+
responses: never;
|
|
973
|
+
parameters: never;
|
|
974
|
+
requestBodies: never;
|
|
975
|
+
headers: never;
|
|
976
|
+
pathItems: never;
|
|
977
|
+
};
|
|
978
|
+
export type $defs = Record<string, never>;
|
|
979
|
+
export interface operations {
|
|
980
|
+
health_health_get: {
|
|
981
|
+
parameters: {
|
|
982
|
+
query?: never;
|
|
983
|
+
header?: never;
|
|
984
|
+
path?: never;
|
|
985
|
+
cookie?: never;
|
|
986
|
+
};
|
|
987
|
+
requestBody?: never;
|
|
988
|
+
responses: {
|
|
989
|
+
/** @description Successful Response */
|
|
990
|
+
200: {
|
|
991
|
+
headers: {
|
|
992
|
+
[name: string]: unknown;
|
|
993
|
+
};
|
|
994
|
+
content: {
|
|
995
|
+
"application/json": {
|
|
996
|
+
[key: string]: unknown;
|
|
997
|
+
};
|
|
998
|
+
};
|
|
999
|
+
};
|
|
1000
|
+
};
|
|
1001
|
+
};
|
|
1002
|
+
ready_ready_get: {
|
|
1003
|
+
parameters: {
|
|
1004
|
+
query?: never;
|
|
1005
|
+
header?: never;
|
|
1006
|
+
path?: never;
|
|
1007
|
+
cookie?: never;
|
|
1008
|
+
};
|
|
1009
|
+
requestBody?: never;
|
|
1010
|
+
responses: {
|
|
1011
|
+
/** @description Successful Response */
|
|
1012
|
+
200: {
|
|
1013
|
+
headers: {
|
|
1014
|
+
[name: string]: unknown;
|
|
1015
|
+
};
|
|
1016
|
+
content: {
|
|
1017
|
+
"application/json": unknown;
|
|
1018
|
+
};
|
|
1019
|
+
};
|
|
1020
|
+
};
|
|
1021
|
+
};
|
|
1022
|
+
list_locations_api_v1_locations_get: {
|
|
1023
|
+
parameters: {
|
|
1024
|
+
query?: {
|
|
1025
|
+
/** @description Filter by device ID */
|
|
1026
|
+
device_id?: string | null;
|
|
1027
|
+
/** @description Filter from date (YYYY-MM-DD) */
|
|
1028
|
+
date_from?: string | null;
|
|
1029
|
+
/** @description Filter to date (YYYY-MM-DD) */
|
|
1030
|
+
date_to?: string | null;
|
|
1031
|
+
limit?: number;
|
|
1032
|
+
offset?: number;
|
|
1033
|
+
/** @description Sort column (id, device_id, timestamp, created_at, battery, accuracy) */
|
|
1034
|
+
sort?: string;
|
|
1035
|
+
order?: "asc" | "desc";
|
|
1036
|
+
};
|
|
1037
|
+
header?: never;
|
|
1038
|
+
path?: never;
|
|
1039
|
+
cookie?: never;
|
|
1040
|
+
};
|
|
1041
|
+
requestBody?: never;
|
|
1042
|
+
responses: {
|
|
1043
|
+
/** @description Successful Response */
|
|
1044
|
+
200: {
|
|
1045
|
+
headers: {
|
|
1046
|
+
[name: string]: unknown;
|
|
1047
|
+
};
|
|
1048
|
+
content: {
|
|
1049
|
+
"application/json": components["schemas"]["PaginatedResponse_Location_"];
|
|
1050
|
+
};
|
|
1051
|
+
};
|
|
1052
|
+
/** @description Validation Error */
|
|
1053
|
+
422: {
|
|
1054
|
+
headers: {
|
|
1055
|
+
[name: string]: unknown;
|
|
1056
|
+
};
|
|
1057
|
+
content: {
|
|
1058
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
1059
|
+
};
|
|
1060
|
+
};
|
|
1061
|
+
};
|
|
1062
|
+
};
|
|
1063
|
+
list_devices_api_v1_locations_devices_get: {
|
|
1064
|
+
parameters: {
|
|
1065
|
+
query?: never;
|
|
1066
|
+
header?: never;
|
|
1067
|
+
path?: never;
|
|
1068
|
+
cookie?: never;
|
|
1069
|
+
};
|
|
1070
|
+
requestBody?: never;
|
|
1071
|
+
responses: {
|
|
1072
|
+
/** @description Successful Response */
|
|
1073
|
+
200: {
|
|
1074
|
+
headers: {
|
|
1075
|
+
[name: string]: unknown;
|
|
1076
|
+
};
|
|
1077
|
+
content: {
|
|
1078
|
+
"application/json": components["schemas"]["DeviceInfo"][];
|
|
1079
|
+
};
|
|
1080
|
+
};
|
|
1081
|
+
};
|
|
1082
|
+
};
|
|
1083
|
+
location_count_api_v1_locations_count_get: {
|
|
1084
|
+
parameters: {
|
|
1085
|
+
query?: {
|
|
1086
|
+
/** @description Filter by date (YYYY-MM-DD) */
|
|
1087
|
+
date?: string | null;
|
|
1088
|
+
/** @description Filter by device ID */
|
|
1089
|
+
device_id?: string | null;
|
|
1090
|
+
};
|
|
1091
|
+
header?: never;
|
|
1092
|
+
path?: never;
|
|
1093
|
+
cookie?: never;
|
|
1094
|
+
};
|
|
1095
|
+
requestBody?: never;
|
|
1096
|
+
responses: {
|
|
1097
|
+
/** @description Successful Response */
|
|
1098
|
+
200: {
|
|
1099
|
+
headers: {
|
|
1100
|
+
[name: string]: unknown;
|
|
1101
|
+
};
|
|
1102
|
+
content: {
|
|
1103
|
+
"application/json": components["schemas"]["LocationCount"];
|
|
1104
|
+
};
|
|
1105
|
+
};
|
|
1106
|
+
/** @description Validation Error */
|
|
1107
|
+
422: {
|
|
1108
|
+
headers: {
|
|
1109
|
+
[name: string]: unknown;
|
|
1110
|
+
};
|
|
1111
|
+
content: {
|
|
1112
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
1113
|
+
};
|
|
1114
|
+
};
|
|
1115
|
+
};
|
|
1116
|
+
};
|
|
1117
|
+
get_location_api_v1_locations__location_id__get: {
|
|
1118
|
+
parameters: {
|
|
1119
|
+
query?: never;
|
|
1120
|
+
header?: never;
|
|
1121
|
+
path: {
|
|
1122
|
+
location_id: number;
|
|
1123
|
+
};
|
|
1124
|
+
cookie?: never;
|
|
1125
|
+
};
|
|
1126
|
+
requestBody?: never;
|
|
1127
|
+
responses: {
|
|
1128
|
+
/** @description Successful Response */
|
|
1129
|
+
200: {
|
|
1130
|
+
headers: {
|
|
1131
|
+
[name: string]: unknown;
|
|
1132
|
+
};
|
|
1133
|
+
content: {
|
|
1134
|
+
"application/json": components["schemas"]["LocationDetail"];
|
|
1135
|
+
};
|
|
1136
|
+
};
|
|
1137
|
+
/** @description Validation Error */
|
|
1138
|
+
422: {
|
|
1139
|
+
headers: {
|
|
1140
|
+
[name: string]: unknown;
|
|
1141
|
+
};
|
|
1142
|
+
content: {
|
|
1143
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
1144
|
+
};
|
|
1145
|
+
};
|
|
1146
|
+
};
|
|
1147
|
+
};
|
|
1148
|
+
list_activities_api_v1_garmin_activities_get: {
|
|
1149
|
+
parameters: {
|
|
1150
|
+
query?: {
|
|
1151
|
+
/** @description Filter by sport type */
|
|
1152
|
+
sport?: string | null;
|
|
1153
|
+
/** @description Filter from date (YYYY-MM-DD) */
|
|
1154
|
+
date_from?: string | null;
|
|
1155
|
+
/** @description Filter to date (YYYY-MM-DD) */
|
|
1156
|
+
date_to?: string | null;
|
|
1157
|
+
limit?: number;
|
|
1158
|
+
offset?: number;
|
|
1159
|
+
/** @description Sort column (start_time, distance_km, duration_seconds, sport, created_at) */
|
|
1160
|
+
sort?: string;
|
|
1161
|
+
order?: "asc" | "desc";
|
|
1162
|
+
};
|
|
1163
|
+
header?: never;
|
|
1164
|
+
path?: never;
|
|
1165
|
+
cookie?: never;
|
|
1166
|
+
};
|
|
1167
|
+
requestBody?: never;
|
|
1168
|
+
responses: {
|
|
1169
|
+
/** @description Successful Response */
|
|
1170
|
+
200: {
|
|
1171
|
+
headers: {
|
|
1172
|
+
[name: string]: unknown;
|
|
1173
|
+
};
|
|
1174
|
+
content: {
|
|
1175
|
+
"application/json": components["schemas"]["PaginatedResponse_GarminActivity_"];
|
|
1176
|
+
};
|
|
1177
|
+
};
|
|
1178
|
+
/** @description Validation Error */
|
|
1179
|
+
422: {
|
|
1180
|
+
headers: {
|
|
1181
|
+
[name: string]: unknown;
|
|
1182
|
+
};
|
|
1183
|
+
content: {
|
|
1184
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
1185
|
+
};
|
|
1186
|
+
};
|
|
1187
|
+
};
|
|
1188
|
+
};
|
|
1189
|
+
list_sports_api_v1_garmin_sports_get: {
|
|
1190
|
+
parameters: {
|
|
1191
|
+
query?: never;
|
|
1192
|
+
header?: never;
|
|
1193
|
+
path?: never;
|
|
1194
|
+
cookie?: never;
|
|
1195
|
+
};
|
|
1196
|
+
requestBody?: never;
|
|
1197
|
+
responses: {
|
|
1198
|
+
/** @description Successful Response */
|
|
1199
|
+
200: {
|
|
1200
|
+
headers: {
|
|
1201
|
+
[name: string]: unknown;
|
|
1202
|
+
};
|
|
1203
|
+
content: {
|
|
1204
|
+
"application/json": components["schemas"]["SportInfo"][];
|
|
1205
|
+
};
|
|
1206
|
+
};
|
|
1207
|
+
};
|
|
1208
|
+
};
|
|
1209
|
+
get_activity_api_v1_garmin_activities__activity_id__get: {
|
|
1210
|
+
parameters: {
|
|
1211
|
+
query?: never;
|
|
1212
|
+
header?: never;
|
|
1213
|
+
path: {
|
|
1214
|
+
/** @description Garmin activity ID */
|
|
1215
|
+
activity_id: string;
|
|
1216
|
+
};
|
|
1217
|
+
cookie?: never;
|
|
1218
|
+
};
|
|
1219
|
+
requestBody?: never;
|
|
1220
|
+
responses: {
|
|
1221
|
+
/** @description Successful Response */
|
|
1222
|
+
200: {
|
|
1223
|
+
headers: {
|
|
1224
|
+
[name: string]: unknown;
|
|
1225
|
+
};
|
|
1226
|
+
content: {
|
|
1227
|
+
"application/json": components["schemas"]["GarminActivity"];
|
|
1228
|
+
};
|
|
1229
|
+
};
|
|
1230
|
+
/** @description Activity not found */
|
|
1231
|
+
404: {
|
|
1232
|
+
headers: {
|
|
1233
|
+
[name: string]: unknown;
|
|
1234
|
+
};
|
|
1235
|
+
content?: never;
|
|
1236
|
+
};
|
|
1237
|
+
/** @description Validation Error */
|
|
1238
|
+
422: {
|
|
1239
|
+
headers: {
|
|
1240
|
+
[name: string]: unknown;
|
|
1241
|
+
};
|
|
1242
|
+
content: {
|
|
1243
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
1244
|
+
};
|
|
1245
|
+
};
|
|
1246
|
+
};
|
|
1247
|
+
};
|
|
1248
|
+
list_track_points_api_v1_garmin_activities__activity_id__tracks_get: {
|
|
1249
|
+
parameters: {
|
|
1250
|
+
query?: {
|
|
1251
|
+
limit?: number;
|
|
1252
|
+
offset?: number;
|
|
1253
|
+
/** @description Sort column (timestamp, altitude, speed_kmh, heart_rate, created_at) */
|
|
1254
|
+
sort?: string;
|
|
1255
|
+
order?: "asc" | "desc";
|
|
1256
|
+
};
|
|
1257
|
+
header?: never;
|
|
1258
|
+
path: {
|
|
1259
|
+
/** @description Garmin activity ID */
|
|
1260
|
+
activity_id: string;
|
|
1261
|
+
};
|
|
1262
|
+
cookie?: never;
|
|
1263
|
+
};
|
|
1264
|
+
requestBody?: never;
|
|
1265
|
+
responses: {
|
|
1266
|
+
/** @description Successful Response */
|
|
1267
|
+
200: {
|
|
1268
|
+
headers: {
|
|
1269
|
+
[name: string]: unknown;
|
|
1270
|
+
};
|
|
1271
|
+
content: {
|
|
1272
|
+
"application/json": components["schemas"]["PaginatedResponse_GarminTrackPoint_"];
|
|
1273
|
+
};
|
|
1274
|
+
};
|
|
1275
|
+
/** @description Activity not found */
|
|
1276
|
+
404: {
|
|
1277
|
+
headers: {
|
|
1278
|
+
[name: string]: unknown;
|
|
1279
|
+
};
|
|
1280
|
+
content?: never;
|
|
1281
|
+
};
|
|
1282
|
+
/** @description Validation Error */
|
|
1283
|
+
422: {
|
|
1284
|
+
headers: {
|
|
1285
|
+
[name: string]: unknown;
|
|
1286
|
+
};
|
|
1287
|
+
content: {
|
|
1288
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
1289
|
+
};
|
|
1290
|
+
};
|
|
1291
|
+
};
|
|
1292
|
+
};
|
|
1293
|
+
list_unified_gps_api_v1_gps_unified_get: {
|
|
1294
|
+
parameters: {
|
|
1295
|
+
query?: {
|
|
1296
|
+
/** @description Filter by source: owntracks or garmin */
|
|
1297
|
+
source?: string | null;
|
|
1298
|
+
/** @description Filter from date (YYYY-MM-DD) */
|
|
1299
|
+
date_from?: string | null;
|
|
1300
|
+
/** @description Filter to date (YYYY-MM-DD) */
|
|
1301
|
+
date_to?: string | null;
|
|
1302
|
+
limit?: number;
|
|
1303
|
+
offset?: number;
|
|
1304
|
+
order?: "asc" | "desc";
|
|
1305
|
+
};
|
|
1306
|
+
header?: never;
|
|
1307
|
+
path?: never;
|
|
1308
|
+
cookie?: never;
|
|
1309
|
+
};
|
|
1310
|
+
requestBody?: never;
|
|
1311
|
+
responses: {
|
|
1312
|
+
/** @description Successful Response */
|
|
1313
|
+
200: {
|
|
1314
|
+
headers: {
|
|
1315
|
+
[name: string]: unknown;
|
|
1316
|
+
};
|
|
1317
|
+
content: {
|
|
1318
|
+
"application/json": components["schemas"]["PaginatedResponse_UnifiedGpsPoint_"];
|
|
1319
|
+
};
|
|
1320
|
+
};
|
|
1321
|
+
/** @description Validation Error */
|
|
1322
|
+
422: {
|
|
1323
|
+
headers: {
|
|
1324
|
+
[name: string]: unknown;
|
|
1325
|
+
};
|
|
1326
|
+
content: {
|
|
1327
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
1328
|
+
};
|
|
1329
|
+
};
|
|
1330
|
+
};
|
|
1331
|
+
};
|
|
1332
|
+
daily_summary_api_v1_gps_daily_summary_get: {
|
|
1333
|
+
parameters: {
|
|
1334
|
+
query?: {
|
|
1335
|
+
/** @description Filter from date (YYYY-MM-DD) */
|
|
1336
|
+
date_from?: string | null;
|
|
1337
|
+
/** @description Filter to date (YYYY-MM-DD) */
|
|
1338
|
+
date_to?: string | null;
|
|
1339
|
+
limit?: number;
|
|
1340
|
+
};
|
|
1341
|
+
header?: never;
|
|
1342
|
+
path?: never;
|
|
1343
|
+
cookie?: never;
|
|
1344
|
+
};
|
|
1345
|
+
requestBody?: never;
|
|
1346
|
+
responses: {
|
|
1347
|
+
/** @description Successful Response */
|
|
1348
|
+
200: {
|
|
1349
|
+
headers: {
|
|
1350
|
+
[name: string]: unknown;
|
|
1351
|
+
};
|
|
1352
|
+
content: {
|
|
1353
|
+
"application/json": components["schemas"]["DailyActivitySummary"][];
|
|
1354
|
+
};
|
|
1355
|
+
};
|
|
1356
|
+
/** @description Validation Error */
|
|
1357
|
+
422: {
|
|
1358
|
+
headers: {
|
|
1359
|
+
[name: string]: unknown;
|
|
1360
|
+
};
|
|
1361
|
+
content: {
|
|
1362
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
1363
|
+
};
|
|
1364
|
+
};
|
|
1365
|
+
};
|
|
1366
|
+
};
|
|
1367
|
+
list_reference_locations_api_v1_reference_locations_get: {
|
|
1368
|
+
parameters: {
|
|
1369
|
+
query?: never;
|
|
1370
|
+
header?: never;
|
|
1371
|
+
path?: never;
|
|
1372
|
+
cookie?: never;
|
|
1373
|
+
};
|
|
1374
|
+
requestBody?: never;
|
|
1375
|
+
responses: {
|
|
1376
|
+
/** @description Successful Response */
|
|
1377
|
+
200: {
|
|
1378
|
+
headers: {
|
|
1379
|
+
[name: string]: unknown;
|
|
1380
|
+
};
|
|
1381
|
+
content: {
|
|
1382
|
+
"application/json": components["schemas"]["ReferenceLocation"][];
|
|
1383
|
+
};
|
|
1384
|
+
};
|
|
1385
|
+
};
|
|
1386
|
+
};
|
|
1387
|
+
create_reference_location_api_v1_reference_locations_post: {
|
|
1388
|
+
parameters: {
|
|
1389
|
+
query?: never;
|
|
1390
|
+
header?: never;
|
|
1391
|
+
path?: never;
|
|
1392
|
+
cookie?: never;
|
|
1393
|
+
};
|
|
1394
|
+
requestBody: {
|
|
1395
|
+
content: {
|
|
1396
|
+
"application/json": components["schemas"]["ReferenceLocationCreate"];
|
|
1397
|
+
};
|
|
1398
|
+
};
|
|
1399
|
+
responses: {
|
|
1400
|
+
/** @description Successful Response */
|
|
1401
|
+
201: {
|
|
1402
|
+
headers: {
|
|
1403
|
+
[name: string]: unknown;
|
|
1404
|
+
};
|
|
1405
|
+
content: {
|
|
1406
|
+
"application/json": components["schemas"]["ReferenceLocation"];
|
|
1407
|
+
};
|
|
1408
|
+
};
|
|
1409
|
+
/** @description Validation Error */
|
|
1410
|
+
422: {
|
|
1411
|
+
headers: {
|
|
1412
|
+
[name: string]: unknown;
|
|
1413
|
+
};
|
|
1414
|
+
content: {
|
|
1415
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
1416
|
+
};
|
|
1417
|
+
};
|
|
1418
|
+
};
|
|
1419
|
+
};
|
|
1420
|
+
get_reference_location_api_v1_reference_locations__location_id__get: {
|
|
1421
|
+
parameters: {
|
|
1422
|
+
query?: never;
|
|
1423
|
+
header?: never;
|
|
1424
|
+
path: {
|
|
1425
|
+
location_id: number;
|
|
1426
|
+
};
|
|
1427
|
+
cookie?: never;
|
|
1428
|
+
};
|
|
1429
|
+
requestBody?: never;
|
|
1430
|
+
responses: {
|
|
1431
|
+
/** @description Successful Response */
|
|
1432
|
+
200: {
|
|
1433
|
+
headers: {
|
|
1434
|
+
[name: string]: unknown;
|
|
1435
|
+
};
|
|
1436
|
+
content: {
|
|
1437
|
+
"application/json": components["schemas"]["ReferenceLocation"];
|
|
1438
|
+
};
|
|
1439
|
+
};
|
|
1440
|
+
/** @description Validation Error */
|
|
1441
|
+
422: {
|
|
1442
|
+
headers: {
|
|
1443
|
+
[name: string]: unknown;
|
|
1444
|
+
};
|
|
1445
|
+
content: {
|
|
1446
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
1447
|
+
};
|
|
1448
|
+
};
|
|
1449
|
+
};
|
|
1450
|
+
};
|
|
1451
|
+
update_reference_location_api_v1_reference_locations__location_id__put: {
|
|
1452
|
+
parameters: {
|
|
1453
|
+
query?: never;
|
|
1454
|
+
header?: never;
|
|
1455
|
+
path: {
|
|
1456
|
+
location_id: number;
|
|
1457
|
+
};
|
|
1458
|
+
cookie?: never;
|
|
1459
|
+
};
|
|
1460
|
+
requestBody: {
|
|
1461
|
+
content: {
|
|
1462
|
+
"application/json": components["schemas"]["ReferenceLocationUpdate"];
|
|
1463
|
+
};
|
|
1464
|
+
};
|
|
1465
|
+
responses: {
|
|
1466
|
+
/** @description Successful Response */
|
|
1467
|
+
200: {
|
|
1468
|
+
headers: {
|
|
1469
|
+
[name: string]: unknown;
|
|
1470
|
+
};
|
|
1471
|
+
content: {
|
|
1472
|
+
"application/json": components["schemas"]["ReferenceLocation"];
|
|
1473
|
+
};
|
|
1474
|
+
};
|
|
1475
|
+
/** @description Validation Error */
|
|
1476
|
+
422: {
|
|
1477
|
+
headers: {
|
|
1478
|
+
[name: string]: unknown;
|
|
1479
|
+
};
|
|
1480
|
+
content: {
|
|
1481
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
1482
|
+
};
|
|
1483
|
+
};
|
|
1484
|
+
};
|
|
1485
|
+
};
|
|
1486
|
+
delete_reference_location_api_v1_reference_locations__location_id__delete: {
|
|
1487
|
+
parameters: {
|
|
1488
|
+
query?: never;
|
|
1489
|
+
header?: never;
|
|
1490
|
+
path: {
|
|
1491
|
+
location_id: number;
|
|
1492
|
+
};
|
|
1493
|
+
cookie?: never;
|
|
1494
|
+
};
|
|
1495
|
+
requestBody?: never;
|
|
1496
|
+
responses: {
|
|
1497
|
+
/** @description Successful Response */
|
|
1498
|
+
204: {
|
|
1499
|
+
headers: {
|
|
1500
|
+
[name: string]: unknown;
|
|
1501
|
+
};
|
|
1502
|
+
content?: never;
|
|
1503
|
+
};
|
|
1504
|
+
/** @description Validation Error */
|
|
1505
|
+
422: {
|
|
1506
|
+
headers: {
|
|
1507
|
+
[name: string]: unknown;
|
|
1508
|
+
};
|
|
1509
|
+
content: {
|
|
1510
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
1511
|
+
};
|
|
1512
|
+
};
|
|
1513
|
+
};
|
|
1514
|
+
};
|
|
1515
|
+
find_nearby_api_v1_spatial_nearby_get: {
|
|
1516
|
+
parameters: {
|
|
1517
|
+
query: {
|
|
1518
|
+
/** @description Latitude of center point */
|
|
1519
|
+
lat: number;
|
|
1520
|
+
/** @description Longitude of center point */
|
|
1521
|
+
lon: number;
|
|
1522
|
+
/** @description Search radius in meters */
|
|
1523
|
+
radius_meters?: number;
|
|
1524
|
+
/** @description Filter by source: owntracks or garmin */
|
|
1525
|
+
source?: string | null;
|
|
1526
|
+
limit?: number;
|
|
1527
|
+
};
|
|
1528
|
+
header?: never;
|
|
1529
|
+
path?: never;
|
|
1530
|
+
cookie?: never;
|
|
1531
|
+
};
|
|
1532
|
+
requestBody?: never;
|
|
1533
|
+
responses: {
|
|
1534
|
+
/** @description Successful Response */
|
|
1535
|
+
200: {
|
|
1536
|
+
headers: {
|
|
1537
|
+
[name: string]: unknown;
|
|
1538
|
+
};
|
|
1539
|
+
content: {
|
|
1540
|
+
"application/json": components["schemas"]["NearbyPoint"][];
|
|
1541
|
+
};
|
|
1542
|
+
};
|
|
1543
|
+
/** @description Validation Error */
|
|
1544
|
+
422: {
|
|
1545
|
+
headers: {
|
|
1546
|
+
[name: string]: unknown;
|
|
1547
|
+
};
|
|
1548
|
+
content: {
|
|
1549
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
1550
|
+
};
|
|
1551
|
+
};
|
|
1552
|
+
};
|
|
1553
|
+
};
|
|
1554
|
+
calculate_distance_api_v1_spatial_distance_get: {
|
|
1555
|
+
parameters: {
|
|
1556
|
+
query: {
|
|
1557
|
+
/** @description From latitude (e.g. NYC) */
|
|
1558
|
+
from_lat: number;
|
|
1559
|
+
/** @description From longitude (e.g. NYC) */
|
|
1560
|
+
from_lon: number;
|
|
1561
|
+
/** @description To latitude (e.g. Times Square) */
|
|
1562
|
+
to_lat: number;
|
|
1563
|
+
/** @description To longitude (e.g. Times Square) */
|
|
1564
|
+
to_lon: number;
|
|
1565
|
+
};
|
|
1566
|
+
header?: never;
|
|
1567
|
+
path?: never;
|
|
1568
|
+
cookie?: never;
|
|
1569
|
+
};
|
|
1570
|
+
requestBody?: never;
|
|
1571
|
+
responses: {
|
|
1572
|
+
/** @description Successful Response */
|
|
1573
|
+
200: {
|
|
1574
|
+
headers: {
|
|
1575
|
+
[name: string]: unknown;
|
|
1576
|
+
};
|
|
1577
|
+
content: {
|
|
1578
|
+
"application/json": components["schemas"]["DistanceResult"];
|
|
1579
|
+
};
|
|
1580
|
+
};
|
|
1581
|
+
/** @description Validation Error */
|
|
1582
|
+
422: {
|
|
1583
|
+
headers: {
|
|
1584
|
+
[name: string]: unknown;
|
|
1585
|
+
};
|
|
1586
|
+
content: {
|
|
1587
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
1588
|
+
};
|
|
1589
|
+
};
|
|
1590
|
+
};
|
|
1591
|
+
};
|
|
1592
|
+
within_reference_api_v1_spatial_within_reference__name__get: {
|
|
1593
|
+
parameters: {
|
|
1594
|
+
query?: {
|
|
1595
|
+
/** @description Filter by source: owntracks or garmin */
|
|
1596
|
+
source?: string | null;
|
|
1597
|
+
limit?: number;
|
|
1598
|
+
};
|
|
1599
|
+
header?: never;
|
|
1600
|
+
path: {
|
|
1601
|
+
/** @description Reference location name */
|
|
1602
|
+
name: string;
|
|
1603
|
+
};
|
|
1604
|
+
cookie?: never;
|
|
1605
|
+
};
|
|
1606
|
+
requestBody?: never;
|
|
1607
|
+
responses: {
|
|
1608
|
+
/** @description Successful Response */
|
|
1609
|
+
200: {
|
|
1610
|
+
headers: {
|
|
1611
|
+
[name: string]: unknown;
|
|
1612
|
+
};
|
|
1613
|
+
content: {
|
|
1614
|
+
"application/json": components["schemas"]["WithinReferenceResult"];
|
|
1615
|
+
};
|
|
1616
|
+
};
|
|
1617
|
+
/** @description Reference location not found */
|
|
1618
|
+
404: {
|
|
1619
|
+
headers: {
|
|
1620
|
+
[name: string]: unknown;
|
|
1621
|
+
};
|
|
1622
|
+
content?: never;
|
|
1623
|
+
};
|
|
1624
|
+
/** @description Validation Error */
|
|
1625
|
+
422: {
|
|
1626
|
+
headers: {
|
|
1627
|
+
[name: string]: unknown;
|
|
1628
|
+
};
|
|
1629
|
+
content: {
|
|
1630
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
1631
|
+
};
|
|
1632
|
+
};
|
|
1633
|
+
};
|
|
1634
|
+
};
|
|
1635
|
+
}
|