From 84cecf78414c682779b872bc605d0bbd9b2e3bdb Mon Sep 17 00:00:00 2001 From: Nicolas Date: Thu, 22 Mar 2018 22:42:45 +0100 Subject: [PATCH] feat(call-log): add operator 'like' and array of values --- src/@ionic-native/plugins/call-log/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/@ionic-native/plugins/call-log/index.ts b/src/@ionic-native/plugins/call-log/index.ts index fd7906286..43608abb5 100644 --- a/src/@ionic-native/plugins/call-log/index.ts +++ b/src/@ionic-native/plugins/call-log/index.ts @@ -3,8 +3,8 @@ import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core'; export interface CallLogObject { name: string; - value: string; - operator: '==' | '!=' | '>' | '>=' | '<' | '<='; + value: string|Array; + operator: '==' | '!=' | '>' | '>=' | '<' | '<=' | 'like'; } /**