UNPKG

react-native-gigya-sdk

Version:
42 lines (41 loc) 1.9 kB
import { GigyaSdkErrorCodes, GigyaSdkErrors } from './types'; import * as core from './core'; export * from './types'; declare const GigyaSdk: { ErrorCodes: typeof GigyaSdkErrorCodes; ErrorsTypeIds: typeof GigyaSdkErrors; acceptConsentSchemas: typeof core.acceptConsentSchemas; declineConsentSchemas: typeof core.declineConsentSchemas; deleteAccount: typeof core.deleteAccount; finalizeRegistration: typeof core.finalizeRegistration; getAccount: typeof core.getAccount; getAccountInfo: typeof core.getAccountInfo; getAllSchemas: typeof core.getAllSchemas; getConflictingAccount: typeof core.getConflictingAccount; getOptionalConsentSchemas: typeof core.getOptionalConsentSchemas; getRequiredConsentSchemas: typeof core.getRequiredConsentSchemas; getSession: typeof core.getSession; getState: typeof core.getState; getUnacceptedConsentSchemas: typeof core.getUnacceptedConsentSchemas; grantRequiredConsents: typeof core.grantRequiredConsents; handleAuthenticationError: typeof core.handleAuthenticationError; init: typeof core.init; isAvailableLoginId: typeof core.isAvailableLoginId; isGigyaError: typeof core.isGigyaError; isLoggedIn: typeof core.isLoggedIn; isSessionValid: typeof core.isSessionValid; linkToSite: typeof core.linkToSite; linkToSocialProvider: typeof core.linkToSocialProvider; login: typeof core.login; logout: typeof core.logout; registerAccount: typeof core.registerAccount; resendVerificationEmail: typeof core.resendVerificationEmail; resetPassword: typeof core.resetPassword; sendApiCall: typeof core.sendApiCall; setAccount: typeof core.setAccount; setAccountInfo: typeof core.setAccountInfo; setSession: typeof core.setSession; socialLogin: typeof core.socialLogin; verifyLogin: typeof core.verifyLogin; }; export default GigyaSdk;