capacitor-radar
Advanced tools
Comparing version 3.1.2 to 3.1.3
@@ -177,2 +177,3 @@ import type { PluginListenerHandle } from '@capacitor/core'; | ||
metadata?: object; | ||
trip?: RadarTrip; | ||
geofences?: RadarGeofence[]; | ||
@@ -186,2 +187,12 @@ insights?: RadarInsights; | ||
} | ||
export interface RadarTrip { | ||
_id: string; | ||
externalId: string; | ||
metadata?: object; | ||
destinationGeofenceTag?: string; | ||
destinationGeofenceExternalId?: string; | ||
mode?: string; | ||
eta?: RadarTripEta; | ||
status: string; | ||
} | ||
export interface RadarContext { | ||
@@ -301,1 +312,5 @@ geofences?: RadarGeofence[]; | ||
} | ||
export interface RadarTripEta { | ||
distance?: number; | ||
duration?: number; | ||
} |
{ | ||
"name": "capacitor-radar", | ||
"version": "3.1.2", | ||
"version": "3.1.3", | ||
"description": "Capacitor plugin for Radar, the leading geofencing and location tracking platform", | ||
@@ -5,0 +5,0 @@ "main": "dist/esm/index.js", |
Sorry, the diff of this file is not supported yet
95323
1337