@okta/okta-auth-js
Version:
The Okta Auth SDK
27 lines (26 loc) • 789 B
TypeScript
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>;