UNPKG

@okta/okta-auth-js

Version:
27 lines (26 loc) 789 B
import { IAPIFunction } from './types'; import { BaseTransaction, PhoneTransaction } from './transactions'; /** * @scope: okta.myAccount.phone.read */ export declare const getPhones: IAPIFunction<PhoneTransaction[]>; /** * @scope: okta.myAccount.phone.read */ export declare const getPhone: IAPIFunction<PhoneTransaction>; /** * @scope: okta.myAccount.phone.manage */ export declare const addPhone: IAPIFunction<PhoneTransaction>; /** * @scope: okta.myAccount.phone.manage */ export declare const deletePhone: IAPIFunction<BaseTransaction>; /** * @scope: okta.myAccount.phone.manage */ export declare const sendPhoneChallenge: IAPIFunction<BaseTransaction>; /** * @scope: okta.myAccount.phone.manage */ export declare const verifyPhoneChallenge: IAPIFunction<BaseTransaction>;