@nadavhalfon/capacitor-native-contacts
Advanced tools
Comparing version 0.0.6 to 0.0.7
@@ -7,3 +7,5 @@ export interface CapacitorContactsPlugin { | ||
}>; | ||
open(): Promise<Contact[]>; | ||
open(): Promise<{ | ||
value: Contact | null; | ||
}>; | ||
} | ||
@@ -10,0 +12,0 @@ export interface Contact { |
@@ -9,3 +9,5 @@ import { WebPlugin } from '@capacitor/core'; | ||
}>; | ||
open(): Promise<Contact[]>; | ||
open(): Promise<{ | ||
value: Contact | null; | ||
}>; | ||
} |
@@ -9,5 +9,5 @@ import { WebPlugin } from '@capacitor/core'; | ||
console.log('Capacitor contacts plugin not supported in web'); | ||
return []; | ||
return { value: null }; | ||
} | ||
} | ||
//# sourceMappingURL=web.js.map |
@@ -20,3 +20,3 @@ 'use strict'; | ||
console.log('Capacitor contacts plugin not supported in web'); | ||
return []; | ||
return { value: null }; | ||
} | ||
@@ -23,0 +23,0 @@ } |
@@ -17,3 +17,3 @@ var capacitorCapacitorContacts = (function (exports, core) { | ||
console.log('Capacitor contacts plugin not supported in web'); | ||
return []; | ||
return { value: null }; | ||
} | ||
@@ -20,0 +20,0 @@ } |
{ | ||
"name": "@nadavhalfon/capacitor-native-contacts", | ||
"version": "0.0.6", | ||
"version": "0.0.7", | ||
"description": "Capacitor plugin for picking contact from native contacts list", | ||
@@ -5,0 +5,0 @@ "main": "dist/plugin.cjs.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
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
38245
227