ggez-banking-sdk
Version:
A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.
12 lines (11 loc) • 1.21 kB
TypeScript
import type { ICreatePhoneData, IUpdatePhoneData, IDeletePhoneData, IMakePhonePrimaryData, IConfirmPhoneData, IVerifyPhoneData, ISendPhoneOTPData, IValidatePhoneData } from "../../../types";
import type { ConfirmUserSecurity, ValidateLimitedSecurity, VerifyUserSecurity } from "../../../types";
declare const fillCreatePhoneData: (data: ICreatePhoneData) => import("../../..").UserData;
declare const fillUpdatePhoneData: (data: IUpdatePhoneData) => import("../../..").UserData;
declare const fillMakePhonePrimaryData: (data: IMakePhonePrimaryData) => import("../../..").UserData;
declare const fillValidatePhoneData: (data: IValidatePhoneData) => ValidateLimitedSecurity;
declare const fillVerifyPhoneData: (data: IVerifyPhoneData) => VerifyUserSecurity;
declare const fillSendPhoneOTPData: (data: ISendPhoneOTPData) => VerifyUserSecurity;
declare const fillConfirmPhoneData: (data: IConfirmPhoneData) => ConfirmUserSecurity;
declare const fillDeletePhoneData: (data: IDeletePhoneData) => import("../../..").UserData;
export { fillCreatePhoneData, fillUpdatePhoneData, fillDeletePhoneData, fillValidatePhoneData, fillVerifyPhoneData, fillSendPhoneOTPData, fillConfirmPhoneData, fillMakePhonePrimaryData, };