UNPKG

@nevis-security/nevis-mobile-authentication-sdk-react

Version:

React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.

41 lines (38 loc) 1.92 kB
"use strict"; /** * Copyright © 2023-2024 Nevis Security AG. All rights reserved. */ import { AuthCloudApiRegistrationImpl } from "./AuthCloudApiRegistration.js"; import { AuthenticationImpl } from "./Authentication.js"; import { DeregistrationImpl } from "./Deregistration.js"; import { DeviceInformationCheckImpl } from "./deviceInformation/DeviceInformationCheck.js"; import { DeviceInformationSyncImpl } from "./deviceInformation/DeviceInformationSync.js"; import { DeviceInformationChangeImpl } from "./DeviceInformationChange.js"; import { OutOfBandOperationImpl } from "./outOfBand/OutOfBandOperation.js"; import { OutOfBandPayloadDecodeImpl } from "./outOfBand/OutOfBandPayloadDecode.js"; import { PendingOutOfBandOperationsImpl } from "./outOfBand/PendingOutOfBandOperations.js"; import { PasswordChangeImpl } from "./password/PasswordChange.js"; import { PinChangeImpl } from "./pin/PinChange.js"; import { RegistrationImpl } from "./Registration.js"; /** * The interface used to obtain operation objects (registration, deregistration, authentication...). * * @group Performing Operations * @see {@link MobileAuthenticationClient.operations} */ export class Operations {} export class OperationsImpl extends Operations { outOfBandOperation = new OutOfBandOperationImpl(); outOfBandPayloadDecode = new OutOfBandPayloadDecodeImpl(); registration = new RegistrationImpl(); authCloudApiRegistration = new AuthCloudApiRegistrationImpl(); authentication = new AuthenticationImpl(); deregistration = new DeregistrationImpl(); deviceInformationChange = new DeviceInformationChangeImpl(); deviceInformationCheck = new DeviceInformationCheckImpl(); deviceInformationSync = new DeviceInformationSyncImpl(); pendingOutOfBandOperations = new PendingOutOfBandOperationsImpl(); pinChange = new PinChangeImpl(); passwordChange = new PasswordChangeImpl(); } //# sourceMappingURL=Operations.js.map