capacitor-radar
Advanced tools
Comparing version 3.8.0 to 3.9.0
@@ -22,2 +22,5 @@ import type { PluginListenerHandle } from '@capacitor/core'; | ||
}) => void): Promise<PluginListenerHandle> & PluginListenerHandle; | ||
addListener(eventName: 'token', listenerFunc: (result: { | ||
token: string; | ||
}) => void): Promise<PluginListenerHandle> & PluginListenerHandle; | ||
initialize(options: { | ||
@@ -55,4 +58,13 @@ publishableKey: string; | ||
}): Promise<RadarTrackCallback>; | ||
trackVerified(): Promise<RadarTrackCallback>; | ||
trackVerifiedToken(): Promise<RadarTrackTokenCallback>; | ||
trackVerified(options?: { | ||
beacons?: boolean; | ||
}): Promise<RadarTrackCallback>; | ||
trackVerifiedToken(options?: { | ||
beacons?: boolean; | ||
}): Promise<RadarTrackTokenCallback>; | ||
startTrackingVerified(options: { | ||
token?: boolean; | ||
interval: number; | ||
beacons: boolean; | ||
}): void; | ||
startTrackingEfficient(): void; | ||
@@ -121,2 +133,3 @@ startTrackingResponsive(): void; | ||
expandUnits?: boolean; | ||
mailable?: boolean; | ||
}): Promise<RadarGeocodeCallback>; | ||
@@ -123,0 +136,0 @@ validateAddress(options: { |
@@ -41,3 +41,13 @@ import { WebPlugin } from '@capacitor/core'; | ||
}): Promise<RadarTrackCallback>; | ||
trackVerified(): void; | ||
trackVerified(options?: { | ||
beacons?: boolean; | ||
}): void; | ||
trackVerifiedToken(options?: { | ||
beacons?: boolean; | ||
}): void; | ||
startTrackingVerified(options: { | ||
token?: boolean; | ||
interval: number; | ||
beacons: boolean; | ||
}): void; | ||
startTrackingEfficient(): void; | ||
@@ -44,0 +54,0 @@ startTrackingResponsive(): void; |
@@ -94,5 +94,11 @@ // @ts-nocheck | ||
} | ||
trackVerified() { | ||
trackVerified(options) { | ||
// not implemented | ||
} | ||
trackVerifiedToken(options) { | ||
// not implemented | ||
} | ||
startTrackingVerified(options) { | ||
// not implemented | ||
} | ||
startTrackingEfficient() { | ||
@@ -99,0 +105,0 @@ // not implemented |
{ | ||
"name": "capacitor-radar", | ||
"version": "3.8.0", | ||
"version": "3.9.0", | ||
"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
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
140663
965