@stuartshay/otel-data-types 1.0.199 → 1.0.205
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 +4 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2248,6 +2248,10 @@ export interface operations {
|
|
|
2248
2248
|
offset?: number;
|
|
2249
2249
|
/** @description Sort direction: asc (oldest first) or desc (newest first) */
|
|
2250
2250
|
order?: "asc" | "desc";
|
|
2251
|
+
/** @description Exclude stationary points where speed_kmh = 0 */
|
|
2252
|
+
exclude_stationary?: boolean;
|
|
2253
|
+
/** @description Remove points with duplicate coordinates (rounded to ~11m precision) */
|
|
2254
|
+
deduplicate?: boolean;
|
|
2251
2255
|
};
|
|
2252
2256
|
header?: never;
|
|
2253
2257
|
path?: never;
|