From 26394865fc53b81a108ff7febaaf9e91b76704a9 Mon Sep 17 00:00:00 2001 From: Ibby Date: Wed, 1 Mar 2017 20:05:39 -0500 Subject: [PATCH] fix(contacts): allow passing asterisk as contact field type closes 1093 --- src/plugins/contacts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/contacts.ts b/src/plugins/contacts.ts index 52c7d88c7..30c4a91db 100644 --- a/src/plugins/contacts.ts +++ b/src/plugins/contacts.ts @@ -3,7 +3,7 @@ import { CordovaInstance, InstanceProperty, Plugin, getPromise } from './plugin' declare var window: any, navigator: any; -export type ContactFieldType = 'addresses' | 'birthday' | 'categories' | 'country' | 'department' | 'displayName' | 'emails' | 'familyName' | 'formatted' | 'givenName' | 'honorificPrefix' | 'honorificSuffix' | 'id' | 'ims' | 'locality' | 'middleName' | 'name' | 'nickname' | 'note' | 'organizations' | 'phoneNumbers' | 'photos' | 'postalCode' | 'region' | 'streetAddress' | 'title' | 'urls'; +export type ContactFieldType = '*' | 'addresses' | 'birthday' | 'categories' | 'country' | 'department' | 'displayName' | 'emails' | 'familyName' | 'formatted' | 'givenName' | 'honorificPrefix' | 'honorificSuffix' | 'id' | 'ims' | 'locality' | 'middleName' | 'name' | 'nickname' | 'note' | 'organizations' | 'phoneNumbers' | 'photos' | 'postalCode' | 'region' | 'streetAddress' | 'title' | 'urls'; /** * @private