reefmobile-api
Version:
A wrapper around Free Mobile API.
16 lines (9 loc) • 959 B
text/typescript
declare function LoginWithoutTrustedUuid(login: string, password: string): Promise<Response>;
declare function LoginWithTrustedUuid(login: string, password: string, trustedUuid: string): Promise<Response>;
declare function VerifySMSCode(otpID: string, codeOtp: string, isTrusted: boolean, token: string): Promise<Response>;
declare function fetchCompleteUserData(login: string, token: string): Promise<Response>;
declare function fetchPeriodUsageDetails(login: string, token: string): Promise<Response>;
declare function FetchInvoiceData(login: string, token: string): Promise<Response>;
declare function FetchUnpaidInvoices(login: string, token: string): Promise<Response>;
declare function fetchPlanAndDiscountInfo(login: string, token: string): Promise<Response>;
export { FetchInvoiceData, FetchUnpaidInvoices, LoginWithTrustedUuid, LoginWithoutTrustedUuid, VerifySMSCode, fetchCompleteUserData, fetchPeriodUsageDetails, fetchPlanAndDiscountInfo };