capacitor-radar
Advanced tools
Comparing version 3.9.0 to 3.9.1
@@ -158,2 +158,9 @@ import type { PluginListenerHandle } from '@capacitor/core'; | ||
}): Promise<RadarLogConversionCallback>; | ||
logTermination(): void; | ||
logBackgrounding(): void; | ||
logResigningActive(): void; | ||
setNotificationOptions(options: RadarNotificationOptions): void; | ||
isUsingRemoteTrackingOptions(): Promise<object>; | ||
getHost(): Promise<object>; | ||
getPublishableKey(): Promise<object>; | ||
} | ||
@@ -297,2 +304,5 @@ export interface RadarLocationCallback { | ||
metadata?: object; | ||
replayed: boolean; | ||
createdAt: string; | ||
actualCreatedAt: string; | ||
} | ||
@@ -433,2 +443,10 @@ export declare enum RadarEventConfidence { | ||
} | ||
export interface RadarNotificationOptions { | ||
iconString?: string; | ||
iconColor?: string; | ||
foregroundServiceIconString?: string; | ||
foregroundServiceIconColor?: string; | ||
eventIconString?: string; | ||
eventIconColor?: string; | ||
} | ||
export declare type RadarRouteMode = 'foot' | 'bike' | 'car'; | ||
@@ -442,2 +460,4 @@ export interface RadarTrackingStatus { | ||
icon?: number; | ||
iconColor?: string; | ||
iconString?: string; | ||
updatesOnly?: boolean; | ||
@@ -444,0 +464,0 @@ activity?: string; |
import { WebPlugin } from '@capacitor/core'; | ||
import type { RadarLocationPermissionsCallback, RadarLocationCallback, RadarTrackCallback, RadarContextCallback, RadarSearchPlacesCallback, RadarSearchGeofencesCallback, RadarGeocodeCallback, RadarIPGeocodeCallback, RadarRouteCallback, RadarLogConversionCallback, RadarRouteMatrix, RadarPlugin, RadarTrackingOptions, RadarAddress, RadarValidateAddressCallback } from './definitions'; | ||
import type { RadarLocationPermissionsCallback, RadarLocationCallback, RadarTrackCallback, RadarContextCallback, RadarSearchPlacesCallback, RadarSearchGeofencesCallback, RadarGeocodeCallback, RadarIPGeocodeCallback, RadarRouteCallback, RadarLogConversionCallback, RadarRouteMatrix, RadarPlugin, RadarTrackingOptions, RadarAddress, RadarValidateAddressCallback, RadarNotificationOptions } from './definitions'; | ||
export declare class RadarPluginWeb extends WebPlugin implements RadarPlugin { | ||
@@ -145,4 +145,8 @@ initialize(options: { | ||
}): Promise<RadarRouteMatrix>; | ||
logTermination(): void; | ||
logBackgrounding(): void; | ||
logResigningActive(): void; | ||
setNotificationOptions(options: RadarNotificationOptions): void; | ||
} | ||
declare const radarPluginWeb: RadarPluginWeb; | ||
export { radarPluginWeb }; |
@@ -336,2 +336,14 @@ // @ts-nocheck | ||
} | ||
logTermination() { | ||
// not implemented | ||
} | ||
logBackgrounding() { | ||
// not implemented | ||
} | ||
logResigningActive() { | ||
// not implemented | ||
} | ||
setNotificationOptions(options) { | ||
// not implemented | ||
} | ||
} | ||
@@ -338,0 +350,0 @@ const radarPluginWeb = new RadarPluginWeb(); |
{ | ||
"name": "capacitor-radar", | ||
"version": "3.9.0", | ||
"version": "3.9.1", | ||
"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
145683
1001