@solibo/solibo-sdk 1.1.67 → 1.1.68

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8079,6 +8079,22 @@ export declare namespace MfaPreferenceCommand {
8079
8079
  const constructor: abstract new () => MfaPreferenceCommand;
8080
8080
  }
8081
8081
  }
8082
+ export interface MfaPreferenceResultProps {
8083
+ enabledMfaTypes: KtList<MfaType>;
8084
+ mfaType?: MfaType | null | undefined;
8085
+ }
8086
+ export declare class MfaPreferenceResult {
8087
+ constructor(props: MfaPreferenceResultProps);
8088
+ constructor(enabledMfaTypes: KtList<MfaType>, mfaType?: MfaType | null | undefined);
8089
+ get enabledMfaTypes(): KtList<MfaType>;
8090
+ get mfaType(): MfaType | null | undefined;
8091
+ }
8092
+ export declare namespace MfaPreferenceResult {
8093
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
8094
+ namespace $metadata$ {
8095
+ const constructor: abstract new () => MfaPreferenceResult;
8096
+ }
8097
+ }
8082
8098
  export interface MfaSelectionCommandProps {
8083
8099
  clientId: string;
8084
8100
  deviceKey?: string | null | undefined;
@@ -15084,6 +15100,7 @@ export declare class AuthApi extends ApiClient.$metadata$.constructor {
15084
15100
  createTokensBySms(magicSMSCommand: MagicSMSCommand): Promise<HttpResponse<SoliboAuthentication>>;
15085
15101
  createTokensSrp(verifySrpCommand: VerifySrpCommand): Promise<HttpResponse<SoliboAuthentication>>;
15086
15102
  deregisterFCMDeviceForUser(): Promise<HttpResponse<void>>;
15103
+ getMfaPreference(): Promise<HttpResponse<MfaPreferenceResult>>;
15087
15104
  indexUserDevices(): Promise<HttpResponse<KtList<Device>>>;
15088
15105
  refreshTokens(refreshTokensCommand: RefreshTokensCommand): Promise<HttpResponse<SoliboAuthentication>>;
15089
15106
  registerFCMDeviceForUser(registerDeviceCommand: RegisterDeviceCommand): Promise<HttpResponse<void>>;