ratnakar24
890129bfda
fix(ms-adal): Update createAuthenticationContext ( #2705 )
...
* Update createAuthenticationContext
Update createAuthenticationContext to include validateAuthority flag since it is throwing Error: Fail to valid authority with errors: [50049].
Without the flag it is throwing Error: Fail to valid authority with errors: [50049].
* Update index.ts
2018-09-15 10:39:41 +02:00
Tyler Hall
6a9a871758
docs(onesignal): update incorrect path to hook file ( #2715 )
2018-09-15 10:39:14 +02:00
Todd Vrba
ac467c50ac
feat(mixpanel): Update/add functions ( #2697 )
...
* Update mixpanel typings for Ionic native.
* Update index.ts
2018-09-15 10:37:52 +02:00
iAmMrHands
267149b16f
feat(local-notifications): Added local additional local notification action fields ( #2713 )
2018-09-15 10:37:24 +02:00
somq
7047920a2a
fix(bluetooth-le): Various methods fixes ( #2707 )
...
* feat(bluetooth-le): implemented all available methods and refactored existing ones
* fix(bluetooth-le): Removed @memberof jsdoc annotations to avoid ci check failure
* fix(bluetooth-le): Fixed multiple jsdocs typos/misformats preventing CI to pass checks while generating readmes
* fix(bluetooth-le): Removed package-lock.json
* Update index.ts
* fix(bluetooth-le): Fixed stringToBytes method, now properly takes a string as arg and return an Uint8Array
* fix(bluetooth-le): getAdapterInfo now returns an Observable for easier tracking of adapter states
* fix(bluetooth-le): Fixed missing cordova param (observable: true) in initializePeripheral method, fixed getAdapterInfo method, now return an adapterInfo object
* chore(bluetooth-le): Removed @description markup to allow a proper doc auto-format
* fix(bluetooth-le): Reverted getAdapterInfo method to a Promise return
2018-09-15 10:37:03 +02:00
Daniel Kasper
d82e675442
fix(in-app-browser): fix mandatory options ( #2684 )
...
fix(in-app-browser): fix mandatory options
2018-08-31 19:05:33 +02:00
rvdleun
03e4f0e439
feat(push): Added voip property to IOSPushOptions ( #2681 )
...
* feat(push): Added missing voip property to IOSPushOptions
* Update index.ts
2018-08-31 14:23:40 +02:00
Pandiarajan Nagarajan
a73146648f
feat(aes256): Added new utility methods to generate secure key and secure IV ( #2675 )
2018-08-31 14:21:30 +02:00
Daniel Kasper
d90724ef70
feat(in-app-browser): Add missing InAppBrowserOptions-properties ( #2669 )
2018-08-31 14:21:19 +02:00
Brad Mallow
be0dc3dac4
fix(open-native-settings): allow supported input ( #2666 )
...
* allow supported input
* Update index.ts
2018-08-31 14:21:07 +02:00
somq
591ee87e05
feat(bluetooth-le): add bluetooth-le plugin ( #2651 )
...
* feat(bluetooth-le): implemented all available methods and refactored existing ones
* fix(bluetooth-le): Removed @memberof jsdoc annotations to avoid ci check failure
* fix(bluetooth-le): Fixed multiple jsdocs typos/misformats preventing CI to pass checks while generating readmes
* fix(bluetooth-le): Removed package-lock.json
* Update index.ts
2018-08-25 12:01:05 +02:00
Daniel
8db1dbef71
feat(http): add setSSLCertMode function
2018-08-21 20:39:21 +02:00
Daniel
ea6746d134
chore(build): refactor
2018-08-16 22:23:03 +02:00
Ashwin Dinesh
ca9a702808
feat(webengage): add optional config with initialization ( #2637 )
...
* feat(webengage): add optional config with initialization
* Update index.ts
2018-08-16 22:01:54 +02:00
Daniel Sogl
3f415f9bef
fix(photo-library): interface missing includeVideos
...
Co-authored-by: @devdaddy
closes : #2624
2018-08-16 21:58:30 +02:00
Luis Enrique Perez Alvarez
0c6d1eabe2
docs(onesignal): fix typo
...
OneSignla -> OneSignal
2018-08-16 21:56:11 +02:00
Niklas Merz
61fecf511b
docs(firebase-dynamic-links): Change example ( #2646 )
...
* docs(firebase-dynamic-links): Change example
* Update index.ts
2018-08-16 21:55:59 +02:00
Daniel Ehrhardt
2ac52822b8
fix(extended-device-information): Fixed Memory Display Bug ( #2641 )
...
* Fixed Memory Display Bug with ExtendedDeviceInformation Plugin
* Update index.ts
* Update index.ts
2018-08-16 21:55:51 +02:00
rupendraa
229b62c10b
feat(local-notifications): add new foreground property ( #2633 )
...
* Update index.ts
* Update index.ts
2018-08-16 21:55:17 +02:00
Gordeev Artem
9b4fd02fa5
feat(fabric): add fabric plugin ( #2618 )
...
* feat(fabric): add fabric plugin
* Update index.ts
2018-08-16 21:54:39 +02:00
Marat Dyatko
d10777a33b
fix(network): bind listener to document instead of window ( #2622 )
...
We noticed that in some cases network state listeners are stopped triggering, but `navigator.onLine` still reflects the state correctly. I used the following code to debug and found out an issue with `window` and `document` difference:
```js
window.addEventListener("online", ()=>console.warn('WINDOW ONLINE'), false); // won't be triggered
window.addEventListener("online", ()=>console.warn('WINDOW ONLINE'), false); // won't be triggered
document.addEventListener("online", ()=>console.warn('DOCUMENT ONLINE'), false); // triggered
document.addEventListener("online", ()=>console.warn('DOCUMENT ONLINE'), false); // triggered
```
Also, according to plugin documentation, listeners should be bound to `document`: https://github.com/apache/cordova-plugin-network-information#offline
2018-08-01 04:41:51 -04:00
Daniel
cedd6df423
Merge remote-tracking branch 'origin/master'
2018-07-29 09:16:11 +02:00
Daniel
4b14ce2eec
refactor(http): change return type to any
2018-07-29 09:16:00 +02:00
pwilkniss
27d380ef4b
feat(clevertap): add CleverTap plugin ( #2609 )
...
* feat(clevertap): add CleverTap plugin
* style(clevertap): cleanup stray lint error
* refactor
2018-07-29 09:13:37 +02:00
Ashwin Dinesh
bd5bd7ea9d
feat(webengage): add webengage plugin ( #2604 )
...
* feat(webengage): add webengage plugin
* refactor
2018-07-29 09:11:05 +02:00
Jan Piotrowski
c6713862c5
refactor: Improve Ionic Native warnings ( #2611 )
...
- Explicitly spell out that this is coming from "Ionic Native", instead of just "Native"
- Improve sentence that explains 2 most common reasons for missing Cordova
2018-07-29 09:10:48 +02:00
Daniel
3b32e19bf1
feat(facebook): add getDeferredApplink function
...
closes : #2510
2018-07-29 09:10:17 +02:00
Daniel
4092831754
fix(http): add correct return types for downloadFile and uploadFile
...
closes : #2615
2018-07-29 08:57:16 +02:00
Daniel Sogl
c2fe5f8336
docs(contacts): mark as deprecated
2018-07-27 21:39:58 +02:00
Gustavo Maximiliano Cortez
79cb478c26
fix(user-agent): Plugin not installed ( #2607 )
...
fix(user-agent): Plugin not installed
2018-07-24 16:59:19 +02:00
Dominik Geng
b635ba99ea
fix(nfs): Optional arguments for records like textRecord ( #2605 )
...
fix(nfs): Optional arguments for records like textRecord
2018-07-24 16:59:02 +02:00
Etienne BLANC-COQUAND
e50ef18e10
docs(network-interface): update example ( #2602 )
...
Don't need {
2018-07-18 21:50:30 +02:00
Moshe
b581a5b2b6
feat(ccm): replace plugin source ( #2601 )
2018-07-18 21:50:16 +02:00
jing-zhou
e640983340
feat(alipay): replace plugin ( #2591 )
...
BREAKING CHANGE: Replaced plugin with maintained Cordova plugin
2018-07-18 21:49:32 +02:00
Sebastian Baar
a6c8045593
feat(classkit): add ClassKit plugin ( #2590 )
...
* add classkit plugin
* refactor
2018-07-18 21:48:07 +02:00
Carsten Schindler
ecc698ee7a
feat(abbyy-rtr): add ABBYY Real-Time Recognition plugin ( #2580 )
...
* feat(abbyy-rtr): add ABBYY Real-Time Recognition plugin
* refactor(abbyy-rtr) add CordovaCheck
2018-07-18 21:47:44 +02:00
Gustav Bylund
565c766813
fix(sqlite): mark optional arguments for executeSql ( #2592 )
2018-07-13 17:06:51 +02:00
jasvindersingh-evon
1684202629
docs(document-picker): fix example ( #2593 )
2018-07-13 17:06:37 +02:00
Don Coleman
d95a359719
fix(ble): change signature for autoConnect ( #2594 )
...
* fix(ble): change signature for autoConnect (#2573 )
* fix(ble): update usage for autoConnect (#2573 )
2018-07-13 17:06:17 +02:00
Shubham Pandey
006ba4425f
docs(linkedin): fix example ( #2588 )
...
* added missing `)` in login code
2018-07-08 18:43:54 +02:00
Judson Neer
4f415892b1
feat(network-interface): match latest plugin release ( #2587 )
2018-07-08 18:43:44 +02:00
Matt
713efd7206
docs(sqlite): Add interface for transaction callback function argument ( #2586 )
...
The transaction callback function argument is currently typed as `any`, however this isn't very helpful so I have added a base interface which contains only the `executeSql` function. This function is all that is available on the object returned by WebSQL, but is also available on the full SQLite implementation.
2018-07-08 18:43:31 +02:00
Sebastián Ramírez
3f9311090d
docs(app-version): explain results ( #2582 )
...
* fix(app-version): fix getVersionCode to return number
as is in the actual implementation. Also update and clarify the method docs
* fix(app-version): fix getVersionCode for compatibility
with Android and iOS at the same time
2018-07-04 13:43:46 +02:00
Cosmic Web Services
956e644fa4
fix(health-kit): add missing checkAuthStatus param ( #2544 )
...
* Fix checkAuthStatus
* Update index.ts
* Update index.ts
2018-07-02 10:51:10 +02:00
Timothy Shamilov
f62a123a34
feat(streaming-media): add new parameters & docs ( #2576 )
2018-07-02 10:47:28 +02:00
filippo
61714ff7ca
fix(barcode-scanner): wrong barcode format identifier PDF417 -> PDF_417 ( #2574 )
2018-06-29 21:38:46 +02:00
Charles
9f9a3461f7
feat(ble): add missing functions ( #2572 )
2018-06-29 21:30:13 +02:00
Renjith VK
22ffb4914f
docs(deeplinks): update example ( #2570 )
...
If it has only one argument, then no need function brackets. It would decrease the readability of the source code snippets.
2018-06-28 14:40:37 +02:00
Daniel
189d66cc47
fix(index-app-content): fix imports
2018-06-28 13:49:30 +02:00
Daniel
fe5b7ce0af
docs(index-app-content): fix spelling and lint errors
2018-06-28 13:47:09 +02:00
Adrian Savin
98d44e6294
fix(healt): add correct return type for query function ( #2565 )
...
* update query return type
query is always returning an array
* refactor
2018-06-25 20:09:46 +02:00
Daniel Sogl
8d571989d4
fix(index-app-content): add missing function
2018-06-25 20:08:28 +02:00
Simpler1
e61d574849
feat(plugin): add Sensors plugin ( #2268 )
...
* feat(sensors): New plugin for sensors
* refactor
* refactor
2018-06-25 14:35:37 +02:00
Pandiarajan Nagarajan
fdd63153e0
feat(aes-256): AES256 encryption and decryption plugin added ( #2562 )
...
* feat(aes-256): AES256 encryption and decryption plugin added
* refactor
2018-06-25 14:28:15 +02:00
Florian Gouy
9dd4ecde9c
docs(camera): Update docs to advise against DATA_URL ( #2474 )
...
DATA_URL can be very memory intensive and cause app crashes or out of memory errors.
Use FILE_URI or NATIVE_URI if possible
2018-06-23 17:18:34 +02:00
Rob
dd9ba0ad3f
feat(image-picker): add DATA_URL as an option to ImagePicker ( #2325 )
...
As documented in the image picker plugin, it also supports a data url, just like the camera does. However, this option is not documented in Ionic Native currently. I've added this documentation, and have also added an enum with a naming pattern that matches the DestinationType in Camera.
Docs from the image picker plugin:
```
...
// output type, defaults to FILE_URIs.
// available options are
// window.imagePicker.OutputType.FILE_URI (0) or
// window.imagePicker.OutputType.BASE64_STRING (1)
outputType: int
};
```
2018-06-23 17:14:55 +02:00
Sebastian Baar
9f662b6a04
feat(nativegeocoder): change return type to array and add options param ( #2319 )
...
* feat(nativegeocoder): add NativeGeocoder plugin
* add district
* update NativeGeocoderReverseResult & refactor code
* delete plugins
* delete index.ts
* type(feat): change return type to array and add options param
* Add 'defaultLocale' to options Object
* let options be optional
2018-06-23 17:14:14 +02:00
Gustav Bylund
1dc48e943c
docs(pro): add types for return values in deploy ( #2292 )
2018-06-23 17:14:03 +02:00
Moshe
ce3591200e
docs(card-io): fix example ( #2560 )
...
Property 'scan' does not exist on type 'typeof CardIO'
2018-06-21 07:45:44 +02:00
Jonathan Fernandez
fc088f8431
fix(onesignal): update OSPermissionState interface ( #2561 )
...
fix(onesignal): update OSPermissionState interface
2018-06-21 07:45:02 +02:00
Cristian Rivas Gómez
392bc5c80a
docs(hotspot): add plugin description ( #2555 )
2018-06-16 11:36:36 +02:00
devdaddy
31fc892b70
feat(photo-library): add maxItems to limit items-iOS ( #2554 )
2018-06-15 18:14:39 +02:00
Cristian Rivas Gómez
5794d249c4
docs(spinner-dialog): add plugin description ( #2553 )
2018-06-15 17:45:01 +02:00
Frank Königstein
3f8a6f2425
fix(background-geolocation): watchLocationMode returns observable ( #2547 )
...
* fix(background-geolocation): watchLocationMode returns observable
* fix(package): rm version change
2018-06-14 11:36:02 +02:00
Cristian Rivas Gómez
dd769b0226
docs(safari-view-controller): add plugin description ( #2552 )
2018-06-14 07:58:38 +02:00
GabrielTK
8460e6838a
feat(hce): add hce plugin wrapper ( #2534 )
...
feat(hce): add hce plugin wrapper
2018-06-13 20:06:37 +02:00
Domvel
03e6afbad4
feat(ble): update wrapper to match latest plugin release ( #2548 )
...
feat(ble): update wrapper to match latest plugin release
2018-06-13 20:05:05 +02:00
Gaetan Wcz
be370a4f99
fix(healths): add missing attribute on HealthQueryOptionsAggregated ( #2550 )
2018-06-13 20:04:32 +02:00
Cristian Rivas Gómez
bb9c581f42
docs(qr-scanner): add plugin description ( #2546 )
2018-06-11 17:47:24 +02:00
Cristian Rivas Gómez
d988e12353
docs(pin-dialog): add plugin description ( #2545 )
2018-06-10 10:54:00 +02:00
Bart Wesselink
df254de88b
feat(SiriShortcuts): implement Siri Shortcuts plugin in Ionic ( #2542 )
...
* feat(SiriShortcuts): implement Siri Shortcuts plugin in Ionic
* refactor
2018-06-09 09:26:15 +02:00
Cristian Rivas Gómez
5803c069a3
Add Media Capture plugin description to documentation ( #2539 )
2018-06-07 08:47:38 +02:00
Cristian Rivas Gómez
dfbbfc7bd5
docs(card-io): add plugin description ( #2530 )
...
* Add description to AdMob Free plugin documentation
* Add description to Card IO plugin documentation
2018-06-06 17:00:27 +02:00
Cristian Rivas Gómez
16980f1b6a
docs(keyboard): add plugin description ( #2533 )
...
* Add description to AdMob Free plugin documentation
* Add plugin description to Keyboard plugin documentation
2018-06-06 13:46:12 +02:00
Cristian Rivas Gómez
3311d73730
docs(admob-free): add plugin description ( #2529 )
2018-06-04 11:29:55 +02:00
hiepxanh
a4cc7f7ae1
fix(themeable-browser): allow hidden and clear cache
...
it wrong from boolean to string, after 1 year i update it
2018-06-03 15:42:17 +02:00
Cristian Rivas Gómez
e6b02b1875
docs(three-dee-touch): add plugin description ( #2524 )
2018-06-03 15:41:07 +02:00
Adam Duren
c03b73f69c
feat(firebase-messaging): add firebase-messaging ( #2518 )
...
* feat(firebase-messaging): add firebase-messaging
* refactor
2018-06-03 15:33:18 +02:00
Adam Duren
05423ce299
feat(firebase-config): add firebase-config wrapper ( #2517 )
...
* feat(firebase-config): add firebase-config wrapper
* refactor
* refactor
2018-06-03 15:32:04 +02:00
Wouter Klein Heerenbrink
34aeb19628
feat(send-result): add sendResult method for WebIntent plugin ( #2495 )
2018-05-27 19:01:36 +02:00
Geoff Tripoli
d6a9ed134e
fix(stripe): fixed casing of postal code param ( #2520 )
2018-05-22 22:12:13 +02:00
Behrooz Shafiee
a0183811f6
fix(in-app-purchase-2): fix ready method signature ( #2043 )
2018-05-20 13:21:21 -04:00
Cristian Rivas Gómez
e6d4b41e7e
docs(navigation-bar): fix typo
...
A small misspelling detected here 🙂
2018-05-19 16:56:04 +02:00
Dave Alden
400dbcb1fb
feat(cloud-settings): add support for cordova-plugin-cloud-settings ( #2494 )
...
* feat(cloud-settings): add support for cordova-plugin-cloud-settings
* refactor
2018-05-19 12:16:14 +02:00
mino922
ae6e28de88
feat(local-notifications): added support for foreground option in version 0.9.0-beta.3 of cordova-plugin-local-notifications ( #2506 )
2018-05-19 12:15:22 +02:00
Geoff Tripoli
58615f1cab
feat(star-prnt): Added support for connected to devices with barcode readers ( #2509 )
2018-05-19 12:14:30 +02:00
Kheva Mann
7c355350fe
feat(onesignal): Added notification stacking ( #2512 )
...
* Added collapse_id
Added collapse_id to allow for notification stacking
* Update index.ts
2018-05-19 12:14:12 +02:00
Szymon Stasik
defb276b22
fix(native-geocoder): set response type to an array ( #2505 )
2018-05-16 19:16:39 -04:00
Kheva Mann
e6db28123d
fix(onesignal): make params optional ( #2507 )
...
Made all properties in OSNotification optional because when you create a push notification the type is OSNotification but it does not have all the same properties required as the OSNotification as a response from a received notification. For example, you don't pass in isAppInFocus when you create a notification but it was causing issues when trying to post a notification because it was showing as required because OSNotification as a response will always have isAppInFocus.
2018-05-16 19:14:27 -04:00
Marty Alcala
714114d1e0
fix(android-fingerprint-auth): ensure ERRORS array is defined ( #2508 )
2018-05-16 19:13:24 -04:00
Andy
37ef2fc93f
docs(file): fix example
...
docs(file): fix example
2018-05-09 18:11:55 +02:00
Eran Shmilovich
41a4a43c0c
fix(docs) replace android platform with ios ( #2500 )
2018-05-09 18:11:26 +02:00
Craig Rouse
5f41ef1cbc
feat(tealium): add tealium ionic wrappers ( #2414 )
2018-05-03 12:42:47 +02:00
infoxicator
49ad2118a3
feat(star-prnt) add Encoding and CodePageType enum ( #2488 )
...
feat(star-prnt) add Encoding and CodePageType enum
2018-05-01 14:42:17 +02:00
Darryn
47f739777e
fix(web-intent): registerBroadcastReceiver as Observable ( #2491 )
...
* Correcting format of registerBroadcastReceiver, current implementation provides no way to receive the registered broadcasts.
Usage is as follows:
webintent.registerBroadcastReceiver({
filterActions: [
'com.example.ACTION'
],
filterCategories: [
'android.intent.category.DEFAULT'
]
}).subscribe((intent) => {console.log('Received Intent: ' + JSON.stringify(intent.extras));});
* Resolving linting errors
* Resolving additional linting error
2018-05-01 14:41:09 +02:00
Rida Amirini
3fa2eff580
docs(android-full-screen): edit example
2018-04-29 18:35:00 +02:00
Brian Soumakian
567f525837
feat(firebase): add verifyPhoneNumber support for iOS
...
feat(firebase): verifyPhoneNumber now supports iOS
2018-04-26 08:14:14 +02:00
Silviu Bogdan Stroe
24cd0a91c4
docs(uptime): remove unnecessary line ( #2479 )
...
* docs(uptime): add cordova installation
* feat(uptime): add deep sleep parameter
* Update index.ts
* docs(Uptime): remove unnecessary line
2018-04-24 14:15:07 +02:00
Niklas Merz
50c8c154e3
docs(calldirectory): fix typo ( #2478 )
...
I have spotted some typos and added an example for reload.
2018-04-24 11:38:02 +02:00
Niklas Merz
1bfe82959b
feat(calldirectory): add call directory plugin ( #2473 )
...
* feat(calldirectory): add call directory plugin
* feat(calldirectory): fix parameters and description
* fix typos
2018-04-23 19:36:33 +02:00