doc(unvired-cordova-sdk): update doc

This commit is contained in:
Srinidhi Anand Rao 2019-07-05 13:15:01 +05:30
parent 2ca8bda8f7
commit afe95a6752

View File

@ -597,6 +597,22 @@ export class UnviredCordovaSDK extends IonicNativePlugin {
return; return;
} }
/**
* For Debugging Only. pull database file to "temp" folder for development purpose only.
*/
@Cordova()
pullDb(): Promise<any> {
return
}
/**
* For Debugging Only. ush updated database file from "temp" folder to application directory for development purpose only
*/
@Cordova()
pushDb(): Promise<any> {
return
}
/** /**
* Select records from Database * Select records from Database
* @param tableName table name. Example: CUSTOMER_HEADER * @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. * Check whether a Header datastructure is in outbox.
* @param beLid LID of the Header datastructure. * @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. * Returns the count of outbox items.
*/ */
@Cordova() @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. * 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. * Typically you would use before allowing the user to update the Header datastructure.
* @param beLid * @param beLid
@ -916,6 +935,7 @@ export class UnviredCordovaSDK extends IonicNativePlugin {
} }
/** /**
* Supported in iOS, Android & Windows only
* Returns the count of sent items. * Returns the count of sent items.
*/ */
@Cordova() @Cordova()
@ -924,6 +944,7 @@ export class UnviredCordovaSDK extends IonicNativePlugin {
} }
/** /**
* Supported in iOS, Android & Windows only
* Returns the count of Inbox items. * Returns the count of Inbox items.
*/ */
@Cordova() @Cordova()
@ -932,6 +953,7 @@ export class UnviredCordovaSDK extends IonicNativePlugin {
} }
/** /**
* Supported in iOS, Android & Windows only
* Delete outbox entry for a Header datastructure. * Delete outbox entry for a Header datastructure.
* @param beLid * @param beLid
*/ */