From afe95a67526db94b24e857061a2070f1c1a46ecb Mon Sep 17 00:00:00 2001 From: Srinidhi Anand Rao Date: Fri, 5 Jul 2019 13:15:01 +0530 Subject: [PATCH] doc(unvired-cordova-sdk): update doc --- .../plugins/unvired-cordova-sdk/index.ts | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/src/@ionic-native/plugins/unvired-cordova-sdk/index.ts b/src/@ionic-native/plugins/unvired-cordova-sdk/index.ts index d87dbb94c..b1c853976 100644 --- a/src/@ionic-native/plugins/unvired-cordova-sdk/index.ts +++ b/src/@ionic-native/plugins/unvired-cordova-sdk/index.ts @@ -597,6 +597,22 @@ export class UnviredCordovaSDK extends IonicNativePlugin { return; } + /** + * For Debugging Only. pull database file to "temp" folder for development purpose only. + */ + @Cordova() + pullDb(): Promise { + return + } + + /** + * For Debugging Only. ush updated database file from "temp" folder to application directory for development purpose only + */ + @Cordova() + pushDb(): Promise { + return + } + /** * Select records from Database * @param tableName table name. Example: CUSTOMER_HEADER @@ -889,6 +905,7 @@ export class UnviredCordovaSDK extends IonicNativePlugin { } /** + * Supported in iOS, Android & Windows only * Check whether a Header datastructure is in outbox. * @param beLid LID of the Header datastructure. */ @@ -898,6 +915,7 @@ export class UnviredCordovaSDK extends IonicNativePlugin { } /** + * Supported in iOS, Android & Windows only * Returns the count of outbox items. */ @Cordova() @@ -906,6 +924,7 @@ export class UnviredCordovaSDK extends IonicNativePlugin { } /** + * Supported in iOS, Android & Windows only * Checks whether a Header datastructure is in sent and is waiting for response. * Typically you would use before allowing the user to update the Header datastructure. * @param beLid @@ -916,6 +935,7 @@ export class UnviredCordovaSDK extends IonicNativePlugin { } /** + * Supported in iOS, Android & Windows only * Returns the count of sent items. */ @Cordova() @@ -924,6 +944,7 @@ export class UnviredCordovaSDK extends IonicNativePlugin { } /** + * Supported in iOS, Android & Windows only * Returns the count of Inbox items. */ @Cordova() @@ -932,6 +953,7 @@ export class UnviredCordovaSDK extends IonicNativePlugin { } /** + * Supported in iOS, Android & Windows only * Delete outbox entry for a Header datastructure. * @param beLid */