From 7c699567ddb427d114852f0603bdfa29424f1ca5 Mon Sep 17 00:00:00 2001 From: Venkadesh P Date: Mon, 8 Sep 2025 11:51:20 +0530 Subject: [PATCH] updated getUMPRequestConfig with params. --- .../plugins/unvired-cordova-sdk/index.ts | 2 +- 1 file changed, 1 insertion(+), 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 1e2882df0..80fc44d6a 100644 --- a/src/@awesome-cordova-plugins/plugins/unvired-cordova-sdk/index.ts +++ b/src/@awesome-cordova-plugins/plugins/unvired-cordova-sdk/index.ts @@ -1795,7 +1795,7 @@ export class UnviredCordovaSDK extends AwesomeCordovaNativePlugin { * await this.unviredSDK.getUMPRequestConfig("/UMP/api/v1/users"); */ @Cordova() - getUMPRequestConfig(): Promise { + getUMPRequestConfig(endpoint: string, options?: { customUrl?: string }): Promise { return; } }