Skip to content

Commit

Permalink
fix(cordova-plugin-unvired-sdk): Add two new login properties.
Browse files Browse the repository at this point in the history
  • Loading branch information
srinidhirao committed Jul 21, 2023
1 parent f0989f3 commit a79f31e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/@awesome-cordova-plugins/plugins/unvired-cordova-sdk/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,17 @@ export class LoginParameters {
* The passed credentials will be used based on this flag.
*/
requireClientCredentials: boolean;

/**
* Required for SAML-SSO login. This should be the redirect URL as configured in UMP under Application Properties.
* Instead of a hard-coded value, consider deribing this URL value the base UMP URL.
*/
redirectURL: string;

/**
* Send the version number of the app which needs to be propagated to UMP. You should be able to view this under the devices section in UMP Admin Cockpit.
*/
appVersion: string;
}
export class LoginResult extends UnviredResult {
type: LoginListenerType;
Expand Down

0 comments on commit a79f31e

Please sign in to comment.