From 1888e6ca17c3d9c72eaf92e9811462a571f03b35 Mon Sep 17 00:00:00 2001 From: Venkadesh P Date: Thu, 26 Feb 2026 11:52:10 +0530 Subject: [PATCH] feat(cordova-plugin-unvired-sdk): add dbUpdateStatements property to LoginParameters interface --- .../plugins/unvired-cordova-sdk/index.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/@awesome-cordova-plugins/plugins/unvired-cordova-sdk/index.ts b/src/@awesome-cordova-plugins/plugins/unvired-cordova-sdk/index.ts index 54cc86a5e..268580535 100644 --- a/src/@awesome-cordova-plugins/plugins/unvired-cordova-sdk/index.ts +++ b/src/@awesome-cordova-plugins/plugins/unvired-cordova-sdk/index.ts @@ -434,9 +434,16 @@ export class LoginParameters { appVersion: string; /** - * + * Specify the redirect URL. */ redirectURL: string; + + /** + * Specify the database update statements as a JSON string. This will update the database schema. + */ + dbUpdateStatements: string; + + } export class LoginResult extends UnviredResult { type: LoginListenerType;