@solibo/home-api 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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "main": "solibo-sdk-sdk-home-api.mjs",
3
- "version": "1.1.67",
3
+ "version": "1.1.68",
4
4
  "name": "@solibo/home-api",
5
5
  "dependencies": {
6
6
  "ws": "8.18.3",
@@ -6921,6 +6921,21 @@ export declare namespace MfaPreferenceCommand {
6921
6921
  const constructor: abstract new () => MfaPreferenceCommand;
6922
6922
  }
6923
6923
  }
6924
+ export declare class MfaPreferenceResult {
6925
+ constructor(enabledMfaTypes: KtList<MfaType>, mfaType?: Nullable<MfaType>);
6926
+ get enabledMfaTypes(): KtList<MfaType>;
6927
+ get mfaType(): Nullable<MfaType>;
6928
+ copy(enabledMfaTypes?: KtList<MfaType>, mfaType?: Nullable<MfaType>): MfaPreferenceResult;
6929
+ toString(): string;
6930
+ hashCode(): number;
6931
+ equals(other: Nullable<any>): boolean;
6932
+ }
6933
+ export declare namespace MfaPreferenceResult {
6934
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
6935
+ namespace $metadata$ {
6936
+ const constructor: abstract new () => MfaPreferenceResult;
6937
+ }
6938
+ }
6924
6939
  export declare class MfaSelectionCommand {
6925
6940
  constructor(clientId: string, deviceKey: Nullable<string> | undefined, email: Nullable<string> | undefined, fingerprint: Nullable<string> | undefined, mfaType: MfaType, mobile: Nullable<string> | undefined, session: string);
6926
6941
  get clientId(): string;
@@ -12777,6 +12792,7 @@ export declare class AuthApi extends ApiClient.$metadata$.constructor {
12777
12792
  createTokensBySms(magicSMSCommand: MagicSMSCommand): Promise<HttpResponse<SoliboAuthentication>>;
12778
12793
  createTokensSrp(verifySrpCommand: VerifySrpCommand): Promise<HttpResponse<SoliboAuthentication>>;
12779
12794
  deregisterFCMDeviceForUser(): Promise<HttpResponse<void>>;
12795
+ getMfaPreference(): Promise<HttpResponse<MfaPreferenceResult>>;
12780
12796
  indexUserDevices(): Promise<HttpResponse<KtList<Device>>>;
12781
12797
  refreshTokens(refreshTokensCommand: RefreshTokensCommand): Promise<HttpResponse<SoliboAuthentication>>;
12782
12798
  registerFCMDeviceForUser(registerDeviceCommand: RegisterDeviceCommand): Promise<HttpResponse<void>>;